-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (27 loc) · 1.1 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
from setuptools import setup
setup(
name="apptuit",
packages=['apptuit', 'apptuit.pyformance'],
version="2.4.2",
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.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>=2.13.0', 'pyformance>=0.4', 'backports.functools_lru_cache>=1.5;python_version<"3"'],
tests_require=['mock;python_version<"3.3"', 'nose', 'pandas', 'numpy'],
test_suite='nose.collector',
data_files=['LICENSE']
)