fix uv build error

This commit is contained in:
2025-02-24 10:16:19 +00:00
parent f1fb9ac925
commit 724579a337

View File

@@ -3,6 +3,9 @@ name = "airflow-mcp-server"
version = "0.2.0" version = "0.2.0"
description = "MCP Server for Airflow" description = "MCP Server for Airflow"
requires-python = ">=3.11" requires-python = ">=3.11"
authors = [
{name = "Abhishek Bhakat", email = "abhishek.bhakat@hotmail.com"}
]
dependencies = [ dependencies = [
"aiofiles>=24.1.0", "aiofiles>=24.1.0",
"aiohttp>=3.11.11", "aiohttp>=3.11.11",
@@ -14,6 +17,9 @@ dependencies = [
"pyyaml>=6.0.0", "pyyaml>=6.0.0",
] ]
[project.urls]
repository = "https://github.com/abhishekbhakat/airflow-mcp-server"
[project.scripts] [project.scripts]
airflow-mcp-server = "airflow_mcp_server.__main__:main" airflow-mcp-server = "airflow_mcp_server.__main__:main"
@@ -42,9 +48,7 @@ exclude = [
packages = ["src/airflow_mcp_server"] packages = ["src/airflow_mcp_server"]
[tool.hatch.build.targets.wheel.sources] [tool.hatch.build.targets.wheel.sources]
"src/airflow_mcp_server" = [ "src/airflow_mcp_server" = "airflow_mcp_server"
"*.yaml",
]
[tool.pytest.ini_options] [tool.pytest.ini_options]
pythonpath = ["src"] pythonpath = ["src"]