diff options
author | ptmcg <ptmcg@austin.rr.com> | 2019-11-03 20:13:47 -0600 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2019-11-03 20:13:47 -0600 |
commit | e40c1df06372654cf80c24d1a6e957d26603e53c (patch) | |
tree | b18ad5e603223053cfe8e0f5a6b12f3e1ded4e65 /setup.py | |
parent | 78d4be0dd678cc70ada99784905ca26254d32035 (diff) | |
download | pyparsing-git-e40c1df06372654cf80c24d1a6e957d26603e53c.tar.gz |
Updates for 2.4.3 releasepyparsing_2.4.3
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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', ] ) |