Metadata-Version: 1.1
Name: livescript
Version: 1.0.0
Summary: Call LiveScript from Python
Home-page: https://github.com/gkovacs/python-livescript
Author: Geza Kovacs
Author-email: geza0kovacs@gmail.com
License: UNKNOWN
Download-URL: https://github.com/gkovacs/python-livescript
Description: python-livescript
        ====================
        `python-livescript` lets you call LiveScript code from Python
        
        Example
        -------
        ::
        
          >>> from livescript import lseval
          >>> print lseval('''
                require! 'fs'
                return fs.readdirSync('.')
              ''')
        
        
        Installation
        ------------
        ::
        
          $ pip install livescript
        
        Returning values
        ----------------
        
        Returning will pass back the output back to Python. Any datatype supported by JSON can be passed back. If you want to return the last statement, you can omit the return statement.
        
        NPM modules
        -----------
        
        To use modules, simply install them with `npm` and ensure that the `node_modules` directory they are installed to is your current working directory. You can use them as usual with require.
        
        License
        -------
        
        MIT
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: JavaScript
