2025-01-16 08:09:57 +01:00
|
|
|
[project]
|
|
|
|
urls = { repository = "https://github.com/m-bain/whisperx" }
|
|
|
|
authors = [{ name = "Max Bain" }]
|
|
|
|
name = "whisperx"
|
2025-05-03 11:38:54 +02:00
|
|
|
version = "3.3.4"
|
2025-01-16 08:09:57 +01:00
|
|
|
description = "Time-Accurate Automatic Speech Recognition using Whisper."
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.9, <3.13"
|
|
|
|
license = { text = "BSD-2-Clause" }
|
|
|
|
|
|
|
|
dependencies = [
|
2025-05-01 09:54:19 +02:00
|
|
|
"ctranslate2<4.5.0",
|
2025-01-16 08:09:57 +01:00
|
|
|
"faster-whisper>=1.1.1",
|
|
|
|
"nltk>=3.9.1",
|
2025-01-16 08:16:46 +01:00
|
|
|
"numpy>=2.0.2",
|
2025-05-01 09:54:19 +02:00
|
|
|
"onnxruntime>=1.19",
|
2025-01-16 08:09:57 +01:00
|
|
|
"pandas>=2.2.3",
|
|
|
|
"pyannote-audio>=3.3.2",
|
|
|
|
"torch>=2.5.1",
|
|
|
|
"torchaudio>=2.5.1",
|
|
|
|
"transformers>=4.48.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
2025-05-01 14:19:42 +02:00
|
|
|
whisperx = "whisperx.__main__:cli"
|
2025-01-16 08:09:57 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
include-package-data = true
|
2025-03-25 18:48:57 +01:00
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["."]
|
2025-05-03 11:38:54 +02:00
|
|
|
include = ["whisperx*"]
|