Skip to content

Commit

Permalink
Add package metadata to setup.py (openai#315)
Browse files Browse the repository at this point in the history
Add project summary, license, etc. for display with
"pip show" and similar Python package distribution tools.
  • Loading branch information
brainwane committed Oct 17, 2022
1 parent f680570 commit 7f3e408
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
name="whisper",
py_modules=["whisper"],
version="1.0",
description="",
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)
Expand Down

0 comments on commit 7f3e408

Please sign in to comment.