[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-server-starrocks"
version = "0.1.0"
description = "Model Context Protocol server for Starrocks"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
dependencies = [
"mcp>=0.1.0",
"starrocks>=0.321.0",
"pydantic>=2.0.0",
"pytest>=8.3.5",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"mypy",
"pytest",
"pytest-asyncio",
]
[tool.setuptools]
packages = ["mcp_server_starrocks"]
package-dir = {"" = "src"}
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 100