Metadata-Version: 1.0
Name: sexpy
Version: 0.2
Summary: S-expression syntax for Python
Home-page: http://python.org/pypi/sexpy
Author: Ero-sennin
Author-email: densetsu.no.ero.sennin@gmail.com
License: GPL-2
Description: 
        SEXpy - Python meets S-expressions
        ==================================
        
        Created just in order to have some se^Wfun.
        
        A little code snippet so that you can get the overall idea::
        
            (class (Hello)
                (def (__init__ self message)
                    (= self.message message))
                (def (hello)
                    (print self.message)))
             
            (= hello (Hello "Hello world!"))
            (hello.hello)
            
        This version requires Python 3. Use version 0.1 if you need Python 2 support.
        
        Documentation: http://packages.python.org/sexpy/
        
        Mercurial repository: https://bitbucket.org/ero_sennin/sexpy/overview
        
Platform: platform-independent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
