forked from jack-mixer/jack_mixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (67 loc) · 1.93 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
70
71
72
73
74
75
[build-system]
# https://thiblahute.gitlab.io/mesonpep517/
build-backend = "mesonpep517.buildapi"
requires = [
"cython",
"docutils",
"wheel",
"mesonpep517>=0.2",
"ninja"
]
[tool.mesonpep517.entry-points]
console_scripts = [
"jack_mixer = jack_mixer.app:main"
]
[tool.mesonpep517.metadata]
summary = "A GTK+ JACK audio mixer application"
description-file = "README.md"
# 'keywords' metadata field not supported by mesonpep517 (yet)
#keywords = "mixer,audio,music,jack,gtk"
license = "GPL2+"
author = "Nedko Arnaudov"
author-email = "nedko (a.t) arnaudov (dot) name"
maintainer = "Christopher Arndt"
maintainer-email = "info (a.t.) chrisarndt.de"
home-page = "https://rdio.space/jackmixer/"
project-urls = [
"Source, https://github.com/jack-mixer/jack-mixer",
]
requires= [
"PyGObject",
"pycairo",
"appdirs",
]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
]
meson-python-option-name = "python3"
meson-options = [
"-Dwheel=true",
"--buildtype=release"
]
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 99
multi_line_output = 3
use_parentheses = true
[tool.black]
line-length = 99
target-version = ['py36', 'py37', 'py38']
force-exclude = 'jack_mixer/nsmclient\.py'