Files
music-mirror/pyproject.toml
T
2026-08-28 16:08:12 +00:00

23 lines
613 B
TOML

[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "music-mirror"
version = "0.5.0"
description = "Maintain a lossy MP3 mirror of a lossless music library"
readme = "README.md"
requires-python = ">=3.11"
# No runtime Python dependencies: the work is done by ffmpeg and rsgain, which
# must be on PATH. A missing rsgain costs the ReplayGain tags and nothing else.
dependencies = []
[project.scripts]
music-mirror = "music_mirror:run"
[project.urls]
Homepage = "https://code.emmathe.dev/lyrathorpe/music-mirror"
[tool.setuptools]
py-modules = ["music_mirror"]