-
Notifications
You must be signed in to change notification settings - Fork 495
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 2.71 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (81 loc) · 2.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8", "wheel", "numpy>=1.13.0", "Cython", "cmake"]
build-backend = "setuptools.build_meta"
[project]
name = "pyroomacoustics"
dynamic = ["version", "readme"]
description = "A simple framework for room acoustics and audio processing in Python."
authors = [
{ name = "Laboratory for Audiovisual Communications, EPFL", email = "fakufaku@gmail.ch" }
]
license = { file = "LICENSE" }
keywords = ["room", "acoustics", "signal processing", "doa", "beamforming", "adaptive"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"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",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"Cython",
"numpy>=1.13.0",
"scipy>=0.18.0",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/LCAV/pyroomacoustics"
Repository = "https://github.com/LCAV/pyroomacoustics.git"
Documentation = "https://pyroomacoustics.readthedocs.io/en/pypi-release/"
Issues = "https://github.com/LCAV/pyroomacoustics/issues"
Changelog = "https://github.com/LCAV/pyroomacoustics/blob/master/CHANGELOG.rst"
[tool.setuptools.dynamic]
readme = { file = ["README.rst"], content-type = "text/x-rst" }
[tool.setuptools]
packages = [
"pyroomacoustics",
"pyroomacoustics.adaptive",
"pyroomacoustics.bss",
"pyroomacoustics.datasets",
"pyroomacoustics.denoise",
"pyroomacoustics.directivities",
"pyroomacoustics.doa",
"pyroomacoustics.experimental",
"pyroomacoustics.phase",
"pyroomacoustics.random",
"pyroomacoustics.simulation",
"pyroomacoustics.transform",
]
[tool.setuptools.package-data]
pyroomacoustics = [
"*.pxd",
"*.pyx",
"data/materials.json",
"data/sofa_files.json",
]
[tool.setuptools_scm]
write_to = "pyroomacoustics/version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
'ignore:Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.:UserWarning'
]
[tool.isort]
profile = "black"
line_length = 88
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.messages_control]
# These are often disabled when using Black to avoid conflicts
disable = [
"C0330", # Wrong hanging indentation
"C0326", # Bad whitespace
]