Init commit

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-06 18:45:23 +01:00
parent af987a81c0
commit 4bb12f21bb
9 changed files with 527 additions and 0 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[project]
name = "yaml-audio-metadata"
version = "0.1.0"
description = "A python tool to set metadata to mp3 files using the yaml as a source"
authors = [
{name = "allanger",email = "allanger@badhouseplants.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.14,<4.0"
dependencies = [
"click (>=8.3.0,<9.0.0)",
"pyyaml (>=6.0.3,<7.0.0)",
"eyed3 (>=0.9.8,<0.10.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"flake8 (>=7.3.0,<8.0.0)",
"flake8-bugbear (>=25.10.21,<26.0.0)",
"black (>=25.9.0,<26.0.0)"
]