-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 718 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 718 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tradingview-backtest"
version = "0.1.0"
description = "CLI-driven TradingView strategy backtester and hyper-optimizer"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"beautifulsoup4>=4.12",
"numpy>=2.0",
"optuna>=4.0",
"pandas>=2.2",
"requests>=2.31",
"rich>=13.0",
"TA-Lib>=0.6",
"websocket-client>=1.7",
]
[project.scripts]
tradingview-backtest = "hyperview.cli:main"
tvbacktest = "hyperview.cli:main"
hyperview = "hyperview.cli:main"
[tool.hatch.build]
directory = ".build"
[tool.hatch.build.targets.wheel]
packages = ["hyperview", "strategy"]