From e40c1df06372654cf80c24d1a6e957d26603e53c Mon Sep 17 00:00:00 2001 From: ptmcg Date: Sun, 3 Nov 2019 20:13:47 -0600 Subject: Updates for 2.4.3 release --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 9de1761..092e5f8 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ """Setup script for the pyparsing module distribution.""" from setuptools import setup -from pyparsing import __version__ as pyparsing_version +from pyparsing import __version__ as pyparsing_version, __doc__ as pyparsing_main_doc modules = ["pyparsing",] @@ -11,6 +11,7 @@ setup(# Distribution meta-data name = "pyparsing", version = pyparsing_version, description = "Python parsing module", + long_description = pyparsing_main_doc, author = "Paul McGuire", author_email = "ptmcg@users.sourceforge.net", url = "https://github.com/pyparsing/pyparsing/", @@ -35,5 +36,6 @@ setup(# Distribution meta-data 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ] ) -- cgit v1.2.1