27 lines
484 B
TOML
27 lines
484 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 = [
|
|
"pytest>=7.0.0",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|