-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (27 loc) · 945 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
from setuptools import setup, find_packages
VERSION = '0.7'
DESCRIPTION = 'Little helper tools for IB API'
LONG_DESCRIPTION = 'Little helper tools for IB API'
setup(
name="ibtools",
version=VERSION,
author="Juergen Reiss",
author_email="juxeiier@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/juxeii/ibtools',
license='BSD',
python_requires='>=3.6',
packages=find_packages(),
install_requires=['rx', 'pandas', 'ib_insync', 'IPython'],
keywords=['python', 'first package'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
'Topic :: Office/Business :: Financial :: Investment',
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
'License :: OSI Approved :: BSD License'
]
)