20 lines
414 B
TOML
20 lines
414 B
TOML
[project]
|
|
name = "tortoise-stock-sidecar"
|
|
version = "0.1.0"
|
|
description = "Python sidecar for unified A-share data fetching and DuckDB cache."
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"duckdb>=0.10.3,<1.2",
|
|
"fastapi>=0.110.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"mootdx>=0.11.7"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8.0.0"
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."] |