pyproject.toml•1.44 kB
[build-system]
requires = ["hatchling>=1.26.0"]
build-backend = "hatchling.build"
[project]
name = "iflow-mcp_mcp-dst"
version = "1.0.0"
description = "MCP server for Danmarks Statistik's Statistikbank API"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Brokk Sindre", email = ""},
]
keywords = [
"mcp",
"model-context-protocol",
"danmarks-statistik",
"statistics",
"data-analysis",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.0.0",
"requests>=2.31.0",
"pydantic>=2.0.0",
"httpx>=0.24.0",
]
[project.urls]
Homepage = "https://github.com/Brokk-Sindre/mcp-dst"
Repository = "https://github.com/Brokk-Sindre/mcp-dst"
Issues = "https://github.com/Brokk-Sindre/mcp-dst/issues"
[project.scripts]
mcp-dst = "server:main"
[tool.hatch.build.targets.wheel]
packages = ["."]
include = [
"server.py",
"README.md",
"LICENSE",
"requirements.txt",
]