[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "birdcage-mcp" version = "2026.02.17" description = "FastMCP server for Winegard satellite dish control" license = "MIT" requires-python = ">=3.11" authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}] dependencies = [ "birdcage", "fastmcp>=2.0", ] [project.scripts] birdcage-mcp = "birdcage_mcp.server:main" [tool.uv.sources] birdcage = { path = "..", editable = true } [tool.ruff] target-version = "py311" src = ["src"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"] [tool.hatch.build.targets.wheel] packages = ["src/birdcage_mcp"] [dependency-groups] dev = ["pytest>=9.0.2", "pytest-asyncio>=1.3.0"]