[project] name = "kilter-mcp" version = "0.2.2" description = "Unofficial MCP server that gives AI agents read-only access to your Kilter Board logbook." readme = "README.md" license = "MIT" license-files = ["LICENSE"] requires-python = ">=3.10" authors = [{ name = "kilter-mcp contributors" }] keywords = ["mcp", "kilter", "kilter-board", "climbing", "kiro", "model-context-protocol"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: End Users/Desktop", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", "Topic :: Utilities", ] dependencies = [ "mcp>=2.2.0,<3", "httpx2>=2.13.0,<3", # zoneinfo has no system database on Windows. "tzdata>=2024.1; sys_platform == 'win32'", ] [project.urls] Homepage = "https://github.com/wmmg101/kilter-mcp" Issues = "https://github.com/wmmg101/kilter-mcp/issues" [project.scripts] kilter-mcp = "kilter_mcp.server:main" [dependency-groups] dev = [ "pytest>=8", "pytest-asyncio>=0.24", "ruff>=0.6", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/kilter_mcp"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] addopts = "-q" [tool.ruff] line-length = 100 target-version = "py310" src = ["src", "tests"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM", "RUF"] ignore = ["RUF012"] [tool.ruff.lint.per-file-ignores] "tests/*" = ["S101"]