Metadata-Version: 1.1
Name: django-cropduster
Version: 4.5.6
Summary: Django image uploader and cropping tool
Home-page: https://github.com/theatlantic/django-cropduster
Author: The Atlantic
Author-email: programmers@theatlantic.com
License: UNKNOWN
Description: django-cropduster
        #################
        
        **django-cropduster** is a project that makes a form field available
        that uses the `Jcrop jQuery
        plugin <https://github.com/tapmodo/Jcrop>`_. It is a drop-in
        replacement for django's ``ImageField`` and allows users to generate
        multiple crops from images, using predefined sizes and aspect ratios.
        **django-cropduster** was created by developers at `The
        Atlantic <http://www.theatlantic.com/>`_.
        
        **django-cropduster** is a mature library currently in production at
        `The Atlantic <http://www.theatlantic.com/>`_. However, the
        documentation at present is far from adequate. Until there is
        sufficiently detailed documentation we encourage any developers who have
        an interest in the project but are encountering difficulties using it to
        create issues on the `GitHub project
        page <https://github.com/theatlantic/django-cropduster>`_ requesting
        assistance.
        
        Installation
        ============
        
        The recommended way to install django-cropduster is from
        `PyPI <https://pypi.python.org/pypi/django-cropduster>`_::
        
                pip install django-cropduster
        
        Alternatively, one can install a development copy of django-cropduster
        from source::
        
                pip install -e git+git://github.com/theatlantic/django-cropduster.git#egg=django-cropduster
        
        If you are working from source, ensure that you have django-cropduster
        checked out to the ``v4`` branch. If the source is already checked out,
        use setuptools::
        
                python setup.py develop
        
        Configuration
        =============
        
        To enable django-cropduster, ``"cropduster"`` must be added to
        ``INSTALLED_APPS`` in settings.py and you must include
        ``cropduster.urls`` in your django urlpatterns.
        
        ::
        
            # settings.py
        
            INSTALLED_APPS = (
                # ...
                'cropduster',
            )
        
            # urls.py
        
            urlpatterns = patterns('',
                # ...
                url(r'^cropduster/', include('cropduster.urls')),
            )
        
        License
        =======
        
        The django code is licensed under the `Simplified BSD
        License <http://opensource.org/licenses/BSD-2-Clause>`_. View the
        ``LICENSE`` file under the root directory for complete license and
        copyright information.
        
        The Jcrop jQuery library included is used under the `MIT
        License <https://github.com/tapmodo/Jcrop/blob/master/MIT-LICENSE.txt>`_.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
