forked from kaleissin/django-verification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.55 KB
/
setup.py
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
40
41
42
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
README_FILE = open('README.rst')
try:
long_description = README_FILE.read()
finally:
README_FILE.close()
setup(name='django-verification',
version='1.1.0',
packages=['verification'],
package_dir = {'': 'src',},
include_package_data=True,
zip_safe=False,
platforms=['any'],
description='Generalized app for two-step verification',
author_email='[email protected]',
author='kaleissin',
url='https://github.com/kaleissin/django-verification',
long_description=long_description,
install_requires=['Django>=1.11,<3.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)