Files
lrx-cli/pyproject.toml
T
Uyanide 0d56cde927 test: add basic tests for cache-search & network fetchers
test: enable debug
test: add pytest.ini to mark tests that require network
fix: cache-search should not aquire full match of artists due to different translations
fix: replace dynamic f-string SQL in track WHERE clauses with parameterized nullable conditions
refactor: lrc.py should never directly call print, return a str instead
chore: add requirements.txt (via 'uv export')
chore: update README.md with dev instructions
2026-04-05 11:35:04 +02:00

29 lines
590 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lrx-cli"
version = "0.5.2"
description = "Fetch line-synced lyrics for your music player."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"cyclopts>=4.10.1",
"dbus-next>=0.2.3",
"httpx>=0.28.1",
"loguru>=0.7.3",
"mutagen>=1.47.0",
"platformdirs>=4.9.4",
"python-dotenv>=1.2.2",
]
[project.scripts]
lrx = "lrx_cli.cli:run"
[tool.ruff.lint]
ignore = ["E402"] # Since there are headers
[dependency-groups]
dev = ["pytest>=9.0.2", "ruff>=0.15.8"]