2025-08-05 12:08:59 +08:00
|
|
|
[project]
|
|
|
|
|
name = "lowkey-backtest"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Add your description here"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.12"
|
2025-08-12 10:33:17 +08:00
|
|
|
dependencies = [
|
Remove deprecated modules and files related to the backtesting framework, including backtest.py, cli.py, config.py, data.py, intrabar.py, logging_utils.py, market_costs.py, metrics.py, trade.py, and supertrend indicators. Introduce a new structure for the backtesting engine with improved organization and functionality, including a CLI handler, data manager, and reporting capabilities. Update dependencies in pyproject.toml to support the new architecture.
2026-01-12 21:11:39 +08:00
|
|
|
"ccxt>=4.5.32",
|
|
|
|
|
"numpy>=2.3.2",
|
|
|
|
|
"pandas>=2.3.1",
|
2025-08-12 10:33:17 +08:00
|
|
|
"ta>=0.11.0",
|
Remove deprecated modules and files related to the backtesting framework, including backtest.py, cli.py, config.py, data.py, intrabar.py, logging_utils.py, market_costs.py, metrics.py, trade.py, and supertrend indicators. Introduce a new structure for the backtesting engine with improved organization and functionality, including a CLI handler, data manager, and reporting capabilities. Update dependencies in pyproject.toml to support the new architecture.
2026-01-12 21:11:39 +08:00
|
|
|
"vectorbt>=0.28.2",
|
2026-01-13 16:13:57 +08:00
|
|
|
"scikit-learn>=1.6.0",
|
|
|
|
|
"matplotlib>=3.10.0",
|
|
|
|
|
"plotly>=5.24.0",
|
|
|
|
|
"requests>=2.32.5",
|
|
|
|
|
"python-dotenv>=1.2.1",
|
Remove deprecated modules and files related to the backtesting framework, including backtest.py, cli.py, config.py, data.py, intrabar.py, logging_utils.py, market_costs.py, metrics.py, trade.py, and supertrend indicators. Introduce a new structure for the backtesting engine with improved organization and functionality, including a CLI handler, data manager, and reporting capabilities. Update dependencies in pyproject.toml to support the new architecture.
2026-01-12 21:11:39 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
pythonpath = ["."]
|
|
|
|
|
markers = [
|
|
|
|
|
"network: marks tests as requiring network access",
|
2025-08-12 10:33:17 +08:00
|
|
|
]
|