forked from hadrianl/huobi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.67 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018/5/29 0029 14:10
# @Author : Hadrianl
# @File : setup.py
# @Contact : [email protected]
from setuptools import setup, find_packages
__version__ = "0.5.6"
with open("README.md", "r", encoding='utf-8') as rm:
long_description = rm.read()
requires = ['websocket-client>=0.53',
'requests',
'pymongo',
'pyzmq',
'pandas',
'requests-futures',
'ecdsa',
'click']
hb_packages = ['huobitrade', 'huobitrade/extra']
setup(name='huobitrade',
version=__version__,
description='HuoBi Trading Framwork(python)',
long_description=long_description,
long_description_content_type="text/markdown",
author='Hadrianl',
author_email='[email protected]',
url='https://hadrianl.github.io/huobi/',
packages=hb_packages,
entry_points={
"console_scripts": [
"huobitrade = huobitrade.main:entry_point"
]
},
classifiers=(
"Development Status :: 5 - Production/Stable",
"Natural Language :: Chinese (Simplified)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git"
),
install_requires=requires)