- Remove python-mpv>=1.0.5 (server-side playback replaced by browser audio) - Add librosa>=0.10.0 for beat detection and tempo analysis - Keep soundfile, numpy, python-multipart (still needed)
29 lines
548 B
TOML
29 lines
548 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"]
|