-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (94 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
101 lines (94 loc) · 2.17 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
97
98
99
100
101
[build-system]
requires = ["setuptools>=83.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 = "olegpolakow@vectorbt.pro"}
]
requires-python = ">=3.11,<3.15"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=2.4.6",
"pandas>=3.0.3,<4.0",
"scipy",
"matplotlib",
"plotly>=4.12.0",
"ipywidgets>=7.0.0",
"anywidget",
"numba>=0.66",
"dill",
"tqdm",
"dateparser",
"imageio",
"scikit-learn",
"schedule",
"requests",
"pytz",
"mypy_extensions",
]
[project.optional-dependencies]
rust = [
"vectorbt-rust==1.1.0",
]
full = [
"TA-Lib",
"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",
"quantstats>=0.0.37",
]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
"codecov",
]
test-rust = [
"vectorbt[test]",
"maturin>=1.14,<2.0",
]
docs = [
"mkdocs-material",
"mkdocs-minify-plugin",
"ruamel.yaml",
"mako",
]
all = [
"vectorbt[rust]",
"vectorbt[full]",
"vectorbt[test]",
"vectorbt[docs]",
]
[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"]
[tool.black]
line-length = 120