-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
29 lines (28 loc) · 1.16 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
from setuptools import setup
setup(name='TaarifaAPI',
version='0.2.0',
description='The Taarifa API for managing resources and requests',
long_description=open('README.rst').read(),
author='Florian Rathgeber',
author_email='florian.rathgeber@gmail.com',
license='Apache License, Version 2.0',
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 :: Apache Software 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==1.1.2',
'Eve-Swagger==0.1.1',
'Flask-Compress==1.3.0'])