setup.py revision 4479:61d3ed46e373
1from distutils.core import setup
2
3setup(name = "ply",
4            description="Python Lex & Yacc",
5            long_description = """
6PLY is yet another implementation of lex and yacc for Python. Although several other
7parsing tools are available for Python, there are several reasons why you might
8want to take a look at PLY:
9
10It's implemented entirely in Python.
11
12It uses LR-parsing which is reasonably efficient and well suited for larger grammars.
13
14PLY provides most of the standard lex/yacc features including support for empty
15productions, precedence rules, error recovery, and support for ambiguous grammars.
16
17PLY is extremely easy to use and provides very extensive error checking.
18""",
19            license="""Lesser GPL (LGPL)""",
20            version = "2.3",
21            author = "David Beazley",
22            author_email = "dave@dabeaz.com",
23            maintainer = "David Beazley",
24            maintainer_email = "dave@dabeaz.com",
25            url = "http://www.dabeaz.com/ply/",
26            packages = ['ply'],
27            )
28