foundation: STOPPING_RULE, WORKFLOW, pyproject, calendar YAML, _meta, directory layout

This commit is contained in:
Marius
2026-05-13 12:33:24 +03:00
parent 86f603efbd
commit 31dcb4abe3
11 changed files with 428 additions and 4 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "atm-backtesting"
version = "0.1.0"
description = "M2D backtesting system — vision extraction + stats"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.5",
"pyyaml>=6.0",
"scipy>=1.11",
"numpy>=1.26",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra -q"
[tool.setuptools]
packages = ["scripts"]