pyproject.tomlβ’734 B
[project]
name = "simdoc-mcp"
version = "0.1.0"
description = "MCP server for simulator documentation"
authors = [{name = "SimDoc Team"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.6.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"sse-starlette>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.3.0",
]
[project.scripts]
simdoc-mcp = "simdoc_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.black]
line-length = 100
target-version = ["py310"]