-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm", "cffi"]
build-backend = "setuptools.build_meta"
[project]
name = "sounddevice"
license = "MIT"
dynamic = ["version"]
description = "Play and Record Sound with Python"
readme = "README.rst"
keywords = ["sound", "audio", "PortAudio", "play", "record", "playrec"]
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.optional-dependencies]
numpy = ["numpy"]
[dependency-groups]
dev = [{ include-group = "test" }, { include-group = "doc" }]
test = []
doc = [
"insipid-sphinx-theme",
"sphinx-last-updated-by-git",
]
[project.urls]
Documentation = "https://python-sounddevice.readthedocs.io/"
Repository = "https://github.com/spatialaudio/python-sounddevice/"
Issues = "https://github.com/spatialaudio/python-sounddevice/issues"
[tool.setuptools.dynamic]
version = { attr = "sounddevice.__version__" }