45 lines
846 B
TOML
45 lines
846 B
TOML
[project]
|
|
name = "beets-music-videos"
|
|
version = "0.0.1"
|
|
description = "Simple plugin to allow managing music videos"
|
|
authors = [
|
|
{name = "David Freitag",email = "david@freitag.site"}
|
|
]
|
|
license = {text = "apache"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.14,<4.0"
|
|
dependencies = [
|
|
"beets[musicbrainz] (>=2.7.1,<3.0.0)",
|
|
"nose (>=1.3.7,<2.0.0)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{include = "beetsplug"}
|
|
]
|
|
name = "beets-music-videos"
|
|
version = "0.0.1"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.14,<4.0"
|
|
beetsplug = "^2.7.1"
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
unsafe-fixes = false
|
|
preview = true
|
|
|
|
[tool.nosetests]
|
|
verbosity = 2
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff (>=0.15.6,<0.16.0)",
|
|
"beets[musicbrainz] (>=2.7.1,<3.0.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|