Core library published as winegard-birdcage (import stays `birdcage`). MCP server renamed birdcage-mcp → mcbirdcage, matching mcserial pattern. Both packages live on PyPI — `uvx mcbirdcage` works out of the box.
41 lines
849 B
TOML
41 lines
849 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "birdcage-tui"
|
|
version = "2026.02.13"
|
|
description = "Textual TUI for Winegard Carryout G2 satellite dish control"
|
|
license = "MIT"
|
|
requires-python = ">=3.11"
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
|
dependencies = [
|
|
"winegard-birdcage",
|
|
"textual>=1.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
camera = ["Pillow>=10.0", "astropy>=6.0"]
|
|
|
|
[project.scripts]
|
|
birdcage-tui = "birdcage_tui.app:main"
|
|
|
|
[tool.uv.sources]
|
|
winegard-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_tui"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"pytest-asyncio>=1.3.0",
|
|
]
|