File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 6
6
with open (VERSION_FILE , encoding = "utf8" ) as fd :
7
7
version = re .search (r'__version__ = ([\'"])(.*?)\1' , fd .read ()).group (2 )
8
8
9
+ with open ("README.rst" , encoding = "utf-8" ) as file :
10
+ long_description = file .read ()
11
+
9
12
setup (
10
13
name = "quotequail" ,
11
14
version = version ,
19
22
"A library that identifies quoted text in plain text and HTML email "
20
23
"messages."
21
24
),
22
- long_description = __doc__ ,
25
+ long_description = long_description ,
23
26
packages = [
24
27
"quotequail" ,
25
28
],
33
36
"Operating System :: OS Independent" ,
34
37
"Programming Language :: Python" ,
35
38
"Programming Language :: Python :: 3" ,
39
+ "Programming Language :: Python :: 3.10" ,
40
+ "Programming Language :: Python :: 3.11" ,
41
+ "Programming Language :: Python :: 3.12" ,
36
42
"Topic :: Communications :: Email" ,
37
43
"Topic :: Software Development :: Libraries :: Python Modules" ,
38
44
],
You can’t perform that action at this time.
0 commit comments