Metadata-Version: 1.1
Name: django-resized
Version: 0.1.4
Summary: Deletes old files.
Home-page: https://github.com/un1t/django-resized
Author: Ilya Shalyapin
Author-email: ishalyapin@gmail.com
License: MIT License
Download-URL: https://github.com/un1t/django-resized/tarball/master
Description: # django-resized
        
        Resizes image origin to specified size. Compatible with sorl-thumbnail.
        
        ## Installation
            
            pip install django-resized
        
        
        ## Usage 
        
        models.py
        
            from django_resized import ResizedImageField
            
            class MyModel(models.Model):
                ...
                image = ResizedImageField(max_width=500, max_height=300, upload_to='whatever')
        
        
        
        
        
        
Keywords: django
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Requires: python (>= 2.5)
Requires: django (>= 1.0)
