-
Notifications
You must be signed in to change notification settings - Fork 50
/
pyproject.toml
69 lines (60 loc) · 1.52 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
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "linux-show-player"
version = "0.6.4"
description = "Cue player for stage productions"
authors = ["Francesco Ceruti <ceppofrancy@gmail.com>"]
license = "GPLv3"
readme = "README.md"
homepage = "https://www.linux-show-player.org/"
repository = "https://github.com/FrancescoCeruti/linux-show-player"
packages = [
{ include = "lisp" }
]
exclude = [
"lisp/i18n/ts/",
"lisp/ui/themes/*/assets/"
]
[tool.poetry.dependencies]
python = ">= 3.8, < 3.13"
appdirs = "^1.4.1"
falcon = "^3.0"
jack-client = "^0.5"
mido = "^1.3"
pygobject = "^3.30"
pyqt5 = "^5.15.2"
pyqt5-qt5 = "^5.15.2"
python-rtmidi = "^1.1"
requests = "^2.20"
sortedcontainers = "^2.0"
humanize = "^4.8.0"
# pyalsa is currently broken for python >= 3.12
pyalsa = { git = "https://github.com/alsa-project/alsa-python.git", tag = "v1.2.12" }
# use a pyliblo fork that define dependecies correctly
pyliblo3 = { git = "https://github.com/FrancescoCeruti/pyliblo3", rev = "9b66f93bc058807fdbe27f9255b18b0df8e60e32" }
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^7.1"
furo = "^2023.07.26"
myst-parser = "^2.0.0"
sphinx-autobuild = "^2021.3.14"
sphinx-inline-tabs = "^2023.4.21"
[tool.poetry.group.dev.dependencies]
toml = "*"
packaging = "*"
black = "*"
[tool.poetry.scripts]
linux-show-player = "lisp.main:main"
[tool.black]
line-length = 80
target-version = ['py37']
exclude = '''
/(
\.git
| dist
| docs
)/
'''