-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 937 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 937 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "asrlabs"
version = "1.0.1"
description = "ASR 工具箱——整合多款开源 ASR 模型,开箱即用"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"click>=8.0",
"pyyaml>=6.0",
"stable-ts>=2.17",
"faster-whisper>=1.0",
"qwen-asr>=0.0.1",
"transformers>=4.52,<5.0",
"torch>=2.12",
"torchaudio>=2.11",
"numpy>=1.24",
"soundfile>=0.12",
"tqdm>=4.0",
"pysbd>=0.3.4",
"sentencepiece>=0.2",
]
[project.optional-dependencies]
cohere = ["cohere>=5.21"]
ctc = [
"ctc-forced-aligner @ git+https://github.com/MahmoudAshraf97/ctc-forced-aligner.git",
"uroman>=1.3.1",
"nltk>=3.8",
"Unidecode>=1.3",
]
[project.scripts]
asrlabs = "asrlabs.cli:main"
[tool.setuptools.packages.find]
include = ["asrlabs*"]