-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.34 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
[tool.poetry]
name = "asrbench-cli"
version = "0.1.0"
description = "A command-line tool for the ASRBench framework, simplifying audio transcription system benchmarking with a single config file, supporting popular and custom transcription systems"
authors = ["ASRBench <asrbenchmark@gmail.com>"]
readme = "README-pypi.md"
packages = [{ include = "asrbench_cli" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Benchmark",
]
[tool.poetry.urls]
"Documentation" = "https://asrbench.github.io/asrbench/cli/installation"
"Source" = "https://github.com/ASRBench/asrbench-cli"
"Bug Tracker" = "https://github.com/ASRBench/asrbench-cli/issues"
[tool.poetry.scripts]
cli = "asrbench_cli.cli: app"
[tool.poetry.dependencies]
python = "^3.12"
faster-whisper = "^1.0.3"
vosk = "^0.3.45"
transformers = "^4.44.2"
librosa = "^0.10.2.post1"
asrbench = "^0.1.0"
openai-whisper = "20240930"
typer = {extras = ["all"], version = "^0.13.1"}
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
blue = "^0.9.1"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
[tool.isort]
profile = "black"
line_length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"