-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (55 loc) · 1.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyshroom"
version = "0.3.0"
description = "Spherical Harmonics Room (shroom): a Python library for room acoustics simulation, Ambisonics processing, and spherical microphone array modelling."
readme = "README.md"
license = "MIT"
authors = [
{name = "Yhonatan Gayer", email = "yhonatangayer@gmail.com"},
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.22",
"scipy>=1.10.0",
"pyroomacoustics>=0.9",
"matplotlib>=3.5",
"sofar>=1.1",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "black", "sounddevice", "pyyaml"]
[project.urls]
Homepage = "https://github.com/Yhonatangayer/shroom"
Repository = "https://github.com/Yhonatangayer/shroom"
Issues = "https://github.com/Yhonatangayer/shroom/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
shroom = [
"data/*.npz",
"data/*.json",
"data/*.txt",
"data/*.md",
"data/*.wav",
"data/*.sofa",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["shroom"]
omit = ["*/shroom_dev/*"]
[tool.coverage.report]
show_missing = true