Tag albums service: album lookup API for Home Assistant and assignment web page

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
This commit is contained in:
2026-09-25 16:56:21 +00:00
co-authored by Claude Opus 5.5
commit eaf77dd0de
20 changed files with 1358 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[project]
name = "tag-albums"
version = "0.1.0"
description = "Tells Home Assistant which album to play for a scanned RFID tag, with a web page to assign albums to new tags."
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"httpx>=0.27",
"jinja2>=3.1",
"python-multipart>=0.0.9",
"pyyaml>=6.0",
"uvicorn>=0.30",
]
[project.scripts]
tag-albums = "tag_albums.cli:main"
[dependency-groups]
dev = ["pytest>=8"]
[build-system]
requires = ["uv_build>=0.12.19,<0.13.0"]
build-backend = "uv_build"