File: __init__.py

package info (click to toggle)
django-cleanup 5.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 144 kB
  • sloc: python: 270; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
'''
    django-cleanup automatically deletes files for FileField, ImageField, and
    subclasses. It will delete old files when a new file is being save and it
    will delete files on model instance deletion.
'''
__version__ = '5.2.0'
default_app_config = 'django_cleanup.apps.CleanupConfig'