forked from ES-DOC/esdoc-questionnaire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 836 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
28
29
#!/usr/bin/env python
#import distribute_setup
#distribute_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='cim_questionnaire',
version='0.11.0.0', # major.minor.patch (good idea to append deployment id in production)
author='Allyn Treshansky',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/ES-DOC',
license='NCSA Open Source License, see LICENSE.txt',
description='CIM Questionnaire',
long_description=open('README.md').read(),
zip_safe=False,
include_package_data=True,
install_requires=[
"Django",
"distribute",
"south>=0.8.2", # v0.8.2 fails w/ DateTimeFields (see https://code.djangoproject.com/ticket/21312)
"lxml",
"pillow",
"pytz",
"django-mptt",
],
)