-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 1.97 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
[project]
name = "speechlib"
version = "2.0.2"
description = "Speechlib is a library that unifies speaker diarization, transcription and speaker recognition in a single pipeline to create transcripts for audio conversations with actual speaker names and time tags. This library also contains audio preprocessor functions."
readme = "library.md"
requires-python = ">=3.10"
authors = [
{ name = "Navod Peiris", email = "navodpeiris1234@gmail.com" }
]
license = { text = "MIT" }
keywords = [
"speech",
"audio",
"transcription",
"speaker-diarization",
"speaker-recognition",
"nlp",
"asr"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"accelerate>=1.12.0",
"assemblyai>=0.50.0",
"faster-whisper>=1.2.1",
"huggingface-hub==0.36.0",
"numpy==1.26.4",
"openai-whisper>=20250625",
"pyannote-audio==3.4.0",
"torch>=2.2,<2.8.0",
"torchaudio>=2.2,<2.8.0",
"pydub>=0.25.1",
"soundfile>=0.13.1",
"speechbrain==1.0.3",
"transformers==4.57.6",
]
[dependency-groups]
dev = [
"python-dotenv>=1.2.1",
"pytest>=8.0.0",
"nemo_toolkit[asr]"
]
[project.urls]
Homepage = "https://github.com/NavodPeiris/speechlib"
Repository = "https://github.com/NavodPeiris/speechlib"
Issues = "https://github.com/NavodPeiris/speechlib/issues"
Documentation = "https://github.com/NavodPeiris/speechlib#readme"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"speechlib/",
"library.md",
"LICENSE",
]
[tool.hatch.build.targets.wheel]
packages = ["speechlib"]