-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.02 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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "tinysoundfont"
version = "0.3.6"
authors = [ { name = "Nathan Whitehead", email = "[email protected]" } ]
description = "Python bindings for using SoundFonts (sf2/sf3/sfo formats), generating audio samples, and playing MIDI songs"
readme = "README.md"
python_requires = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pyaudio",
]
[project.optional-dependencies]
test = [
"pytest",
"numpy",
"scipy",
]
[tool.cibuildwheel]
skip = "cp36-*"
[tool.scikit-build]
cmake.verbose = false