summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2019-11-03 20:13:47 -0600
committerptmcg <ptmcg@austin.rr.com>2019-11-03 20:13:47 -0600
commite40c1df06372654cf80c24d1a6e957d26603e53c (patch)
treeb18ad5e603223053cfe8e0f5a6b12f3e1ded4e65 /setup.py
parent78d4be0dd678cc70ada99784905ca26254d32035 (diff)
downloadpyparsing-git-e40c1df06372654cf80c24d1a6e957d26603e53c.tar.gz
Updates for 2.4.3 releasepyparsing_2.4.3
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
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',
]
)