-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (28 loc) · 1.04 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, find_packages
if __name__ == '__main__':
long_desc = "A thin wrapper for making calls to Haro (https://haro.ai) events and prediction REST API's"
setup(
name='haro',
version='2018.11.15',
description='Haro.ai Python Library',
long_description=long_desc,
url="https://github.com/empiricalresults/haro-python-sdk",
author='Empirical Results Inc.',
author_email='info@haro.ai',
license='Apache License Version 2.0, January 2004',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[
"six>=1.11.0",
"requests>=2.18.4",
],
tests_require=[
'requests-mock==1.4.0',
],
test_suite="haro.tests",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
)