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

* Add github action to automatically push to pypi on Release x.y.z commit * some housekeeping for pypi upload * add version.py Co-authored-by: Jong Wook Kim <jongwook@nyu.edu>
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
import os
|
|
|
|
import pkg_resources
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
def read_version(fname="whisper/version.py"):
|
|
exec(compile(open(fname, encoding="utf-8").read(), fname, "exec"))
|
|
return locals()["__version__"]
|
|
|
|
|
|
setup(
|
|
name="openai-whisper",
|
|
py_modules=["whisper"],
|
|
version=read_version(),
|
|
description="Robust Speech Recognition via Large-Scale Weak Supervision",
|
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
long_description_content_type="text/markdown",
|
|
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"]},
|
|
)
|