-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
66 lines (59 loc) · 1.71 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
from setuptools import setup, find_packages
install_requires = [
"python-dateutil==2.6.0",
"boto3",
"PyYAML",
"requests",
"cryptography",
"redis",
"sqlalchemy",
"six",
"future",
"psycopg2",
"websocket",
"websocket-client"
]
setup_requires = [
]
docs_require = [
"sphinx",
"sphinx-autobuild",
"sphinxcontrib-httpdomain",
"sphinx_rtd_theme",
"recommonmark",
]
tests_require = [
# "mock", # only for Python < 3.3
]
long_description = 'See GitHub README.rst for more details.'
with open('README.rst') as file:
long_description = file.read()
setup(
name="predix",
version="1.0.0",
author="Jayson DeLancey",
author_email="[email protected]",
description="Python Client SDK for Predix Services",
long_description=long_description,
setup_requires=setup_requires,
install_requires=install_requires,
package_data={
'': ['*.md', '*.rst'],
},
packages=find_packages(exclude=['test', 'test.*']),
test_suite="test",
tests_require=tests_require,
entry_points={
'console_scripts': [
]
},
keywords=['predix', 'ge', 'asset', 'analytics'],
url="https://github.com/PredixDev/predixpy",
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha']
)