[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "norwegian-data-mcp" version = "0.2.0" description = "Norwegian public data (companies, statistics, addresses) as MCP tools. No API keys." readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [{ name = "7nashinick" }] keywords = ["mcp", "norway", "ssb", "brreg", "kartverket", "open-data"] dependencies = [ "mcp>=2", "httpx>=0.27", ] [project.optional-dependencies] dev = ["pytest>=8", "pytest-asyncio>=0.23", "ruff>=0.5"] [project.scripts] norwegian-data-mcp = "norwegian_data_mcp.server:main" [project.urls] Homepage = "https://github.com/7nashinick/norwegian-data-mcp" [tool.hatch.build.targets.wheel] packages = ["norwegian_data_mcp"] [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" addopts = "-m 'not live'" markers = ["live: hits the real APIs; run with -m live"] [tool.ruff] line-length = 100 target-version = "py310"