Skip to content

Commit 0c6310b

Browse files
committed
Long description
1 parent deff61b commit 0c6310b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
with open(VERSION_FILE, encoding="utf8") as fd:
77
version = re.search(r'__version__ = ([\'"])(.*?)\1', fd.read()).group(2)
88

9+
with open("README.rst", encoding="utf-8") as file:
10+
long_description = file.read()
11+
912
setup(
1013
name="quotequail",
1114
version=version,
@@ -19,7 +22,7 @@
1922
"A library that identifies quoted text in plain text and HTML email "
2023
"messages."
2124
),
22-
long_description=__doc__,
25+
long_description=long_description,
2326
packages=[
2427
"quotequail",
2528
],

0 commit comments

Comments
 (0)