Files
mcp-template-python/pyproject.toml
2025-07-25 09:28:12 +08:00

31 lines
731 B
TOML

[project]
name = "mcp-template-python"
version = "0.1.2"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Sun-ZhenXing", email = "1006925066@qq.com" }
]
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.116.1",
"mcp[cli]>=1.12.2",
"pydantic-settings>=2.10.1",
"rich>=14.0.0",
]
[project.scripts]
mcp-template-python = "mcp_template_python.__main__:main"
dev = "mcp_template_python.__main__:dev"
prod = "mcp_template_python.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/mcp_template_python/__about__.py"
[tool.hatch.build.targets.sdist]
only-include = ["src/mcp_template_python"]