mirror of
https://github.com/m-bain/whisperX.git
synced 2025-07-01 18:17:27 -04:00

torch depends on libcudnn9 from version 2.4.0 onward. If we restrict torch<2.4.0, there is no need to manually install libcudnn8 and also save about 1GB disk space. - Update torch dependency to be below version 2.4.0 instead of at least 2.5.1 - Change torchaudio dependency to have no minimum version specified Signed-off-by: CHEN, CHUN <jim60105@gmail.com>
37 lines
773 B
TOML
37 lines
773 B
TOML
[project]
|
|
urls = { repository = "https://github.com/m-bain/whisperx" }
|
|
authors = [{ name = "Max Bain" }]
|
|
name = "whisperx"
|
|
version = "3.3.4"
|
|
description = "Time-Accurate Automatic Speech Recognition using Whisper."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9, <3.13"
|
|
license = { text = "BSD-2-Clause" }
|
|
|
|
dependencies = [
|
|
"ctranslate2<4.5.0",
|
|
"faster-whisper>=1.1.1",
|
|
"nltk>=3.9.1",
|
|
"numpy>=2.0.2",
|
|
"onnxruntime>=1.19",
|
|
"pandas>=2.2.3",
|
|
"pyannote-audio>=3.3.2",
|
|
"torch<2.4.0",
|
|
"torchaudio",
|
|
"transformers>=4.48.0",
|
|
]
|
|
|
|
|
|
[project.scripts]
|
|
whisperx = "whisperx.__main__:cli"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["whisperx*"]
|