forked from QOMPLX-INC/te-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup3.py
33 lines (32 loc) · 889 Bytes
/
setup3.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
from setuptools import setup
setup(
name="mdtsdb",
version="3.1",
description="Python client for TimeEngine",
author="",
author_email="",
install_requires=[
"requests>=2.23.0",
"decorator",
"pika",
"six",
"websocket-client",
"kafka-python",
"bson",
"prompt_toolkit"
],
packages=[
"mdtsdb",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)