File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
Change Log
3
3
==========
4
4
5
- Version 2.4.3 - October , 2019
6
- -----------------------------
5
+ Version 2.4.3 - November , 2019
6
+ ------------------------------
7
7
- Fixed a bug in ParserElement.__eq__ that would for some parsers
8
8
create a recursion error at parser definition time. Thanks to
9
9
Michael Clerx for the assist. (Addresses issue #123)
Original file line number Diff line number Diff line change 96
96
"""
97
97
98
98
__version__ = "2.4.3"
99
- __versionTime__ = "13 Oct 2019 19:20 UTC"
99
+ __versionTime__ = "21 Oct 2019 23:43 UTC"
100
100
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
101
101
102
102
import string
Original file line number Diff line number Diff line change 3
3
"""Setup script for the pyparsing module distribution."""
4
4
5
5
from setuptools import setup
6
- from pyparsing import __version__ as pyparsing_version
6
+ from pyparsing import __version__ as pyparsing_version , __doc__ as pyparsing_main_doc
7
7
8
8
modules = ["pyparsing" ,]
9
9
10
10
setup (# Distribution meta-data
11
11
name = "pyparsing" ,
12
12
version = pyparsing_version ,
13
13
description = "Python parsing module" ,
14
+ long_description = pyparsing_main_doc ,
14
15
author = "Paul McGuire" ,
15
16
author_email = "ptmcg@users.sourceforge.net" ,
16
17
url = "https://github.com/pyparsing/pyparsing/" ,
35
36
'Programming Language :: Python :: 3.5' ,
36
37
'Programming Language :: Python :: 3.6' ,
37
38
'Programming Language :: Python :: 3.7' ,
39
+ 'Programming Language :: Python :: 3.8' ,
38
40
]
39
41
)
You can’t perform that action at this time.
0 commit comments