39 lines
1001 B
TOML
39 lines
1001 B
TOML
[project]
|
|
name = "scaled_soundfile"
|
|
version = "1.0.0"
|
|
authors = [
|
|
{ name="Etienne Gaudrain", email="etienne.gaudrain@cnrs.fr" },
|
|
]
|
|
description = "A thin wrapper around the `soundfile` module to save sound files with arbitrary scale."
|
|
readme = "README.md"
|
|
requires-python = ">=3.0"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: Microsoft :: Windows",
|
|
]
|
|
dependencies = [
|
|
"numpy",
|
|
"soundfile"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.web.rug.nl/dBSPL/scaled_soundfile.git"
|
|
Issues = "https://git.web.rug.nl/dBSPL/scaled_soundfile/issues"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
# [tool.setuptools]
|
|
# include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
# All the following settings are optional:
|
|
where = ["."] # ["."] by default
|
|
include = ["scaled_soundfile*"] # ["*"] by default
|
|
exclude = [] # empty by default
|
|
namespaces = false # true by default
|