-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
82 lines (65 loc) · 1.88 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
76
77
78
79
80
81
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "jackmatchmaker/version.py"
pattern = "__version__ = \"(?P<version>.*?)\""
[tool.hatch.build]
exclude = [
"/packaging",
]
[tool.hatch.build.targets.wheel]
packages = ["jackmatchmaker"]
[project]
name = "jack-matchmaker"
dynamic = ["version"]
description = "Auto-connect JACK ports as they appear using patterns"
license = "GPL-2.0"
authors = [
{ name = "Christopher Arndt", email = "[email protected]" }
]
readme = "README.md"
license-files = { paths = ["LICENSE"] }
keywords = [
"audio",
"JACK",
"MIDI",
"multimedia",
"music",
]
requires-python = ">=3.8"
dependencies = [
"cachetools",
"pyjacklib",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"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 :: Only",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Utilities",
]
[project.urls]
"Homepage" = "https://github.com/SpotlightKid/jack-matchmaker"
"Source" = "https://github.com/SpotlightKid/jack-matchmaker"
"Bug Tracker" = "https://github.com/SpotlightKid/jack-matchmaker/issues"
[project.scripts]
jack-matchmaker = "jackmatchmaker:main"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 100