Merge pull request #429 from makaveli10/vineet/update-setup-packages

Expose __version__ in package root and update dependencies in setup.py
This commit is contained in:
Vineet Suryan
2026-03-17 14:19:15 +05:30
committed by GitHub
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ setup(
), ),
install_requires=[ install_requires=[
"PyAudio", "PyAudio",
"faster-whisper==1.1.0", "faster-whisper==1.2.0",
"torch", "torch",
"torchaudio", "torchaudio",
"websockets", "websockets",
@@ -51,7 +51,7 @@ setup(
"scipy", "scipy",
"websocket-client", "websocket-client",
"numba", "numba",
"openai-whisper==20240930", "openai-whisper==20250625",
"kaldialign", "kaldialign",
"soundfile", "soundfile",
"tokenizers==0.20.3", "tokenizers==0.20.3",
+3
View File
@@ -0,0 +1,3 @@
from whisper_live.__version__ import __version__
__all__ = ['__version__']