-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 1.03 KB
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
40
41
42
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "cffi>=1.17.1"]
build-backend = "setuptools.build_meta"
[project]
name = "das-generator"
dynamic = ["version"]
description = "Dynamic Acoustic Scene Generator."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Emanuel Habets", email = "emanuel.habets@audiolabs-erlangen.de" },
]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=2.2",
"scipy>=0.14.1",
"cffi>=1.17.1",
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"pytest-black",
]
[tool.cffi]
module = "das_generator/_cffi/build.py:das_generator"
[tool.setuptools_scm]
# This section is required for setuptools-scm to work
# Version will be automatically determined from git tags
[project.urls]
Homepage = "https://github.com/ehabets/das-generator"
Issues = "https://github.com/ehabets/das-generator/issues"