forked from nyaruka/rapidsms-xforms
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·44 lines (35 loc) · 1.21 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
43
44
from setuptools import setup, find_packages
setup(
name='rapidsms-xforms',
version=__import__('rapidsms_xforms').__version__,
license="BSD",
install_requires = [
"django>=1.3",
"rapidsms==0.9.6a",
"django-uni-form==0.8.0",
"django-eav==0.9.2",
"python-digest==1.7",
"django-digest==1.13"
],
dependency_links = [
"https://github.com/mvpdev/django-eav/tarball/master#egg=django-eav-0.9.2"
],
description='Interactive form builder for both XForms and SMS submissions into RapidSMS',
long_description=open('README.rst').read(),
author='Nicolas Pottier, Eric Newcomer',
author_email='[email protected]',
url='http://github.com/nyaruka/rapidsms-xforms',
download_url='http://github.com/nyaruka/rapidsms-xforms/downloads',
include_package_data=True,
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)