pyproject.toml•702 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-airflow-api"
version = "0.0.0"
description = "Model Context Protocol (MCP) server for Apache Airflow API integration. Provides comprehensive tools for managing Airflow clusters including service operations, configuration management, status monitoring, and request tracking."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.12.15",
"fastmcp>=2.12.3",
]
[project.scripts]
mcp-airflow-api = "mcp_airflow_api.mcp_main:main"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_airflow_api"]