Files
fhi-statistikk-mcp/pyproject.toml
Torbjørn Lindahl 3b3721091b
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
final implementation
2026-03-27 23:38:52 +01:00

30 lines
573 B
TOML

[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"]