mirror of
https://github.com/openai/whisper.git
synced 2025-07-04 03:02:30 +00:00

Add project summary, license, etc. for display with "pip show" and similar Python package distribution tools.
29 lines
763 B
Python
29 lines
763 B
Python
import os
|
|
|
|
import pkg_resources
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="whisper",
|
|
py_modules=["whisper"],
|
|
version="1.0",
|
|
description="Robust Speech Recognition via Large-Scale Weak Supervision",
|
|
readme="README.md",
|
|
python_requires=">=3.7",
|
|
author="OpenAI",
|
|
url="https://github.com/openai/whisper",
|
|
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"))
|
|
)
|
|
],
|
|
entry_points = {
|
|
'console_scripts': ['whisper=whisper.transcribe:cli'],
|
|
},
|
|
include_package_data=True,
|
|
extras_require={'dev': ['pytest']},
|
|
)
|