Metadata-Version: 1.1
Name: django-loupe
Version: 0.1.0
Summary: A simple collaborative image/screenshot review app for Django applications
Home-page: http://bitbucket.org/gregnewman/django-loupe/
Author: Greg Newman
Author-email: greg@20seven.org
License: UNKNOWN
Description: ==============
        Django-Loupe
        ==============
        
        django-loupe is a simple image/screenshot review application to add to your django project to allow collaborative discussions about about a projects design processes.
        
        Installation:
        =============
        
        1. Put ``loupe`` to your ``INSTALLED_APPS`` in your ``settings.py``
           within your django project.
        
        2.  Add the following to your settings.py or local_settings.py and adjust it to your liking
        
        LOUPE_RESIZE_THUMB_WIDTH = 100 # Width in pixels of the thumbnail
        LOUPE_RESIZE_THUMB_HEIGHT  = 75 # Height in pixels of the thumbnail
        LOUPE_RESIZE_THUMB_CROP = True # Crop thubmnails? True or False
        LOUPE_RESIZE_DISPLAY_WIDTH = 800 # Width in pixels of the display size (not full size image)
        LOUPE_PRE_CACHE_IMAGES = True # Pre-cache images on upload? True or False
        LOUPE_INCREMENT_COUNT = True # Increment the view count on images? True or False
        
        
        Features:
        =========
        
        
        Roadmap:
        ========
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
