summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
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',
]
)