-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (55 loc) · 1.57 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qwen-aligner-toolkit"
version = "0.1.2"
description = "Production toolkit around Qwen3-ForcedAligner: VAD pre-segmentation, multi-language word/char-level alignment, and speaker diarization."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "Anes1032" },
]
keywords = ["asr", "alignment", "diarization", "vad", "qwen", "whisper", "speech"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"soundfile>=0.12",
"soxr>=0.3",
"qwen-asr>=0.0.6",
]
[project.optional-dependencies]
diarization = [
"pyannote.audio>=4.0",
]
full = [
"pyannote.audio>=4.0",
]
dev = [
"pytest>=7",
"pytest-cov>=4",
"ruff>=0.5",
]
[project.scripts]
qwen-aligner-toolkit = "qwen_aligner_toolkit.cli:main"
[project.urls]
Repository = "https://github.com/Anes1032/qwen-aligner-toolkit"
Issues = "https://github.com/Anes1032/qwen-aligner-toolkit/issues"
Homepage = "https://github.com/Anes1032/qwen-aligner-toolkit"
[tool.setuptools.packages.find]
include = ["qwen_aligner_toolkit*"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B"]
ignore = ["B009"]