forked from orchidas/VAIAWorkshop25Public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (75 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
85 lines (75 loc) · 1.68 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
[build-system]
requires = ["setuptools ~= 67.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
# include the name of the folder containing the library
include = ["room_acoustics", "spatial_audio"]
[project]
name = "VAIAWorkshop"
description = "Virtual Acoustics for Immersive Audio Workshop repository, 2025"
version = "0.0.1"
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
"loguru>=0.6.0",
"notebook",
"numpy",
"scipy",
"h5py",
"tqdm",
"matplotlib",
"torch",
"torchaudio",
"soundfile",
"librosa",
"pyfar",
"spaudiopy",
"sofar",
"flamo",
"spaudiopy",
"pyroomacoustics",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
dev = [
"flake8",
"flake8-pyproject",
"isort>=5.12.0",
"mypy",
"pylint",
"nbstripout",
"yapf",
]
[tool.flake8]
max-line-length = 120
extend-ignore = "E203"
[tool.isort]
line_length = 120
profile = "black"
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]
known_first_party = [ "src"]
force_sort_within_sections = true
force_alphabetical_sort_within_sections = true
honor_noqa = true
[tool.yapf]
based_on_style = "google"
spaces_before_comment = 2
split_before_logical_operator = true
column_limit = 120
split_all_top_level_comma_separated_values = true
each_dict_entry_on_separate_line = true
force_multiline_dict = true