[project]
name = "datagov-mcp"
version = "0.3.0"
description = "MCP server for Israeli Government Public API (data.gov.il) with visualization capabilities"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.14.0",
"httpx>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"respx>=0.21.0",
"ruff>=0.3.0",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"