17 lines
326 B
TOML
17 lines
326 B
TOML
[project]
|
|
name = "xhs-mcp-server"
|
|
version = "0.1.0"
|
|
description = "MCP Server for XHS Database"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp",
|
|
"mysql-connector-python",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/xhs_mcp_server"]
|