Files
whisperX/setup.py

31 lines
818 B
Python
Raw Normal View History

2022-12-14 18:59:12 +00:00
import os
import platform
import pkg_resources
from setuptools import find_packages, setup
2022-12-14 18:59:12 +00:00
setup(
name="whisperx",
py_modules=["whisperx"],
2024-12-18 09:01:16 +01:00
version="3.2.0",
2022-12-14 18:59:12 +00:00
description="Time-Accurate Automatic Speech Recognition using Whisper.",
readme="README.md",
2023-04-01 00:09:29 +01:00
python_requires=">=3.8",
2022-12-14 18:59:12 +00:00
author="Max Bain",
url="https://github.com/m-bain/whisperx",
license="MIT",
packages=find_packages(exclude=["tests*"]),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
]
+ [f"pyannote.audio==3.3.2"],
entry_points={
"console_scripts": ["whisperx=whisperx.transcribe:cli"],
2022-12-14 18:59:12 +00:00
},
include_package_data=True,
extras_require={"dev": ["pytest"]},
2022-12-14 18:59:12 +00:00
)