Files
whisperX/setup.py

29 lines
882 B
Python
Raw Normal View History

2022-12-14 18:59:12 +00:00
import os
import pkg_resources
from setuptools import setup, find_packages
setup(
name="whisperx",
py_modules=["whisperx"],
version="3.0.2",
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"))
)
2023-05-02 20:25:56 +02:00
] + ["pyannote.audio @ git+https://github.com/pyannote/pyannote-audio@11b56a137a578db9335efc00298f6ec1932e6317"],
2022-12-14 18:59:12 +00:00
entry_points = {
'console_scripts': ['whisperx=whisperx.transcribe:cli'],
},
include_package_data=True,
extras_require={'dev': ['pytest']},
)