forked from letianzj/quanttrader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.35 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
43
44
45
46
47
#!/usr/bin/env python3
from setuptools import setup, find_packages
# load the README file and use it as the long_description for PyPI
with open('README.md', 'r') as f:
readme = f.read()
# package configuration - for reference see:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#id9
setup(
name='quanttrader',
description='quanttrader backtest and live trading library',
long_description=readme,
long_description_content_type='text/markdown',
version='0.5.4',
author='Letian Wang',
author_email='[email protected]',
url='https://github.com/letianzj/quanttrader',
packages=find_packages(exclude=("tests",)),
include_package_data=True,
python_requires=">=3.7.*",
license='Apache 2.0',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
],
install_requires = [
'matplotlib>=3.0.3',
'numpy>=1.18.0',
'pandas>=1.0.5',
'psutil>=5.7.0',
'pytz>=2018.9',
'scipy>=1.4.1',
'scikit-learn>=0.22.1',
'seaborn>=0.10.1',
'pytest>=3.6.4',
'PyQt5>=5.10.1',
'QDarkStyle>=2.8',
'PyYAML>=5.3.1',
'ibapi>=9.76.1',
'gym>=0.17.0'
],
keywords='quanttrader strategy backtest live trading'
)