pyproject.tomlโข784 B
[project]
name = "mcp-server-template"
version = "0.1.0"
description = "MCP Server Template"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastmcp>=2.11.3",
"httpx>=0.28.1",
"pydantic>=2.0.0",
]
[dependency-groups]
dev = [
"ipykernel>=6.30.1",
"pytest>=8.4.1",
"pytest-asyncio>=0.23.0",
"ruff>=0.12.10",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow running tests"
]