fix: update README image source and enhance setup.py for long description

This commit is contained in:
Barabazs
2025-01-02 08:29:13 +01:00
parent 948b3e368b
commit c18f9f979b
2 changed files with 6 additions and 3 deletions

View File

@ -23,7 +23,7 @@
</p> </p>
<img width="1216" align="center" alt="whisperx-arch" src="figures/pipeline.png"> <img width="1216" align="center" alt="whisperx-arch" src="https://raw.githubusercontent.com/m-bain/whisperX/refs/heads/main/figures/pipeline.png">
<!-- <p align="left">Whisper-Based Automatic Speech Recognition (ASR) with improved timestamp accuracy + quality via forced phoneme alignment and voice-activity based batching for fast inference.</p> --> <!-- <p align="left">Whisper-Based Automatic Speech Recognition (ASR) with improved timestamp accuracy + quality via forced phoneme alignment and voice-activity based batching for fast inference.</p> -->

View File

@ -1,15 +1,18 @@
import os import os
import platform
import pkg_resources import pkg_resources
from setuptools import find_packages, setup from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup( setup(
name="whisperx", name="whisperx",
py_modules=["whisperx"], py_modules=["whisperx"],
version="3.2.0", version="3.2.0",
description="Time-Accurate Automatic Speech Recognition using Whisper.", description="Time-Accurate Automatic Speech Recognition using Whisper.",
readme="README.md", long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.9, <3.13", python_requires=">=3.9, <3.13",
author="Max Bain", author="Max Bain",
url="https://github.com/m-bain/whisperx", url="https://github.com/m-bain/whisperx",