pyproject.toml•923 B
[project]
name = "tdengine-mcp-server"
version = "0.0.9"
description = "Add your description here"
readme = "README.md"
authors = [
{ email = "lcprunstone@163.com" }
]
requires-python = ">=3.12"
dependencies = [
"jinja2",
"mcp[cli]",
"taospy",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["import-untyped", "arg-type", "attr-defined", "type-arg", "valid-type", "union-attr", "call-arg", "annotation-unchecked", "typeddict-item"]
[[tool.mypy.overrides]]
module = "*"
disable_error_code = ["import-untyped", "arg-type", "attr-defined", "type-arg", "valid-type", "union-attr", "call-arg", "annotation-unchecked", "typeddict-item"]
ignore_missing_imports = true
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[project.scripts]
tdengine-mcp-server = "tdengine_mcp_server:main"