-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 752 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 752 Bytes
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
[project]
name = "libdse"
version = "0.1.0"
description = "Library for deep-learning-based speech enhancement models"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.135.3",
"gradio>=6.11.0",
"librosa>=0.11.0",
"matplotlib>=3.10.9",
"numpy>=2.4.3",
"pesq>=0.0.4",
"pre-commit>=4.6.0",
"pystoi>=0.4.1",
"ruff",
"tensorboard>=2.20.0",
"torch>=2.11.0",
"tqdm>=4.67.3",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = ["pytest>=8"]
docs = ["sphinx>=9.1.0", "furo"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 80
[tool.ruff.format]
line-ending = "auto"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]