-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (44 loc) · 1.3 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
#!/usr/bin/env python
from __future__ import print_function, division, absolute_import
import setuptools
import os
here = os.path.abspath(os.path.dirname(__file__))
VERSION = '2.6.0-dev10'
packages = setuptools.find_packages()
requires = [
'Events==0.4',
'websocket-client==0.57.0',
'simplejson==3.17.2',
'pymongo==4.6.3',
'msgpack==1.0.2',
'boto3<=1.17.20',
"wsaccel==0.6.2",
"six==1.15.0",
'pyzmq<=22.0.3',
'jaeger-client==4.0.0; python_version < "3.2.0"',
'jaeger-client>=4.4.0; python_version >= "3.2.0"',
"pympler==0.9"
]
with open("README.md", "r") as f:
long_description = f.read()
about = {}
with open(os.path.join(here, 'hkube_python_wrapper', '__version__.py'), 'r') as f:
exec(f.read(), about)
setuptools.setup(
name=about['__title__'],
version=VERSION,
author=about['__author__'],
author_email=about['__author_email__'],
description=about['__description__'],
license=about['__license__'],
long_description=long_description,
long_description_content_type="text/markdown",
url=about['__url__'],
packages=packages,
install_requires=requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)