Skip to content

Commit

Permalink
Long description
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasst committed Jun 28, 2024
1 parent deff61b commit 0c6310b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
],
Expand Down

0 comments on commit 0c6310b

Please sign in to comment.