-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
42 lines (39 loc) · 1.36 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
39
40
41
42
# ------------------------------------------------------------------------------
#
# pyFLAC
#
# Copyright (c) 2020-2024, Sonos, Inc.
# All rights reserved.
#
# ------------------------------------------------------------------------------
[build-system]
requires = ["setuptools>=42", "cffi>=1.4.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyFLAC"
version = "3.0.0"
description = "A Python wrapper for libFLAC"
readme = "README.rst"
authors = [{ name = "Joe Todd", email = "[email protected]" }]
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
keywords = ["lossless", "compression", "flac", "bindings", "audio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = ["cffi>=1.4.0", "numpy>=1.22", "SoundFile>=0.11"]
[project.scripts]
pyflac = "pyflac.__main__:main"
[tool.setuptools.packages.find]
include = ["pyflac*"]
exclude = ["assets", "docs", "scripts"]