From 0c6310b0227694b659ee9f6397dff549e9611c58 Mon Sep 17 00:00:00 2001 From: Thomas Steinacher Date: Fri, 28 Jun 2024 12:46:56 -0500 Subject: [PATCH] Long description --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d9f2fa2..2400f83 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,9 @@ with open(VERSION_FILE, encoding="utf8") as fd: version = re.search(r'__version__ = ([\'"])(.*?)\1', fd.read()).group(2) +with open("README.rst", encoding="utf-8") as file: + long_description = file.read() + setup( name="quotequail", version=version, @@ -19,7 +22,7 @@ "A library that identifies quoted text in plain text and HTML email " "messages." ), - long_description=__doc__, + long_description=long_description, packages=[ "quotequail", ],