forked from tpim/thenextquant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 760 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="thenextquant",
version="0.2.3",
packages=[
"quant",
"quant.utils",
"quant.platform",
],
description="Asynchronous driven quantitative trading framework.",
url="https://github.com/TheNextQuant/thenextquant",
author="huangtao",
author_email="[email protected]",
license="MIT",
keywords=[
"thenextquant", "quant", "framework", "async", "asynchronous", "digiccy", "digital", "currency",
"marketmaker", "binance", "okex", "huobi", "bitmex", "deribit", "kraken", "gemini", "kucoin", "digifinex"
],
install_requires=[
"aiohttp==3.6.2",
"aioamqp==0.14.0",
"motor==2.0.0"
],
)