forked from ApptuitAI/apptuit-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.08 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="apptuit",
packages=['apptuit', 'apptuit.pyformance'],
version="1.4.0",
description="Apptuit Python Client",
url="https://github.com/ApptuitAI/apptuit-py",
author="Abhinav Upadhyay",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=['requests', 'pyformance'],
tests_require=['mock;python_version<"3.3"', 'nose', 'pandas', 'numpy'],
test_suite='nose.collector',
data_files=['LICENSE']
)