Public Access
24 lines
531 B
TOML
24 lines
531 B
TOML
[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"
|