Metadata-Version: 1.1
Name: django-angular-library
Version: 1.2.6
Summary: Angular packaged in an handy django app to speed up new applications and deployment.
Home-page: https://github.com/IxDay/django-angular-library
Author: Maxime Vidori
Author-email: maxime.vidori@gmail.com
License: MIT
Description: # Django Angular Library
        
        ### Requirements
        [Django](https://www.djangoproject.com/) 1.3 or later
        
        ### Installation
        
        ```
        $ pip install django-angular-library
        ```
        
        ### Setup
        
        Just add ```'django.contrib.staticfiles'``` and ```'angular'``` to
        INSTALLED_APPS in yoursettings.py
        
        ```
        INSTALLED_APPS = (
            # ...
        
            'django.contrib.staticfiles',
            'angular',
        
            # ...
        )
        ```
        
        Refer to Django [static files](https://docs.djangoproject.com/en/dev/howto/static-files/)
        documentation to configure and deploy static files.
        
        ### Usage
        
        You can refer to angular in your template with:
        
        ```
        {{ STATIC_URL }}js/angular.js
        ```
Keywords: django,angular,staticfiles
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
