Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: tools/nixysa/third_party/ply-3.1/setup.py

Issue 2043006: WTF NPAPI extension. Early draft. Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 try:
2 from setuptools import setup
3 except ImportError:
4 from distutils.core import setup
5
6 setup(name = "ply",
7 description="Python Lex & Yacc",
8 long_description = """
9 PLY is yet another implementation of lex and yacc for Python. Some notable
10 features include the fact that its implemented entirely in Python and it
11 uses LALR(1) parsing which is efficient and well suited for larger grammars.
12
13 PLY provides most of the standard lex/yacc features including support for empty
14 productions, precedence rules, error recovery, and support for ambiguous grammar s.
15
16 PLY is extremely easy to use and provides very extensive error checking.
17 """,
18 license="""Lesser GPL (LGPL)""",
19 version = "3.1",
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 )
OLDNEW
« no previous file with comments | « tools/nixysa/third_party/ply-3.1/ply/yacc.py ('k') | tools/nixysa/third_party/ply-3.1/test/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698