forked from HuobiRDCenter/huobi_Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
17 lines (15 loc) · 799 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python3
from setuptools import setup
setup(
name="huobi-client",
version="2.0.1",
packages=['huobi',
'huobi.exception', 'huobi.constant',
'huobi.utils',
'huobi.client',
'huobi.service', 'huobi.service.account', 'huobi.service.margin', 'huobi.service.market', 'huobi.service.trade', 'huobi.service.wallet', 'huobi.service.generic', 'huobi.service.etf',
'huobi.model', 'huobi.model.account', 'huobi.model.margin', 'huobi.model.market', 'huobi.model.trade', 'huobi.model.wallet', 'huobi.model.generic', 'huobi.model.etf',
'huobi.connection', 'huobi.connection.impl', "performance", "tests"
],
install_requires=['requests', 'apscheduler', 'websocket-client', 'urllib3']
)