CoolFace
Apppublic

AzALlN/whisperX

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
setup.py29 linesDownload Raw Back to root
1import os2 3import pkg_resources4from setuptools import setup, find_packages5 6setup(7    name="whisperx",8    py_modules=["whisperx"],9    version="1.0",10    description="Time-Accurate Automatic Speech Recognition using Whisper.",11    readme="README.md",12    python_requires=">=3.7",13    author="Max Bain",14    url="https://github.com/m-bain/whisperx",15    license="MIT",16    packages=find_packages(exclude=["tests*"]),17    install_requires=[18        str(r)19        for r in pkg_resources.parse_requirements(20            open(os.path.join(os.path.dirname(__file__), "requirements.txt"))21        )22    ],23    entry_points = {24        'console_scripts': ['whisperx=whisperx.transcribe:cli'],25    },26    include_package_data=True,27    extras_require={'dev': ['pytest']},28)29