-
-
Notifications
You must be signed in to change notification settings - Fork 637
/
setup.py
65 lines (63 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='vectorbt',
version='0.17.2',
description='Python library for backtesting and analyzing trading strategies at scale',
author='Oleg Polakow',
author_email='olegpolakow@gmail.com',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/polakowo/vectorbt',
packages=find_packages(),
package_data={
'vectorbt': ['templates/*.json']
},
install_requires=[
'numpy',
'pandas',
'scipy',
'matplotlib',
'plotly>=4.12.0',
'ipywidgets>=7.0.0',
'numba>=0.51.2',
'dill',
'tqdm',
'dateparser',
'imageio'
],
extras_require={
"full": [
"yfinance",
"python-binance",
"empyrical",
"scikit-learn",
"ray",
"TA-Lib"
],
"cov": [
"pytest-cov",
"codecov"
],
"docs": [
"pdoc3"
]
},
python_requires='>=3.6, <3.9',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Office/Business :: Financial',
'Topic :: Scientific/Engineering :: Information Analysis'
],
)