-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
60 lines (51 loc) · 1.6 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "beetcamp"
version = "0.21.0"
description = "Bandcamp autotagger source for beets (http://beets.io)."
authors = ["Šarūnas Nejus <[email protected]>"]
readme = "README.md"
license = "GPL-2.0"
homepage = "https://github.com/snejus/beetcamp"
repository = "https://github.com/snejus/beetcamp"
packages = [{ include = "beetsplug" }]
include = ["LICENSE", "README.md"]
keywords = ["music", "bandcamp", "beets", "metadata"]
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Text Processing :: General",
]
[tool.poetry.urls]
Changelog = "https://github.com/snejus/beetcamp/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/snejus/beetcamp/issues"
[tool.poetry.dependencies]
python = ">=3.9, <4"
beets = { version = ">=1.5", extras = ["fetchart"] }
pycountry = ">=20.7.3"
httpx = ">=0.27.0"
packaging = ">=24.0"
[tool.poetry.dev-dependencies]
coveralls = { version = ">=4.0.1", python = ">=3.8,<3.13" }
filelock = ">=3.16.1"
flake8 = ">=3.8.4"
flake8-bugbear = ">=22.7.1"
flake8-comprehensions = ">=3.10.0"
flake8-eradicate = ">=1.3.0"
gitpython = ">=3.1.43"
mypy = ">=0.790"
pylint = ">=2.7.4"
pytest = ">=6.2"
pytest-cov = ">=2.10.1"
pytest-randomly = ">=3.10"
pytest-xdist = ">=3.5.0"
rich-tables = "*"
[tool.poetry.scripts]
beetcamp = "beetsplug.bandcamp:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks.test-files]
help = "Run tests on local release data files"
cmd = "pytest -k file -p no:randomly --no-cov -s"