-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 873 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 = "nd-toolbox"
version = "0.8.0"
description = "Little helpers for Navidrome."
authors = ["David Trattnig <david@subsquare.at>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
package-mode = false
packages = [
{ include = "beetsplug", from="src" },
{ include = "ndtools", from="src" },
]
[tool.poetry.dependencies]
beets = "^2.2.0"
python = "^3.13"
python-dotenv = "^1.0.1"
pytest-mock = "^3.14.0"
jsonpickle = "^4.0.1"
colorlog = "^6.9.0"
tomli = "^2.2.1"
easydict = "^1.13"
fuzzywuzzy = "^0.18.0"
python-levenshtein = "^0.26.1"
confuse = "^2.0.1"
[tool.poetry.group.dev.dependencies]
codespell = "^2.3.0"
ruff = "^0.8.6"
pytest = "^8.3.4"
[build-system]
requires = ["setuptools", "poetry-core>=1.8.5"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = [
"--import-mode=importlib",
]