forked from Alizeded/BERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (65 loc) · 1.59 KB
/
pyproject.toml
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
[project]
name = "BERP"
version = "0.1.4"
description = "BERP:A Blind Estimator of Room Acoustic and Physical Parameters"
authors = [
{name = "Lijun Wang & Yixian Lu", email = "[email protected]"},
{name = "Yixian Lu", email = "[email protected]"},
]
dependencies = [
"torch==2.3.1",
"torchaudio",
"lightning>=2.2.0,<3.0.0",
"torchmetrics>=1.4.0",
"hydra-core>=1.3.2",
"hydra-colorlog>=1.2.0",
"hydra-optuna-sweeper>=1.2.0",
"scipy>=1.12.0",
"numpy>=1.26.4",
"scikit-learn",
"nnAudio==0.3.2",
"librosa",
"xformers==0.0.27",
"einops>=0.8.0",
"rich",
"tqdm",
"pandas>=2.2.1",
"rootutils>=1.0.7",
"evaluate>=0.4.1",
]
requires-python = ">=3.11,<3.12"
readme = "README.md"
license = {text = "GPL-V3"}
[tool.pdm]
distribution = true
[tool.pdm.build]
run-setuptools = true
[[tool.pdm.sources]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[[tool.pdm.source]]
include_packages = ["torch", "torchaudio"]
exclude_packages = ["*"]
name = "torch"
url = "https://download.pytorch.org/whl/cu121"
verify_ssl = true
[build-system]
requires = ["pdm-backend", "setuptools", "wheel", "Cython", "numpy"]
build-backend = "pdm.backend"
[project.optional-dependencies]
integration = ["deepspeed", "rootutils", "autoroot", "sh"]
toolbox = [
"pre-commit",
"transformers",
"pydmd",
"matplotlib>=3.8.3",
"seaborn",
"torch-dct",
"gammatone @ git+https://github.com/detly/gammatone.git",
"polars>=1.0.0",
]
logging = ["wandb", "clearml"]
[tool.pdm.dev-dependencies]
lint = ["ruff", "black"]
test = ["pytest"]