22 lines
399 B
TOML
22 lines
399 B
TOML
|
|
[project]
|
||
|
|
name = "ProStock"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "A股量化投资框架"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.10,<3.14"
|
||
|
|
dependencies = [
|
||
|
|
"pandas>=2.0.0",
|
||
|
|
"numpy>=1.24.0",
|
||
|
|
"tushare>=2.0.0",
|
||
|
|
"pydantic>=2.0.0",
|
||
|
|
"pydantic-settings>=2.0.0",
|
||
|
|
"tqdm>=4.65.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.uv]
|
||
|
|
package = false
|