-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (62 loc) · 1.55 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
[build-system]
requires = [
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "denoisers"
version = "0.2.0"
authors = [
{ name="Will Rice", email="wrice20@gmail.com" },
]
description = "A package for training audio denoisers"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"mypy>=1.13.0",
"pydocstyle>=6.3.0",
"pytest>=8.3.3",
"pytorch-lightning>=2.4.0",
"ruff>=0.7.4",
"torch>=2.5.1",
"torchaudio>=2.5.1",
"torchvision>=0.20.1",
"wandb>=0.18.7",
"matplotlib>=3.9.2",
"pedalboard>=0.9.16",
"pydub>=0.25.1",
"pyroomacoustics>=0.8.2",
"pre-commit>=4.0.1",
"librosa>=0.10.2.post1",
"transformers>=4.46.3",
"audiomentations>=0.37.0",
"onnxruntime>=1.20.1",
"pesq>=0.0.4",
]
[project.urls]
"Homepage" = "https://github.com/will-rice/denoisers"
"Bug Tracker" = "https://github.com/will-rice/denoisers/issues"
[tool.ruff.lint.isort]
known-first-party = ["denoisers"]
[tool.ruff.lint]
select = ["C", "E", "F", "I", "W", "D", "N", "B"]
ignore = ["D107"]
exclude = [".venv"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.mypy]
ignore_missing_imports = true
follow_imports_for_stubs = true
exclude = [".venv"]
[project.scripts]
train = "denoisers.scripts.train:main"
publish = "denoisers.scripts.publish:main"