Files
led2/pyproject.toml
Claude af530cfe60 docs(03-01): complete protocol encoders plan — SUMMARY, STATE, ROADMAP updated
- 03-01-SUMMARY.md: WLED encoders, animation cmd, UDP sender, 27 passing tests
- STATE.md: advanced to plan 2/3, progress 80%, decisions recorded
- ROADMAP.md: phase 3 plan progress updated (1/3 complete)
- REQUIREMENTS.md: marked UDP-01/02/03, ANI-03/04 complete
- pyproject.toml: pytest added as dev dependency
- uv.lock: updated lockfile
2026-04-06 21:43:59 +00:00

34 lines
600 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lightsync"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"pydantic>=2.0.0",
"aiofiles>=24.0.0",
"python-dotenv>=1.0.0",
"structlog>=24.0.0",
"soundfile>=0.12.0",
"numpy>=1.26.0",
"librosa>=0.10.0",
"python-multipart>=0.0.9",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27.0",
]
[tool.hatch.build.targets.wheel]
packages = ["lightsync"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]