-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
27 lines (26 loc) · 928 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-change-email',
version=__import__('change_email').__version__,
description='A Django application to enable users to change their e-mail address.',
long_description="""django-change-email enables registered users to change
their e-mail address.""",
author='Tarak Blah',
author_email='[email protected]',
url='https://github.com/tarak/django-change-email',
include_package_data=True,
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=['django>=1.5,<=1.6',
'django-easysettings',
],
test_suite='tests.main',
)