2026-02-15 00:47:54 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "musiksammlung"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "CLI-Tool zum Digitalisieren von CD-Sammlungen für Jellyfin"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"typer>=0.12",
|
|
|
|
|
"pydantic>=2.0",
|
|
|
|
|
"mutagen>=1.47",
|
|
|
|
|
"Pillow>=10.0",
|
|
|
|
|
"httpx>=0.27",
|
2026-02-19 14:05:59 +01:00
|
|
|
"qrcode>=7.0",
|
2026-02-15 00:47:54 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0",
|
|
|
|
|
"pytest-cov",
|
|
|
|
|
"ruff",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
musiksammlung = "musiksammlung.cli:app"
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
|
|
|
|
target-version = "py311"
|
|
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "I", "W"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|