Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
30 lines
573 B
TOML
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"]
|