diff options
author | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-08-05 12:43:50 -0400 |
---|---|---|
committer | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-08-05 12:43:50 -0400 |
commit | e87b107fd80aee219a39ac0ecd52cc2b3a766990 (patch) | |
tree | d99048a6507a77121a2962d7aece8798d70e765c /setup.py | |
parent | be5a70d3aa1c30d7c86d77649b747de2838566ce (diff) | |
download | exyapps-e87b107fd80aee219a39ac0ecd52cc2b3a766990.tar.gz |
mogrify yapps2 into exyapps
git-svn-id: http://svn.stsci.edu/svn/ssb/etal/exyapps/trunk@361 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 41 |
1 files changed, 24 insertions, 17 deletions
@@ -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}, + ) |