We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af59037 commit bbea3dcCopy full SHA for bbea3dc
setup.py
@@ -8,10 +8,15 @@
8
)
9
with open(version_path, "rt") as f:
10
exec(f.read(), version_contents)
11
+
12
+with open("README.md", "r") as fh:
13
+ long_description = fh.read()
14
15
setup(
16
name="openai",
17
description="Python client library for the OpenAI API",
18
+ long_description=long_description,
19
+ long_description_content_type="text/markdown",
20
version=version_contents["VERSION"],
21
install_requires=[
22
"requests>=2.20", # to get the patch for CVE-2018-18074
0 commit comments