Metadata-Version: 1.1
Name: gears-jsx
Version: 0.1
Summary: JSX compiler for Gears
Home-page: https://github.com/ChillyBwoy/gears-jsx
Author: Eugene Cheltsov
Author-email: chill.icp@gmail.com
License: ISC
Description: gears-jsx
        ==================
        
        JSX compiler for Gears. 
        
        Bundled [react-tools](https://github.com/facebook/react) version: 0.10.0
        
        
        Installation
        ------------
        
        Install `gears-jsx` with pip:
        
            $ pip install gears-jsx
        
        
        Requirements
        ------------
        - [node.js](http://nodejs.org)
        
        
        Usage
        -----
        
        Add `gears_jsx.JSXCompiler` to `environment`'s compilers registry:
        
            from gears_jsx import JSXCompiler
            environment.compilers.register('.jsx', JSXCompiler.as_handler())
        
        If you use Gears in your Django project, add this code to its settings:
        
            GEARS_COMPILERS = {
                '.jsx': 'gears_jsx.JSXCompiler',
            }
        
Keywords: gears django-gears react jsx gears-jsx
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
