[build-system]
requires = ["hatchling>=1.24.2"]
build-backend = "hatchling.build"
[project]
name = "sonarqube-mcp-server"
version = "0.1.0"
description = "SonarQube MCP server — read-only access to issues, metrics, and rules."
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.14.4,<3.0.0",
"httpx>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[project.scripts]
sonarqube-mcp-server = "sonarqube_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/sonarqube_mcp"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]