pyproject.toml•515 B
[project]
name = "betaflight-mcp-server"
version = "0.1.0"
description = "MCP server for Betaflight flight controller configuration"
requires-python = ">=3.9"
dependencies = [
"mcp>=1.0.0",
"pyserial>=3.5",
]
[project.scripts]
betaflight-mcp = "betaflight_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/betaflight_mcp"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]