Metadata-Version: 1.0
Name: hcss
Version: 0.3
Summary: hcss is a CSS compiler that that allows you to use HTML element hierarchy to define CSS rules
Home-page: http://jonasgalvez.com.br/Software/HCSS.html
Author: Jonas Galvez
Author-email: jonasgalvez@gmail.com
License: BSD
Description: 
        hcss is a CSS compiler that that allows you to use HTML element hierarchy to
        define CSS rules. Requires Python 2.2+. BSD-licensed.
        
        Input
        `````
        
        ::
        
        <div id="parent">
        margin: 10px;
        <div class="child">
        margin: 5px;
        border: 1px solid #000;
        </div>
        </div>
        
        Output
        ``````
        
        ::
        
        div#parent {
        margin: 10px;
        }
        div#parent > div.child {
        margin: 5px;
        border: 1px solid #000;
        }
        
        Setup
        `````
        
        ::
        
        $ pip install hcss # or
        $ easy_install hcss
        
        Links
        `````
        
        * `Full documentation <http://jonasgalvez.com.br/Software/HCSS.html>`_
        * `Development repository <http://github.com/galvez/hcss/>`_
        * `Author's website <http://jonasgalvez.com.br/>`_
        
        
Platform: Python 2.5 and later
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Compilers
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Text Processing :: Markup :: HTML
