-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
32 lines (29 loc) · 988 Bytes
/
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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2", "cmake"]
build-backend = "setuptools.build_meta"
[project]
name="samplerate"
dynamic = ["version", "readme"]
description="Monolithic python wrapper for libsamplerate based on pybind11 and NumPy"
authors=[
{"name" = "Robin Scheibler", "email" ="[email protected]"},
{"name" = "Tino Wagner", "email" ="[email protected]"}
]
requires-python = ">=3.7"
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Multimedia :: Sound/Audio",
]
keywords=["samplerate", "converter", "signal processing", "audio"]
license = {text = "MIT"}
dependencies = ["numpy"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
[tool.setuptools_scm]