Skip to content

Commit 5e7a533

Browse files
authored
Long description, py classifier (#53)
1 parent 0bb791a commit 5e7a533

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

+7-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
],
@@ -33,6 +36,9 @@
3336
"Operating System :: OS Independent",
3437
"Programming Language :: Python",
3538
"Programming Language :: Python :: 3",
39+
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
41+
"Programming Language :: Python :: 3.12",
3642
"Topic :: Communications :: Email",
3743
"Topic :: Software Development :: Libraries :: Python Modules",
3844
],

0 commit comments

Comments
 (0)