Files
whisperX/pyproject.toml

37 lines
781 B
TOML
Raw Permalink Normal View History

2025-01-16 08:09:57 +01:00
[project]
urls = { repository = "https://github.com/m-bain/whisperx" }
authors = [{ name = "Max Bain" }]
name = "whisperx"
2025-06-27 07:18:39 +00:00
version = "3.4.2"
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 = [
"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",
"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
[tool.setuptools.packages.find]
where = ["."]
2025-05-03 11:38:54 +02:00
include = ["whisperx*"]