-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.08 KB
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
[project]
name = "aviation-mcp-server"
version = "0.1.0"
description = "MCP server giving AI agents access to aviation data — live flights, airport weather, airline info"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "AiAgentKarl"}]
keywords = ["mcp", "aviation", "flights", "weather", "airports", "ai-agent"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
readme = "README.md"
dependencies = [
"mcp[cli]>=1.9.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.0",
"pydantic>=2.12.0",
]
[project.urls]
Homepage = "https://github.com/AiAgentKarl/aviation-mcp-server"
Repository = "https://github.com/AiAgentKarl/aviation-mcp-server"
Issues = "https://github.com/AiAgentKarl/aviation-mcp-server/issues"
[project.scripts]
aviation-mcp = "src.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]