-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "greptimedb-mcp-server"
version = "0.4.8"
description = "MCP server for GreptimeDB with SQL/TQL/PromQL support, sensitive data masking, and prompt templates for observability data analysis."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"mcp>=1.8.0",
"mysql-connector-python==9.5.0",
"pyyaml>=6.0.2",
"aiohttp>=3.9.0",
]
[[project.authors]]
name = "dennis zhuang"
email = "killme2008@gmail.com"
[project.scripts]
greptimedb-mcp-server = "greptimedb_mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/greptimedb_mcp_server"]
[tool.hatch.build]
exclude = [
"venv/",
".git/",
".gitignore",
"*.pyc",
"__pycache__/",
".pytest_cache/",
".coverage",
"tests/",
"docs/",
]
include = [
"src/**",
"templates/**/*.md",
"templates/**/*.yaml",
"README.md",
"LICENSE*",
]
[tool.uv]
dev-dependencies = [
"pyright",
"black",
"flake8",
"pytest",
"pytest-asyncio",
"pytest-cov",
]