-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
43 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
43
[build-system]
requires = [
"setuptools>=42",
"wheel",
"cffi>=1.12.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "miniaudio"
version = "1.72"
description = "python bindings for the miniaudio library and its decoders (mp3, flac, ogg vorbis, wav)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Irmen de Jong", email = "irmen@razorvine.net"}
]
keywords = ["sound", "audio", "playback", "recording", "conversion", "decoding"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
dependencies = ["cffi>=1.12.0"]
[project.urls]
Homepage = "https://github.com/irmen/pyminiaudio"
[project.scripts]
miniaudio-documentation = "setup:make_md_docs"
[tool.setuptools.packages.find]
include = ["miniaudio*"]