Files
led2/pyproject.toml
Claude 165cdb6f23 feat(06-01): add yt-dlp and anthropic dependencies
- Add yt-dlp>=2025.0.0 and anthropic>=0.40.0 to pyproject.toml
- Wire ANTHROPIC_API_KEY env var in docker-compose.prod.yml (empty default)
- Rebuilt Docker image, both packages importable in container
2026-04-07 11:35:33 +00:00

36 lines
649 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",
"yt-dlp>=2025.0.0",
"anthropic>=0.40.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27.0",
]
[tool.hatch.build.targets.wheel]
packages = ["lightsync"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]