File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ The aggdraw module
77
88A high-quality graphics engine for PIL, based on Maxim Shemanarev's
99Anti-Grain Geometry library (from http://antigrain.com).
10+ The aggdraw module implements the basic WCK 2D Drawing Interface on
11+ top of the AGG library. This library provides high-quality drawing,
12+ with anti-aliasing and alpha compositing, while being fully compatible
13+ with the WCK renderer.
1014
1115The necessary AGG sources are included in the aggdraw source kit.
1216
Original file line number Diff line number Diff line change 2424VERSION = "1.4.0"
2525
2626SUMMARY = "High quality drawing interface for PIL."
27-
28- DESCRIPTION = """\
29-
30- The aggdraw module implements the basic WCK 2D Drawing Interface on
31- top of the AGG library. This library provides high-quality drawing,
32- with anti-aliasing and alpha compositing, while being fully compatible
33- with the WCK renderer.
34-
35- """
27+ README = open ("README.rst" , "r" ).read ()
3628
3729
3830def is_platform_mac ():
@@ -159,9 +151,10 @@ def _get_freetype_with_pkgconfig():
159151 "Programming Language :: Python :: Free Threading :: 1 - Unstable" ,
160152 ],
161153 description = SUMMARY ,
154+ long_description = README ,
155+ long_description_content_type = "text/x-rst" ,
162156 download_url = "http://www.effbot.org/downloads#aggdraw" ,
163157 license = "Python (MIT style)" ,
164- long_description = DESCRIPTION .strip (),
165158 url = "https://github.com/pytroll/aggdraw" ,
166159 ext_modules = [
167160 Extension ("aggdraw" , ["aggdraw.cxx" ] + sources ,
You can’t perform that action at this time.
0 commit comments