Skip to content

Commit bbea3dc

Browse files
authored
Include long description (#157)
1 parent af59037 commit bbea3dc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@
88
)
99
with open(version_path, "rt") as f:
1010
exec(f.read(), version_contents)
11+
12+
with open("README.md", "r") as fh:
13+
long_description = fh.read()
1114

1215
setup(
1316
name="openai",
1417
description="Python client library for the OpenAI API",
18+
long_description=long_description,
19+
long_description_content_type="text/markdown",
1520
version=version_contents["VERSION"],
1621
install_requires=[
1722
"requests>=2.20", # to get the patch for CVE-2018-18074

0 commit comments

Comments
 (0)