Merge zizzer.eecs.umich.edu:/bk/newmem
[gem5.git] / ext / ply / setup.py
1 from distutils.core import setup
2
3 setup(name = "ply",
4 description="Python Lex & Yacc",
5 long_description = """
6 PLY is yet another implementation of lex and yacc for Python. Although several other
7 parsing tools are available for Python, there are several reasons why you might
8 want to take a look at PLY:
9
10 It's implemented entirely in Python.
11
12 It uses LR-parsing which is reasonably efficient and well suited for larger grammars.
13
14 PLY provides most of the standard lex/yacc features including support for empty
15 productions, precedence rules, error recovery, and support for ambiguous grammars.
16
17 PLY 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 )