-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 818 Bytes
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
[build-system]
requires = ["setuptools", "wheel", "cmake>=3.23"]
build-backend = "setuptools.build_meta"
[project]
name = "gpuRIR"
version = "1.2.0"
description = "Room Impulse Response (RIR) simulation through Image Source Method (ISM) with GPU acceleration"
authors = [
{name = "David Diaz-Guerra", email = "ddga@unizar.es"}
]
readme = "README.md"
keywords = ["RIR", "GPU", "Image Source Method", "simulation"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = ["gpuRIR"]
[project.optional-dependencies]
dev = ["pytest"]