[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "mcp-sonarqube-proxy" version = "0.1.0" description = "Stdio MCP server that proxies tools from an upstream SonarQube MCP server over streamable HTTP." readme = "README.md" requires-python = ">=3.12" license = { text = "MIT" } authors = [ { name = "Marcus" }, ] dependencies = [ "mcp>=1.27.0,<2", "click>=8.1", "anyio>=4.0", ] [project.scripts] mcp-sonarqube-proxy = "mcp_sonarqube_proxy.cli:main" [dependency-groups] dev = [ "ruff>=0.1", "pytest>=8.0", "pytest-asyncio>=0.23", ] [tool.hatch.build.targets.wheel] packages = ["src/mcp_sonarqube_proxy"] [tool.ruff] line-length = 100 target-version = "py312" [tool.ruff.lint] select = ["E", "F", "I", "UP", "B"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]