forked from paulran/aioquant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 754 Bytes
/
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
# -*- coding:utf-8 -*-
from distutils.core import setup
setup(
name="aioquant",
version="1.0.7",
packages=[
"aioquant",
"aioquant.utils",
"aioquant.platform",
],
description="Asynchronous event I/O driven quantitative trading framework.",
url="https://github.com/JiaoziMatrix/aioquant",
author="HuangTao",
author_email="[email protected]",
license="MIT",
keywords=[
"aioquant", "quant", "framework", "async", "asynchronous", "digiccy", "digital", "currency", "marketmaker",
"binance", "okex", "huobi", "bitmex", "deribit", "kraken", "gemini", "kucoin"
],
install_requires=[
"aiohttp==3.6.2",
"aioamqp==0.14.0",
"motor==2.0.0"
],
)