From e87b107fd80aee219a39ac0ecd52cc2b3a766990 Mon Sep 17 00:00:00 2001 From: sienkiew Date: Fri, 5 Aug 2011 16:43:50 +0000 Subject: mogrify yapps2 into exyapps git-svn-id: http://svn.stsci.edu/svn/ssb/etal/exyapps/trunk@361 d34015c8-bcbb-4646-8ac8-8ba5febf221d --- setup.py | 41 ++++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 17 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 0d7c98d..24d59c6 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,10 @@ #!/usr/bin/env python -"""Setup script for 'yapps'""" +"""Setup script for 'exyapps'""" from distutils.core import setup -description = "Yet Another Python Parser System" +description = "Extensions of Yet Another Python Parser System" long_description = \ """ YAPPS is an easy to use parser generator that is written in Python and @@ -23,20 +23,27 @@ original YAPPS source: - augmented ignore-able patterns (can parse multi-line C comments correctly) - better error reporting - read input incrementally + +Exyapps is an extended fork of yapps with these new features: +- (to be written) + """ -setup (name = "python-yapps", - version = "2.1.1", - description = description, - long_description = long_description, - author = "Amit J. Patel", - author_email = "amitp@cs.stanford.edu", - maintainer = "Matthias Urlichs", - maintainer_email = "smurf@debian.org", - url = "http://theory.stanford.edu/~amitp/yapps/", - license = 'MIT', - platforms = ['POSIX'], - keywords = ['parsing'], - packages = ['yapps'], - #cmdclass = {'bdist_rpm': MyBDist_RPM}, - ) +setup ( + name = "exyapps", + version = "3.0", + description = description, + long_description = long_description, + # bug: replace this and put acknowledgements of these guys in the docs + # url = "http://theory.stanford.edu/~amitp/yapps/", + # author = "Amit J. Patel", + # author_email = "amitp@cs.stanford.edu", + # maintainer = "Matthias Urlichs", + # maintainer_email = "smurf@debian.org", + license = 'MIT', + platforms = ['POSIX'], + keywords = ['parsing'], + packages = ['exyapps'], + scripts = ['scripts/exyapps'], + #cmdclass = {'bdist_rpm': MyBDist_RPM}, + ) -- cgit