From 93eb00745ea82b1820ebe01c904d979c8af962a1 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 20 Dec 2022 11:51:27 +0100 Subject: [PATCH] Include long description --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 0b6956ef0e..67721f029c 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,15 @@ ) with open(version_path, "rt") as f: exec(f.read(), version_contents) + +with open("README.md", "r") as fh: + long_description = fh.read() setup( name="openai", description="Python client library for the OpenAI API", + long_description=long_description, + long_description_content_type="text/markdown", version=version_contents["VERSION"], install_requires=[ "requests>=2.20", # to get the patch for CVE-2018-18074