forked from richardcornish/django-registrationwall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
setup(
name='django-paywall',
version='0.1.0',
description='A Django app to raise a paywall for content websites',
long_description=open('README.md').read(),
license='BSD License',
author='Richard Cornish',
author_email='rich@richardcornish.com',
url='https://github.com/richardcornish/django-paywall',
zip_safe=False,
platforms=[
'OS Independent'
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
packages=[
'paywall',
'paywall.tests'
],
include_package_data=True,
install_requires=[
'django>=1.9'
],
)