Expose __version__ in package root and update dependencies in setup.py

Signed-off-by: makaveli10 <vineet.suryan@collabora.com>
This commit is contained in:
makaveli10
2026-03-17 13:34:34 +05:30
parent 6fcae6a30c
commit 5f0010d720
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ setup(
),
install_requires=[
"PyAudio",
"faster-whisper==1.1.0",
"faster-whisper==1.2.0",
"torch",
"torchaudio",
"websockets",
@@ -51,7 +51,7 @@ setup(
"scipy",
"websocket-client",
"numba",
"openai-whisper==20240930",
"openai-whisper==20250625",
"kaldialign",
"soundfile",
"tokenizers==0.20.3",
+3
View File
@@ -0,0 +1,3 @@
from whisper_live.__version__ import __version__
__all__ = ['__version__']