1try:
2    from setuptools import setup
3except ImportError:
4    from distutils.core import setup
5
6setup(name = "ply",
7            description="Python Lex & Yacc",
8            long_description = """
9PLY is yet another implementation of lex and yacc for Python. Some notable
10features include the fact that its implemented entirely in Python and it
11uses LALR(1) parsing which is efficient and well suited for larger grammars.
12
13PLY provides most of the standard lex/yacc features including support for empty
14productions, precedence rules, error recovery, and support for ambiguous grammars.
15
16PLY is extremely easy to use and provides very extensive error checking.
17""",
18            license="""BSD""",
19            version = "3.2",
20            author = "David Beazley",
21            author_email = "dave@dabeaz.com",
22            maintainer = "David Beazley",
23            maintainer_email = "dave@dabeaz.com",
24            url = "http://www.dabeaz.com/ply/",
25            packages = ['ply'],
26            )
27