final implementation
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled

This commit is contained in:
Torbjørn Lindahl
2026-03-27 23:38:52 +01:00
parent 4b2e7376bd
commit 3b3721091b
31 changed files with 5107 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[project]
name = "fhi-statistikk-mcp"
version = "0.1.0"
description = "MCP server for FHI Statistikk Open API"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.0.0",
"uvicorn>=0.30",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
]
[project.scripts]
fhi-statistikk-mcp = "fhi_statistikk_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fhi_statistikk_mcp"]
[tool.pytest.ini_options]
pythonpath = ["src"]