forked from mementum/backtrader
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·34 lines (31 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
executable file
·34 lines (31 loc) · 844 Bytes
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
[project]
name = "backtrader_next"
version = "2.3.7"
description = "Live Trading and backtesting platform in Python"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "smalinin"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"bn-lightweight-charts>=1.2.2",
"numba>=0.61.2",
"numpy>=2.0",
"pandas>=2.2.3",
"plotly>=6.1.2",
"tqdm",
"sambo[all]",
]
[project.urls]
"Homepage" = "https://github.com/smalinin/backtrader_next"
"Source" = "https://github.com/smalinin/backtrader_next"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"