From 227e6321bf82e587b7b1b588add6120ae2b99ae2 Mon Sep 17 00:00:00 2001 From: abhishekbhakat Date: Tue, 25 Feb 2025 12:52:35 +0000 Subject: [PATCH] dependencies sorting for mcp server --- pyproject.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4431ddc..c084abf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,10 @@ authors = [ {name = "Abhishek Bhakat", email = "abhishek.bhakat@hotmail.com"} ] dependencies = [ + "airflow-mcp-server>=0.4.0", + "anthropic>=0.46.0", "apache-airflow>=2.10.0", "openai>=1.64.0", - "anthropic>=0.46.0" ] classifiers = [ "Development Status :: 3 - Alpha", @@ -31,6 +32,13 @@ Issues = "https://github.com/abhishekbhakat/airflow-wingman/issues" [project.entry-points."airflow.plugins"] wingman = "airflow_wingman:WingmanPlugin" +[project.optional-dependencies] +dev = [ + "build>=1.2.2", + "pre-commit>=4.0.1", + "ruff>=0.9.2" +] + [build-system] requires = ["hatchling"] build-backend = "hatchling.build"