-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
40 lines (36 loc) · 984 Bytes
/
pyproject.toml
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
[project]
name = "greptimedb-mcp-server"
packages = [{ include = "src/greptimedb_mcp_server" }]
version = "0.1.0"
description = "A Model Context Protocol (MCP) server that enables secure interaction with GreptimeDB databases. This server allows AI assistants to list tables, read data, and execute SQL queries through a controlled interface, making database exploration and analysis safer and more structured."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"mcp>=1.0.0",
"mysql-connector-python>=9.1.0",
"pyyaml>=6.0.2",
]
[[project.authors]]
name = "dennis zhuang"
email = "[email protected]"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"venv",
".git",
".gitignore"
]
[tool.uv]
dev-dependencies = [
"pyright",
"black",
"flake8",
"pytest",
"pytest-asyncio",
"pytest-cov",
]
[project.scripts]
greptimedb-mcp-server = "greptimedb_mcp_server:main"