[project] name = "cfr-mcp" version = "0.2.2" description = "MCP server for the US Code of Federal Regulations (eCFR)" readme = "README.md" requires-python = ">=3.11" license = { text = "MIT" } keywords = ["mcp", "cfr", "ecfr", "regulations", "government", "compliance"] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Text Processing :: Indexing", ] dependencies = [ "mcp>=2.0", "httpx>=0.27", "lxml>=5.0", "pydantic>=2.0", ] [project.optional-dependencies] dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "respx>=0.21", "ruff>=0.6"] [project.scripts] cfr-mcp = "cfr_mcp.server:main" [project.urls] Homepage = "https://github.com/mccallar/cfr-mcp" Repository = "https://github.com/mccallar/cfr-mcp" Issues = "https://github.com/mccallar/cfr-mcp/issues" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/cfr_mcp"] [tool.pytest.ini_options] pythonpath = ["src"] testpaths = ["tests"] asyncio_mode = "auto" [tool.ruff] line-length = 100