Metadata-Version: 1.0
Name: django-daguerre
Version: 0.1
Summary: Image management and processing for Django.
Home-page: http://django-daguerre.readthedocs.org/
Author: UNKNOWN
Author-email: UNKNOWN
License: BSD
Description: Django Daguerre
        ===============
        
        **Django Daguerre** makes it easy to adjust images on-the-fly without
        slowing down your templates and without needing to generate everything
        ahead of time with a cron job. You don't need to make any changes to
        your models; it **Just Works**.
        
        Requirements
        ------------
        
        * Python 2.5+
        * PIL 1.1.7 (Or [Pillow](http://pypi.python.org/pypi/Pillow))
        
        Installation
        ------------
        
        You can install the latest version of Daguerre using `pip`:
        
            pip install django-daguerre
        
        Setup
        -----
        
        Ensure that `'daguerre'` is in your project's `INSTALLED_APPS`:
        
            INSTALLED_APPS = (
                'daguerre',
                ...
            )
        
        Add the following or similar anywhere in your URLconf:
        
            urlpatterns = patterns('',
                url(r'^daguerre/', include('daguerre.urls')),
                ...
            )
        
        Usage
        -----
        
        The easiest way to use Daguerre is through the `{% adjust %}` template tag:
        
            {% load daguerre %}
            <img src="{% adjust my_model.image.name width=128 height=256 %}" />
        
        For more on using Daguerre, [read the documentation](http://django-daguerre.readthedocs.org/).
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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 :: Multimedia :: Graphics
Classifier: Framework :: Django
