forked from polakowo/vectorbt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (90 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (90 loc) · 2.15 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "vectorbt"
dynamic = ["version"]
description = "Python library for backtesting and analyzing trading strategies at scale"
readme = "README.md"
license-files = ["LICENSE.md"]
authors = [
{name = "Oleg Polakow", email = "[email protected]"}
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=1.23",
"pandas>=2.0,<3.0",
"scipy",
"matplotlib",
"plotly>=4.12.0",
"ipywidgets>=7.0.0",
"anywidget",
"numba>=0.60",
"dill",
"tqdm",
"dateparser",
"imageio",
"scikit-learn",
"schedule",
"requests",
"pytz",
"mypy_extensions",
]
[project.optional-dependencies]
full = [
"yfinance>=0.2.22",
"python-binance",
"ccxt>=4.0.14",
"alpaca-py",
"ray>=1.4.1",
"ta",
"pandas-ta-classic",
"TA-Lib",
"python-telegram-bot>=13.4,<20.0",
"quantstats>=0.0.37",
]
full-no-talib = [
"yfinance>=0.2.22",
"python-binance",
"ccxt>=4.0.14",
"alpaca-py",
"ray>=1.4.1",
"ta",
"pandas-ta-classic",
"python-telegram-bot>=13.4,<20.0",
"quantstats>=0.0.37",
]
cov = [
"pytest",
"pytest-cov",
"pytest-xdist",
"codecov",
]
docs = [
"mkdocs-material",
"mkdocs-minify-plugin",
"ruamel.yaml",
"mako"
]
[project.urls]
Homepage = "https://github.com/polakowo/vectorbt"
[tool.setuptools.dynamic]
version = {attr = "vectorbt._version.__version__"}
[tool.setuptools.packages.find]
include = ["vectorbt*"]
[tool.setuptools.package-data]
vectorbt = ["templates/*.json"]