Metadata-Version: 1.1
Name: stylus
Version: 0.1.1
Summary: A bridge to the Stylus css compiler
Home-page: https://github.com/bkad/python-stylus
Author: Kevin Le
Author-email: solnovus@gmail.com
License: MIT License
Description: # Python Stylus
        
        python-stylus bridges your Python code and the [Stylus](http://learnboost.github.com/stylus) library.
        
        ## Prerequisites
        This libraries assumes you have a couple of things in place already for stylus to work:
        
        * [Node](http://nodejs.org) installed with the `node` command available to use in your runtime.
        * [Stylus](http://learnboost.github.com/stylus) installed in your working directory's node_modules folder or
          in a location specified in your `NODE_PATH` environment variable.
        
        ## Installation
        `pip install stylus`
        
        ## Usage
        ```python
        from stylus import Stylus
        compiler = Stylus()
        
        compiler.compile("""
        border-radius()
          -webkit-border-radius arguments
          -moz-border-radius arguments
          border-radius arguments
        
        
        body
          font 12px Helvetica, Arial, sans-serif
        
        a.button
          border-radius 5px
        """)
        
        # import plugins
        compiler.use("nib")
        
        compiler.compile("""
        @import 'nib'
        body
          background: linear-gradient(top, white, black)
        """)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
