forked from taarifa/TaarifaWaterpoints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 1.05 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
from setuptools import setup
dep_links = ['git+https://github.com/taarifa/TaarifaAPI#egg=TaarifaAPI-dev']
setup(name='TaarifaWaterpoints',
version='dev',
description='Waterpoint management system for Tanzania',
long_description=open('README.rst').read(),
author='The Taarifa Organisation',
author_email='[email protected]',
url='http://taarifa.org',
download_url='https://github.com/taarifa/TaarifaWaterpoints',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages=['taarifa_waterpoints'],
include_package_data=True,
zip_safe=False,
install_requires=['TaarifaAPI==dev', 'Flask-Script==2.0.3'],
dependency_links=dep_links)