-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.11 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
93
94
95
96
97
[build-system]
requires = ["setuptools ~= 67.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["diff_gfdn", "spatial_sampling"]
# include the name of the folder containing the library
# eg: include = ["diff_gfdn"]
[project]
name = "DiffGFDN"
description = "Differentiable Grouped Feedback Delay Networks for dynamic and efficient late reverberation rendering in coupled spaces"
version = "0.0.1"
requires-python = ">=3.8,<3.13"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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==1.26.4",
"scipy",
"h5py",
"tqdm",
"matplotlib",
"pydantic",
"torch",
"torchaudio",
"torchcodec",
"soundfile",
"librosa",
"scikit-learn",
"onnx",
"onnxruntime",
"optuna",
"plotly",
"kaleido",
"pyfar",
"pandas",
"spaudiopy",
"sofar",
]
[project.scripts]
run_model = "run_model:main"
run_subband_training_treble = "run_subband_training_treble:main"
convert_mat_to_pkl = "convert_mat_to_pkl:main"
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "tox"]
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