forked from quodlibet/quodlibet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.69 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
[tool.poetry]
name = "quodlibet"
version = "4.6.0-pre"
description = "A music library, tagger, and player"
authors = ["Joe Wreschnig", "Michael Urman", "Steven Robertson",
"Christoph Reiter", "Nick Boultbee", "(many others)"]
maintainers = ["Christoph Reiter"]
homepage = "https://quodlibet.readthedocs.io/"
documentation = "https://quodlibet.readthedocs.io/"
repository = "https://github.com/quodlibet/quodlibet"
keywords = ["audio", "music", "player", "tags", "gtk"]
license = "GPL-2.0-or-later"
packages = [
{ include = "quodlibet", from = "." }
]
[tool.poetry.scripts]
# Convenience: `poetry run quodlibet` just runs the app (with no CLI args)
quodlibet = "quodlibet.main:main"
[tool.poetry.dependencies]
python = "^3.8"
mutagen = "^1.45"
feedparser = "^5.2 || ^6.0"
pycairo = "^1.19"
pygobject = "^3.34.0"
# Optional (mainly plugins)
musicbrainzngs = { version = "0.*", optional = true }
dbus-python = { version = "*", optional = true }
soco = { version = "^0.22.2", optional = true }
pypresence = { version = "^4.2.1", optional = true }
[tool.poetry.extras]
# Use with poetry install -E plugins
plugins = ["musicbrainzngs", "pyinotify", "dbus-python", "paho-mqtt", "soco", "pypresence"]
[tool.poetry.dev-dependencies]
pytest = '^7.1.3'
polib = '^1.1.1'
sphinx = '^5.1.1'
sphinx_rtd_theme = '^1.0.0'
sphinx-autobuild = "^2021.3.14"
xvfbwrapper = { version = "^0.2.9", platform = "linux" }
flake8 = "^5.0.4"
coverage = { extras = ["toml"], version = "^6.4.4" }
mypy = "^0.971"
flaky = "^3.7.0"
types-docutils = "^0.19.0"
types-certifi = "^2021.10.8.3"
types-requests = "^2.28.9"
[tool.coverage.run]
omit = ["quodlibet/packages/*"]
include = ["quodlibet/*"]
[build-system]
requires = ["setuptools", "wheel"]