Metadata-Version: 1.0
Name: django-cleanup
Version: 0.1.2
Summary: Deletes old files.
Home-page: https://github.com/un1t/django-cleanup
Author: Ilya Shalyapin
Author-email: ishalyapin@gmail.com
License: MIT License
Download-URL: https://github.com/un1t/django-cleanup/tarball/master
Description: # django-cleanup
        
        django-cleanup automatically deletes old file for FileField, ImageField and subclasses,
        and it also deletes files on models instance deletion.
        
        
        ## Installation
            
            pip install django-cleanup
        
        
        ## Configuration
        
        Add django_cleanup to settings.py
        
            INSTALLED_APPS = (
                ...
                'django_cleanup', # should go after your apps
            )
        
        Warning! django_cleanup should be placed after all your apps. (At least after those apps which need to remove files.)
        
        
Keywords: django
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
