-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 893 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 893 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
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "scene-synthesis"
version = "0.1.0"
description = "New scene-based synthesis engine for Acoular"
readme = "README.md"
authors = [
{ name = "Art Pelling", email = "a.pelling@tu-berlin.de" }
]
requires-python = ">=3.10,<3.14"
dependencies = [
"acoular>=26.01",
"matplotlib>=3.10.7",
"pyqt6>=6.10.0",
]
[dependency-groups]
dev = [
"diff-cover>=10.2.0",
"pytest>=9.0.2",
"pytest-coverage>=0.0",
"pyyaml>=6.0.3",
"ruff>=0.14.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
#acoular = { path = "../acoular", editable =true }
acoular = { git = "https://github.com/acoular/acoular", rev = "42992470402b5a63f6d88abe035c40baae448691" }
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "-v --durations=10 --cov-report=html --cov-report=term-missing"
env = [
"OPENBLAS_NUM_THREADS=1",
]