-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 904 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
37
38
39
40
[tool.poetry]
name = "beets-alpine-exec"
version = "0.10.2"
description = "Opinionated container for Beets Music Organizer"
authors = ["Rowan Gillson <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "3.12.8"
beets = "2.2.0"
flask = "^3.1.0"
pillow = "^10.4.0"
pyacoustid = "^1.3.0"
pylast = "^5.3.0"
requests = "^2.32.3"
wheel = "^0.45.1"
unidecode = "^1.3.8"
colorama = "^0.4.6"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
commitizen = "^4.1.0"
[tool.poetry.plugins]
[tool.poetry.plugins."poetry.application.plugin"]
export = "poetry_plugin_export.plugins:ExportApplicationPlugin"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.10.2"
tag_format = "v$version"
annotated_tag = "true"
version_files = [
"pyproject.toml:version"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"