-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (29 loc) · 1.1 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
[build-system]
requires = ["setuptools >= 61.0.0", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
jack_connection_manager = ["*.yml"]
# automatically handle version numbers
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/jack_connection_manager/_version.py"
versionfile_build = "jack_connection_manager/_version.py"
tag_prefix = ""
parentdir_prefix = "jack_connection_manager-"
[project]
name = "jack_connection_manager"
description = "A tool for automatically connecting jack clients with lots of ports"
authors = [{ name = "Max Weidauer", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = ["JACK-Client", "click", "pyYAML", "sdnotify"]
license = { file = "LICENSE" }
[project.scripts]
jack-connection-manager = "jack_connection_manager.jack_connection_manager:main"
[project.urls]
Github = "https://github.com/tu-studio/jack-connection-manager"
Issues = "https://github.com/tu-studio/jack-connection-manager/issues"