forked from dabeaz/ply
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
37 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
PLY (Python Lex-Yacc) Version 3.0 | ||
PLY (Python Lex-Yacc) Version 3.1 | ||
|
||
David M. Beazley ([email protected]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,21 +6,17 @@ | |
setup(name = "ply", | ||
description="Python Lex & Yacc", | ||
long_description = """ | ||
PLY is yet another implementation of lex and yacc for Python. Although several other | ||
parsing tools are available for Python, there are several reasons why you might | ||
want to take a look at PLY: | ||
It's implemented entirely in Python. | ||
It uses LR-parsing which is reasonably efficient and well suited for larger grammars. | ||
PLY is yet another implementation of lex and yacc for Python. Some notable | ||
features include the fact that its implemented entirely in Python and it | ||
uses LALR(1) parsing which is efficient and well suited for larger grammars. | ||
PLY provides most of the standard lex/yacc features including support for empty | ||
productions, precedence rules, error recovery, and support for ambiguous grammars. | ||
PLY is extremely easy to use and provides very extensive error checking. | ||
""", | ||
license="""Lesser GPL (LGPL)""", | ||
version = "3.0", | ||
version = "3.1", | ||
author = "David Beazley", | ||
author_email = "[email protected]", | ||
maintainer = "David Beazley", | ||
|