[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "birdcage" version = "2026.02.12.1" description = "Winegard satellite dish control for amateur radio sky tracking" license = "MIT" requires-python = ">=3.11" authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}] dependencies = [ "pyserial>=3.5", "click>=8.0", ] [project.scripts] birdcage = "birdcage.cli:main" console-probe = "console_probe.cli:main" [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", "src/console_probe"]