forked from aniket-amrutkar/falkonry-python-client-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.15 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
from setuptools import setup, find_packages
install_requires = [
'requests',
'jsonpickle',
'urllib3',
'sseclient-py'
]
dependency_links = []
setup_requires = []
tests_require = ['unittest', 'io', 'unittest-xml-reporting']
setup(
name='falkonryclient',
version='2.2.1',
author='Falkonry Inc',
author_email='[email protected]',
license='MIT',
url='https://github.com/Falkonry/falkonry-python-client',
download_url = 'https://github.com/Falkonry/falkonry-python-client/tarball/2.2.1',
description='Falkonry Python Client to access Condition Prediction APIs',
long_description='Falkonry python client to access Condition Prediction APIs',
packages=['falkonryclient', 'falkonryclient.helper', 'falkonryclient.helper.models', 'falkonryclient.service'],
install_requires=install_requires,
tests_require=tests_require,
setup_requires=setup_requires,
extras_require={
'test': ['unittest', 'io'],
'all': install_requires + tests_require
},
dependency_links=dependency_links,
zip_safe=False,
include_package_data=True,
keywords='falkonry falkonryclient conditionprediction'
)