This commit is contained in:
2026-03-10 18:24:14 +08:00
parent ab91804be1
commit 075932d6a6
17 changed files with 72668 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[project]
name = "strat"
version = "0.0.0"
requires-python = ">=3.12"
dependencies = [
"numpy>=2.4.3",
"pandas>=3.0.1",
"scipy>=1.17.1",
]
[dependency-groups]
dev = [
"isort>=7.0.0",
"yapf>=0.43.0",
]
[tool.isort]
profile = "black"
line_length = 100
[tool.yapf]
based_on_style = "pep8"
column_limit = 100
continuation_indent_width = 2
indent_width = 2
[tool.yapfignore]
ignore_patterns = [
".venv",
]