feat(02-06): wire all Phase 2 modules into asyncio REPL entry point

- 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
This commit is contained in:
Claude
2026-04-03 14:54:38 +02:00
parent d04990f6c5
commit e544d57552
3 changed files with 257 additions and 0 deletions

View File

@@ -15,6 +15,9 @@ dependencies = [
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
led-sync = "led_sync.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/led_sync"]