forked from taarifa/TaarifaAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.14 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.14 KB
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
from setuptools import setup
dependency_links = ['git+https://github.com/nicolaiarocci/eve#egg=Eve-0.4-dev']
setup(name='TaarifaAPI',
version='dev',
description='The Taarifa API for managing resources and requests',
long_description=open('README.rst').read(),
author='The Taarifa Organisation',
author_email='taarifadev@gmail.com',
url='http://taarifa.org',
download_url='https://github.com/taarifa/TaarifaAPI',
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_api'],
entry_points={"console_scripts":
["taarifa_api = taarifa_api.taarifa_api:main"]},
include_package_data=True,
zip_safe=False,
install_requires=['Eve==0.4-dev', 'Eve-docs==0.1.4'],
dependency_links=dependency_links)