forked from StarRocks/mcp-server-starrocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 837 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 837 Bytes
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
[project]
name = "mcp-server-starrocks"
version = "0.3.0"
description = "official MCP server for StarRocks"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"loguru>=0.7.3",
"fastmcp>=2.14.0",
"mysql-connector-python>=9.2.0",
"pandas>=2.2.3",
"plotly>=6.0.1",
"kaleido==0.2.1",
"adbc-driver-manager>=0.8.0",
"adbc-driver-flightsql>=0.8.0",
"pyarrow>=14.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[[project.authors]]
name = "changbinglin"
email = "changbinglin@starrocks.com"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
mcp-server-starrocks = "mcp_server_starrocks:main"
[project.urls]
Home = "https://github.com/starrocks/mcp-server-starrocks"