-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (57 loc) · 1.5 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
[tool.poetry]
name = "pypolyphonicanalysis"
version = "0.1.0"
description = "Toolkit for analyzing recordings of polyphonic vocal music"
authors = ["Levan Shugliashvili"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.6.4"
pydantic-settings = "^2.2.0"
tqdm = "^4.66.2"
types-tqdm = "^4.66.0"
types-requests = "^2.31.0.20240406"
librosa = "^0.10.1"
matplotlib = "^3.8.4"
pandas = "^2.1.3"
pandas-stubs = "^2.2.1.240316"
scipy = "^1.13.0"
scikit-learn = "^1.4.1.post1"
mir-eval = "^0.7"
seaborn = "^0.13.2"
gooey = "^1.0.8.1"
joblib = "^1.3.2"
pyroomacoustics = "^0.7.3"
torch = "^2.4.1"
pyrubberband = "^0.3.0"
audiomentations = "^0.35.0"
noisereduce = "^3.0.2"
numba = "^0.60.0"
umap-learn = "^0.5.6"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
ruff = "^0.3.5"
mypy = "^1.9.0"
pip = "^24.0"
tensorboard = "^2.16.2"
requests = "2.31.0"
pydub = "^0.25.1"
setuptools = "^69.2.0"
anbani = "^0.9.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 180
[tool.mypy]
strict = true
plugins = ["numpy.typing.mypy_plugin", "pydantic.mypy"]
mypy_path = "pypolyphonicanalysis"
untyped_calls_exclude = "matplotlib.backends"
[[tool.mypy.overrides]]
module = ["pyrubberband","pydub","pyroomacoustics","gooey","joblib","seaborn","musdb.*","mir_eval","scipy.*","sklearn.*","audiomentations","noisereduce","umap"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["torch.optim"]
implicit_reexport = true