forked from hsk81/quotestream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (25 loc) · 976 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
29
30
31
#!/usr/bin/env python
###############################################################################
###############################################################################
from distutils.core import setup
###############################################################################
###############################################################################
setup(
name='quotestream',
version='0.0.2',
license='GPLv3',
author='Hasan Karahan',
author_email='[email protected]',
url='https://bitbucket.org/hsk81/quotestream',
description='Algorithmic Trading with Quote Stream',
requires=[
'ipython>=1.0.0',
'numpy>=1.7.1',
'python-dateutil>=2.1',
'pyzmq>=13.1.0',
'requests>=1.2.3',
'ujson>=1.33',
]
)
###############################################################################
###############################################################################