-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
37 lines (35 loc) · 1.27 KB
/
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
29
30
31
32
33
34
35
36
37
# Copyright (C) 2015 Bitquant Research Laboratories (Asia) Limited
# Released under the Simplified BSD License
from setuptools import (
setup,
find_packages,
)
setup(
name="algobroker",
version="0.0.12",
author="Joseph C Wang",
author_email='joequant@gmail.com',
url="https://github.com/joequant/algobroker",
description="Algorithmic trading broker",
long_description="""Algobroker is an interface to trading and events""",
license="BSD",
packages=['algobroker'],
install_requires=['pyzmq',
'msgpack-python',
'plivo >= 0.11.0',
'twilio',
'numpy',
'scipy',
'python-dateutil',
'yahoo_finance',
'requests',
'ib-api',
'gevent',
'simplejson',
'cryptoexchange >= 0.0.6',
'bitcoin-price-api >= 0.0.4'],
dependency_links=[
'git+https://github.com/joequant/cryptoexchange.git#egg=cryptoexchange-0.0.6',
'git+https://github.com/joequant/bitcoin-price-api.git#egg=bitcoin-price-api-0.0.5'],
scripts=['start-algo.sh', 'stop-algo.sh', 'algoinject.py']
)