-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (35 loc) · 979 Bytes
/
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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "numpy>=1.13.0", "Cython", "pybind11>=2.2", "setuptools-scm"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = [
"deism/tests" # Path to your test directory
]
[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",
]
dependencies = [
"numpy==1.26",
"scipy",
"sympy",
"psutil",
"matplotlib",
"cython",
"pybind11>=2.2",
"ray",
"sound-field-analysis"
]
[project.urls]
Homepage = "https://github.com/audiolabs/DEISM"