-
Notifications
You must be signed in to change notification settings - Fork 334
/
Copy pathsetup.py
19 lines (18 loc) · 930 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python3
from setuptools import setup
setup(
name="huobi-client",
version="2.0.0",
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.service.subuser', 'huobi.service.algo',
'huobi.model', 'huobi.model.account', 'huobi.model.margin', 'huobi.model.market', 'huobi.model.trade',
'huobi.model.wallet', 'huobi.model.generic', 'huobi.model.etf', 'huobi.model.subuser', 'huobi.model.algo',
'huobi.connection', 'huobi.connection.impl', "performance", "tests"
],
install_requires=['requests', 'apscheduler', 'websocket-client', 'urllib3']
)