-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (67 loc) · 2.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import sys
from setuptools import setup, find_packages
#next time:
#python setup.py register
#python setup.py sdist upload
version = open('wellaware/VERSION', 'r').readline().strip()
develop_requires = ['Sphinx==1.5.3',
'coverage==4.3.4',
'detox==0.10.0',
'mock==2.0.0',
'nose==1.3.7',
'python-coveralls==2.9.0',
'python-jose==1.3.2',
'pytz==2016.10',
'responses==0.5.1',
'requests==2.13.0',
'six>=1.10.0',
'sphinx-rtd-theme==0.2.4',
'tox==2.6.0',
'watchdog==0.8.3',
'wheel>=0.24.0']
long_desc = """
wellaware is an API Client to the WellAware API: https://api.wellaware.us/docs
`Documentation <https://wellaware.readthedocs.org/en/latest/>`_
`Report a Bug <https://github.com/wellaware/python-wellaware/issues>`_
"""
setup(
name='wellaware',
version=version,
description='WellAware API Client',
dependency_links=['https://github.com/wellaware/python-wellaware/archive/{0}.tar.gz#egg=wellaware-{0}'.format(version)],
long_description=long_desc,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Environment :: Other Environment",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='wellaware',
install_requires=['six>=1.10.0',
'python-jose==1.3.2',
'pytz>=2016.10',
'requests==2.13.0'],
extras_require={
'develop': develop_requires,
'docs': ['Sphinx>=1.5.3', 'sphinx-rtd-theme>=0.2.4', 'watchdog>=0.8.3'],
},
test_suite='nose.collector',
tests_require=develop_requires,
author='Cody Lee',
author_email='[email protected]',
maintainer='Cody Lee',
maintainer_email='[email protected]',
url='https://github.com/wellaware/python-wellaware',
license='Apache Software License 2.0',
packages=find_packages(),
include_package_data=True,
)