-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.14 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm", "cffi"]
build-backend = "setuptools.build_meta"
[project]
name = "JACK-Client"
license = "MIT"
dynamic = ["version"]
description = "JACK Audio Connection Kit (JACK) Client for Python"
readme = "README.rst"
keywords = ["JACK", "audio", "low-latency", "multi-channel"]
authors = [{ name = "Matthias Geier", email = "Matthias.Geier@gmail.com" }]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
]
requires-python = ">=3.7"
dependencies = ["cffi"]
[project.urls]
Documentation = "http://jackclient-python.readthedocs.io/"
Repository = "https://github.com/spatialaudio/jackclient-python/"
Issues = "https://github.com/spatialaudio/jackclient-python/issues"
[dependency-groups]
dev = [{ include-group = "test" }, { include-group = "doc" }]
test = ["pytest"]
doc = [
"insipid-sphinx-theme",
"sphinx-last-updated-by-git",
]
[tool.setuptools]
py-modules = ["jack", "_jack"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "jack.__version__" }