25 lines
445 B
TOML
25 lines
445 B
TOML
[project]
|
|
name = "lowkey-backtest"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"ccxt>=4.5.32",
|
|
"numpy>=2.3.2",
|
|
"pandas>=2.3.1",
|
|
"ta>=0.11.0",
|
|
"vectorbt>=0.28.2",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
markers = [
|
|
"network: marks tests as requiring network access",
|
|
]
|