forked from dynata/python-demandapi-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.1 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1.1 KB
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
setup(
name='dynata-demandapi-client',
version="1.0.1",
license="MIT",
description="A Python client library for the Dynata Demand API",
long_description="A Python client library for the Dynata Demand API",
author="Ridley Larsen",
url="https://github.com/dynata/python-demandapi-client",
download_url="https://pypi.python.org/pypi/dynata-demandapi-client",
packages=find_packages(exclude=('tests', )),
platforms=['Any'],
install_requires=['requests', 'jsonschema'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
keywords='dynata demand api',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)