- Create src/led_sync/main.py with AppState, handle_command, repl, async_main, main - Implements all D-13 REPL commands: play/pause/resume/seek/stop/load/add/save/status/beat/help/quit - Create src/led_sync/__main__.py for python -m led_sync invocation - Add led-sync script entry point to pyproject.toml - Wires AudioPlayer, ChoreographyScheduler, BeatDetector, ESP32Transport
33 lines
621 B
TOML
33 lines
621 B
TOML
[project]
|
|
name = "led-sync-studio"
|
|
version = "0.1.0"
|
|
description = "Cyberpunk LED choreography app for Raspberry Pi + ESP32"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"aubio>=0.4.9",
|
|
"miniaudio==1.61",
|
|
"numpy>=2.4.4",
|
|
"pydantic==2.12.5",
|
|
"sounddevice==0.5.5",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project.scripts]
|
|
led-sync = "led_sync.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/led_sync"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|