Skip to content

Commit

Permalink
changed toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeyuXuAudio committed Oct 21, 2024
1 parent b5c9746 commit d550574
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit d550574

Please sign in to comment.