Metadata-Version: 1.1
Name: assets-angular
Version: 0.1.0
Summary: Django_assets angular template filter.
Home-page: https://github.com/josesanch/assets_angular
Author: José Sánchez Moreno
Author-email: jose@o2w.es
License: MIT
Description: Django_assets angular template filter.
        ========================================================
        
        What's that?
        -------------
        Is a filter for generating html templates as javascript includes in your bundles of django_assets
        
        How to use
        ----------
        Add the application to your INSTALLED_APPS
        
        .. code-block:: python
                        
           INSTALLED_APPS = (
             ...
             'assets_angular',
             'django_assets',
             ...
           )
                        
        
        
        
        Using it
        ---------------
        
        .. code-block:: python
                        
           from django_assets import Bundle, register                
        
           templates = Bundle(
             'tpl/template1.html',
             'tpl/template1.html',   
             filters='angular',
             output="templates.js"
           )
        
           app_js = Bundle(
            models,
            controllers,
            directives,
            filters,
            services,
            templates,
            filters='uglifyjs',
            output='gen/app.js')
        
            register('app', app_js)
        
Platform: All platforms
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
