25 lines
595 B
TOML
25 lines
595 B
TOML
[project]
|
||
name = "ts-anomaly-td"
|
||
version = "0.1.0"
|
||
description = "TDengine 时序异常分析 CLI 工具——ANOMALY_WINDOW × 6 + FORECAST + GT 对比可视化"
|
||
readme = "README.md"
|
||
requires-python = ">=3.11"
|
||
license = {text = "Apache-2.0"}
|
||
dependencies = [
|
||
"taos-ws-py>=0.2.0",
|
||
"pandas>=2.0",
|
||
"numpy>=1.24",
|
||
"matplotlib>=3.7",
|
||
"Pillow>=10.0",
|
||
]
|
||
|
||
[project.scripts]
|
||
ts-anomaly-td = "ts_anomaly_td.cli:main"
|
||
|
||
[build-system]
|
||
requires = ["hatchling"]
|
||
build-backend = "hatchling.build"
|
||
|
||
[tool.pytest.ini_options]
|
||
markers = ["e2e: end-to-end tests requiring TDengine container"]
|