mirror of
https://github.com/m-bain/whisperX.git
synced 2025-07-01 18:17:27 -04:00
fix: update README image source and enhance setup.py for long description
This commit is contained in:
@ -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> -->
|
||||||
|
7
setup.py
7
setup.py
@ -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",
|
||||||
|
Reference in New Issue
Block a user