-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.55 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "mcp-server-apache-airflow"
version = "0.2.2"
description = "Model Context Protocol (MCP) server for Apache Airflow"
authors = [
{ name = "Gyeongmo Yang", email = "[email protected]" }
]
dependencies = [
"httpx>=0.24.1",
"click>=8.1.7",
"mcp>=0.1.0",
"apache-airflow-client>=2.7.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["mcp", "airflow", "apache-airflow", "model-context-protocol"]
[project.optional-dependencies]
dev = [
"build>=1.2.2.post1",
"twine>=6.1.0",
]
[project.urls]
Homepage = "https://github.com/yangkyeongmo/mcp-server-apache-airflow"
Repository = "https://github.com/yangkyeongmo/mcp-server-apache-airflow.git"
"Bug Tracker" = "https://github.com/yangkyeongmo/mcp-server-apache-airflow/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
mcp-server-apache-airflow = "src.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build]
include = [
"src/**/*.py",
"README.md",
"LICENSE",
]
[tool.ruff]
select = ["E", "W", "F", "B", "I"]
line-length = 120
[dependency-groups]
dev = [
"ruff>=0.11.0",
]