Cycles/pyproject.toml

18 lines
409 B
TOML
Raw Normal View History

2025-05-20 16:22:11 +08:00
[project]
name = "incremental-trader"
2025-05-20 16:22:11 +08:00
version = "0.1.0"
description = "Incremental Trading Framework with Strategy Management and Backtesting"
2025-05-20 16:22:11 +08:00
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gspread>=6.2.1",
"matplotlib>=3.10.3",
"pandas>=2.2.3",
"plotly>=6.1.1",
2025-05-20 16:22:11 +08:00
"psutil>=7.0.0",
"scipy>=1.15.3",
"seaborn>=0.13.2",
2025-05-29 12:37:11 +08:00
"tqdm>=4.67.1",
"websocket>=0.2.1",
2025-05-20 16:22:11 +08:00
]