This repository has been archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
42 lines (39 loc) · 1.4 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
38
39
40
41
42
import os
import sys
from setuptools import setup
from codecs import open
if sys.version_info < (3, 5, 0):
raise RuntimeError("tws_async requires Python 3.5.0+")
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tws_async',
version='0.5.7',
description=('Use the Interactive Brokers API (IBAPI) asynchonously'
'with asyncio or PyQt5'),
long_description=long_description,
url='https://github.com/erdewit/tws_async',
author='Ewald R. de Wit',
author_email='[email protected]',
license='Freeware',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial :: Investment',
'License :: Freeware',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
keywords='ibapi asyncio qt pyqt pyqt5 jupyter interactive brokers async',
packages=['tws_async'],
install_requires=['PyQt5', 'quamash', 'pytz', 'jupyter', 'numpy',
'pandas', 'seaborn'],
data_files=[
('samples', ['samples/histrequester_demo.py']),
('samples', ['samples/tickstreamer_demo.py']),
('samples', ['samples/tws.ipynb']),
],
zip_safe=False,
)