forked from hbdmapi/huobi_futures_Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 637 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 637 Bytes
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
# -*- coding:utf-8 -*-
from distutils.core import setup
setup(
name="alphaquant",
version="1.1.7",
packages=[
"alpha",
"alpha.utils",
"alpha.platforms",
],
description="Asynchronous driven quantitative trading framework.",
url="https://github.com/hbdmapi/hbdm_python",
author="qiaoxiaofeng",
author_email="andyjoe318@gmail.com",
license="MIT",
keywords=[
"alphaquant", "huobi future", "async", "asynchronous", "btc",
"marketmaker", "huobi", "huobi swap", "strategy"
],
install_requires=[
"aiohttp==3.6.2",
"motor==2.0.0"
],
)