-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5c9746
commit d550574
Showing
1 changed file
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,25 @@ | |
# Minimum requirements for the build system to execute. | ||
requires = ["setuptools", "wheel", "numpy>=1.13.0", "Cython", "pybind11>=2.2"] # PEP 508 specifications. | ||
|
||
[tool.pytest.ini_options] | ||
filterwarnings = [ | ||
'ignore:Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.:UserWarning' | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "deism" | ||
dynamic = ["version"] | ||
description = "An image source-based method used to simulate room transfer functions for arbitrary room shapes." | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{ name = "Zeyu Xu", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "setuptools_scm.get_version" } | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/audiolabs/DEISM" |