[project]
name = "saiten-mcp"
version = "1.0.0"
description = "MCP Server for Agents League @ TechConnect scoring"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.0.0",
"pydantic>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
saiten-mcp = "saiten_mcp.server:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]
markers = [
"unit: Unit tests (no external deps)",
"integration: Integration tests (requires gh CLI)",
"e2e: End-to-end tests (requires gh CLI + GitHub auth)",
]
[tool.coverage.run]
source = ["saiten_mcp"]
omit = ["tests/*", "scripts/*"]