Files
lidarr-mb-gap/src-cleanup/pyproject.toml
Danilo Reyes 026c7fe0d8 Add lidarr-cleanup-singles package and integration
- Introduced a new package `lidarr-cleanup-singles` to identify and manage duplicate single tracks in Lidarr.
- Updated `flake.nix` to include the new package in outputs and modified app definitions to support it.
- Created a new script in `src-cleanup` for the main functionality, including audio fingerprint verification.
- Added necessary dependencies and configuration in `pyproject.toml` for the new package.
- Removed unused `flake-utils` and `systems` entries from `flake.lock` to streamline the configuration.
2025-11-13 21:46:03 -06:00

20 lines
382 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["main"]
[project]
name = "lidarr-cleanup-singles"
version = "1.0.0"
description = "Identify and optionally delete duplicate single tracks in Lidarr"
requires-python = ">=3.8"
dependencies = [
"requests",
]
[project.scripts]
lidarr-cleanup-singles = "main:main"