forked from kergoth/beets-kergoth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 885 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "beets-kergoth"
version = "0.4.0"
description = "Various personal beets plugins that don't yet have a home elsewhere."
license = "Blue Oak Model License 1.0.0"
readme = "README.rst"
homepage = "https://github.com/kergoth/beets-kergoth"
repository = "https://github.com/kergoth/beets-kergoth"
authors = ["Christopher Larson <[email protected]>"]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Topic :: Multimedia :: Sound/Audio',
]
packages = [
{ include = "beetsplug" },
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
beets = "^2.0.0"
confuse = "^2.0.1"
mediafile = ">=0.12.0"
rich = "^13.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cram = "^0.2.2"
flake8 = "^7.1.1"
pytest-cov = "^5.0.0"
cram = "^0.7"
[build-system]
requires = ["poetry>=1.0.0b"]
build-backend = "poetry.masonry.api"