feat: replace typer with cycplots & improve cli

This commit is contained in:
2026-03-30 18:04:53 +02:00
parent bb72623446
commit cf0cb1ab53
4 changed files with 274 additions and 178 deletions
+8 -2
View File
@@ -4,11 +4,12 @@ build-backend = "hatchling.build"
[project]
name = "lrcfetch"
version = "0.1.0"
version = "0.1.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",
@@ -16,8 +17,13 @@ dependencies = [
"platformdirs>=4.9.4",
"pydantic>=2.12.5",
"python-dotenv>=1.2.2",
"typer>=0.24.1",
]
[project.scripts]
lrcfetch = "lrcfetch.cli:run"
[tool.ruff.lint]
ignore = ["E402"]
[dependency-groups]
dev = ["ruff>=0.15.8"]