Metadata-Version: 1.1
Name: gears-at-notation
Version: 0.2
Summary: Alternative dependencies parser for gears
Home-page: https://github.com/jjay/gears-at-notation
Author: Yasha Borevich
Author-email: j.borevich@gmail.com
License: ISC
Description: Gears @ notation
        =================
        Specify requirements using @require notation.
        
        It is stricted notation. No attemt to determine file extention.
        No need to depend on same filetype.
        
        Usage
        -----
        
        If you use pure gears:
        ```python
        environment.preprocessor.register('text/css', AtDirectivesProcessor.as_handler())
        environment.preprocessor.register('application/javascript', AtDirectivesProcessor.as_handler())
        ```
        
        For django:
        ```python
        GEARS_PREPROCESSORS = {
            'text/css': 'gears_at_notation.processor.AtDirectivesProcessor',
            'application/javascript': 'gears_at_notation.processor.AtDirectivesProcessor',
        }
        ```
        
        Now you can specify dependencies in different way:
        ```
        // file style.css
        // @require "main.css"
        // @require "application.less"
        // @require "modules.styl"
        ```
        
        
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
