File: pyproject.toml

package info (click to toggle)
jack-mixer 19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 944 kB
  • sloc: python: 4,393; ansic: 3,095; sh: 35; xml: 3; makefile: 3
file content (96 lines) | stat: -rw-r--r-- 2,100 bytes parent folder | download
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
build-backend = "mesonpy"
requires = [
    "cython",
    "wheel",
    "meson-python",
    "ninja",
    "docutils",
]


[project]
name = "jack_mixer"
dynamic = ['version']
description = "A GTK+ JACK audio mixer application"
readme = "README.md"
authors = [
    { name="Nedko Arnaudov", email="nedko (a.t) arnaudov (dot) name" },
]
maintainers = [
    { name="Christopher Arndt", email="info (a.t.) chrisarndt.de" },
]
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.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Multimedia :: Sound/Audio :: Mixers",
]
keywords = [
    "mixer",
    "audio",
    "music",
    "jack",
    "gtk",
]
requires-python = ">=3.8"
dependencies = [
    "platformdirs",
    "PyGObject",
    "pycairo",
]

[project.license]
file = "COPYING"


[project.urls]
"Homepage" = "https://rdio.space/jackmixer/"
"Source" = "https://github.com/jack-mixer/jack-mixer"
"Bug Tracker" = "https://github.com/jack-mixer/jack-mixer/issues"


[project.scripts]
"jack_mixer" = "jack_mixer.app:main"


[tool.meson-python.args]
setup = [
    "-Dwheel=true",
    "-Dbuildtype=release",
    "-Dcheck-py-modules=false",
]


[tool.isort]
line_length = 99
profile = "black"
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true


[tool.black]
line-length = 99
target-version = [
    "py38",
    "py39",
    "py310",
    "py311",
    "py312",
]
force-exclude = 'jack_mixer/nsmclient\.py'