Files
chinese-equity-quant/pyproject.toml
T
Yuxuan Yan 528620b271 Raise coverage threshold to 95% and expand test coverage
- pyproject.toml: fail_under 80 → 95
- test_alpha: +79 lines
- test_cli_workflow: +226 lines
- test_derived: +121 lines
- test_downloader_contracts: +169 lines
- test_features: +16 lines
- test_minute_downloader: +81 lines
- test_portfolio: +208 lines
2026-06-16 21:10:30 +08:00

51 lines
884 B
TOML

[project]
name = "chinese-equity-quant"
version = "0.1.0"
description = "A modular Chinese A-share quant research framework (daily frequency)."
requires-python = ">=3.10"
dependencies = [
"akshare>=1.14.0",
"baostock>=0.8.8",
"pandas>=2.0.0",
"matplotlib>=3.7.0",
"click>=8.0.0",
"pyarrow>=14.0.0",
]
[project.optional-dependencies]
backtrader = [
"backtrader>=1.9.76.123",
]
[dependency-groups]
dev = [
"coverage>=7.14.1",
"pytest>=7.0.0",
]
[tool.uv]
package = false
[tool.pytest.ini_options]
markers = [
"network: tests that call live external data providers and are skipped unless explicitly enabled",
]
[tool.coverage.run]
branch = true
relative_files = true
source = [
".",
]
[tool.coverage.report]
fail_under = 95
show_missing = true
skip_covered = false
omit = [
"tests/*",
"docs/*",
"scripts/*",
".venv/*",
]