forked from quodlibet/quodlibet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.35 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
[tool.poetry]
name = "quodlibet"
version = "4.4.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.dependencies]
python = "^3.7"
mutagen = "^1.44"
feedparser = "^5.2"
pycairo = "^1.19"
pygobject = "^3.34.0"
# Optional (mainly plugins)
musicbrainzngs = { version = "0.*", optional = true }
pyinotify = { version = "*", optional = true }
dbus-python = { version = "*", optional = true }
[tool.poetry.extras]
# Use with poetry install -E plugins
plugins = ["musicbrainzngs", "pyinotify", "dbus-python", "paho-mqtt"]
[tool.poetry.dev-dependencies]
pytest = '^5.0'
polib = '^1.1.0'
sphinx = '^3.2.0'
sphinx_rtd_theme = '*'
xvfbwrapper = { version = "^0.2", platform = "linux" }
flake8 = "^3.7.9"
coverage = { extras = ["toml"], version = "^5.0.3" }
mypy = "^0.782"
[tool.coverage.run]
omit = ["quodlibet/packages/*"]
include = ["quodlibet/*", "tests/*"]
[build-system]
requires = ["setuptools", "wheel"]