feat: initialize ts-anomaly-td project skeleton

This commit is contained in:
张宗平
2026-06-11 15:31:16 +08:00
commit 1c1233bddd
8 changed files with 740 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[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",
]
[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"]