forked from paulran/aioquant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 730 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
# -*- coding:utf-8 -*-
from distutils.core import setup
setup(
name="aioquant",
version="1.0.0",
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.13.0"
],
)