forked from geigerzaehler/beets-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 900 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
36
[tool.poetry]
name = "beets-check"
version = "0.14.0"
description = "beets plugin verifying file integrity with checksums"
authors = ["Thomas Scholtes <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "http://www.github.com/geigerzaehler/beets-check"
classifiers = [
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players :: MP3",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
]
packages = [{ include = "beetsplug" }]
[tool.poetry.dependencies]
python = "^3.8, >=3.8.1"
beets = "^1.6"
mediafile = "^0.12.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
pytest = "^8.0.0"
isort = "^5.13.2"
black = "^24.1.1"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"