Metadata-Version: 1.0
Name: svargaext.transform
Version: 0.5
Summary: Source transformation module for Svarga framework
Home-page: http://hg.piranha.org.ua/svargaext.transform/
Author: Alexander Solovyov
Author-email: alexander@solovyov.net
License: BSD
Description: .. -*- mode: rst -*-
        
        svargaext.transform
        ===================
        
        Application for transforming source code from one format to another (for
        example, CleverCSS in CSS, CoffeeScript in JavaScript).
        
        It requires a bit of configuration dropped in `settings.py`::
        
        TRANSFORM = {
        'clevercss': {'main': {'clevercss/*.ccss': 'css/*.css'},
        'someapp': {'static/test.ccss': 'css/test.css'}},
        'coffee': {'main': {'*.coffee': '*.js'}},
        }
        
        Configuration description:
        
        - ``TRANSFORM`` is a variable, containing mapping of backend to rules.
        - Rules are mapping between name in ``STATIC_URLS`` to a dictionary of
        ``source``: ``target`` mapping.
        
        Source can contain ``*`` to wildcard match files. In this case target should
        contain ``*`` as well.
        
        Installation
        ------------
        
        It's that easy::
        
        pip install svargaext.transform
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
