Metadata-Version: 2.1
Name: django-cloud-thumbnails
Version: 1.2.1
Summary: Django Cloud Thumbnails is a fork of django-image-cropping that uses django-cloud-storage, a custom Django storage backend.
Author-email: cybermeh <cybermeh@icloud.com>
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django >=4.2
Requires-Dist: pillow >=10.2.0
Requires-Dist: django-cloud-storage >=1.0.4
Requires-Dist: django-appconf >=1.0.2

# Django Cloud Thumbnails


Django Cloud Thumbnails is a fork of
[django-image-cropping](https://github.com/jonasundderwolf/django-image-cropping) that uses
[django-cloud-storage](https://github.com/sysproxy/django-cloud-storage), a custom Django storage backend. 

## Installation

* Install this package using pip
```bash
pip install django-cloud-thumbnails
```

*  Add **django_cloud_thumbnails** to your **INSTALLED_APPS** setting like this
```python
INSTALLED_APPS = [
    ...,
    "django_cloud_thumbnails",
]
```
