-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (88 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
102 lines (88 loc) · 2.44 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
98
99
100
101
102
[project]
name = "openbench"
version = "0.1.0"
description = "Benchmark suite for speaker diarization"
authors = [{ name = "Argmax Inc.", email = "info@takeargmax.com" }]
requires-python = ">=3.10,<3.13"
readme = "README.md"
dependencies = [
"black>=24.10.0,<25",
"pydantic>=2.9.2,<3",
"numpy>=1.24.0,<2.0",
"numba~=0.60.0",
"llvmlite==0.43.0",
"pyannote-audio>=3.3.2,<4",
"datasets>=3.1.0,<4",
"argmaxtools>=0.1.14,<0.2",
"hydra-core>=1.3.2,<2",
"wandb>=0.19.0,<0.20",
"umap-learn>=0.5.7,<0.6",
"hdbscan>=0.8.40,<0.9",
"plotly>=5.24.1,<6",
"kaleido==0.2.1",
"librosa>=0.10.2.post1,<0.11",
"boto3>=1.36.20,<2",
"pvfalcon>=1.0.4,<2",
"jiwer>=3.1.0,<4",
"whisperx>=3.3.1,<4",
"torch==2.8",
"scikit-learn==1.5.1",
"speechbrain==1.0.2",
"websocket-client>=1.8.0,<2",
"typer>=0.16.0",
"pydub>=0.25.1,<0.26",
"rich>=13.0.0,<14",
"deepgram-sdk>=4.8.0,<5",
"groq>=0.31.0",
"openai-whisper>=20240930",
"texterrors==0.5.1",
"openai>=2.7.1",
"meeteval>=0.4.3",
"nemo-toolkit[asr]>=2.6.0",
"elevenlabs>=2.30.0",
]
[project.scripts]
openbench-cli = "openbench.cli.main:main"
[dependency-groups]
dataset = [
"gdown>=5.2.0,<6",
"lxml>=5.3.0,<6",
"textgrid>=1.6.1,<2",
"kaggle>=1.6.17,<2",
"transformers>=4.48.2,<5",
"ego4d>=1.7.3,<2",
]
dev = [
"ipykernel>=6.29.5",
"pytest>=8.3.5,<9",
"seaborn>=0.13.2",
]
[build-system]
requires = ["uv_build>=0.7.9,<0.8"]
build-backend = "uv_build"
##################### Ruff #####################
[tool.ruff]
line-length = 119
unsafe-fixes = false
exclude = ["*.ipynb"]
[tool.ruff.lint]
# Never enforce `E501` (line length violations).
ignore = ["C901", "E501", "E741", "F402", "F823" ]
# RUF013: Checks for the use of implicit Optional
# in type annotations when the default parameter value is None.
select = ["C", "E", "F", "I", "W", "RUF013"]
# Ignore import violations in all `__init__.py` files.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["openbench"]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"