Metadata-Version: 1.1
Name: django-daguerre
Version: 2.2.2
Summary: On-the-fly image manipulation for Django 1.7+.
Home-page: http://django-daguerre.readthedocs.org/
Author: Little Weaver Web Collective
Author-email: hello@littleweaverweb.com
License: BSD
Description: README
        ======
        
        **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**.
        
        .. code-block:: html+django
        
            {% load daguerre %}
            <img src="{% adjust my_model.image "fill" width=200 height=400 %}" />
        
            {% adjust_bulk my_queryset "method.image" "fill" width=200 height=400 as adjusted_list %}
            {% for my_model, image in adjusted_list %}
              <img src="{{ image }}" />
            {% endfor %}
        
        
        :code:         http://github.com/littleweaver/django-daguerre
        :docs:         http://readthedocs.org/docs/django-daguerre/
        :build status: |build-image|
        
        .. |build-image| image:: https://secure.travis-ci.org/littleweaver/django-daguerre.png?branch=master
                         :target: http://travis-ci.org/littleweaver/django-daguerre/branches
        
        Requirements
        ------------
        
        * Python 2.7+, 3.3+
        * Pillow
        * Django 1.7, 1.8 & 1.9
        * Six 1.10.0+
        
        Daguerre *may* work with earlier or later versions of these packages, but they are not officially supported.
        
        Installation
        ------------
        
        You can install the latest version of Daguerre using ``pip``::
        
            $ pip install django-daguerre
        
        You can clone the repository yourself at https://github.com/littleweaver/django-daguerre.
        
        .. highlight:: python
        
        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')),
               ...
           )
        
        Testing
        -------
        
        We recommend running `tox`_ from the repository's root directory,
        but you can also run ``test_project/manage.py test daguerre``.
        
        .. _tox: http://tox.readthedocs.org/en/latest/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Multimedia :: Graphics
Classifier: Framework :: Django
