Metadata-Version: 2.4
Name: willow_exiftool
Version: 0.2
Summary: ExifTool optimizer for Willow
Maintainer-email: The Developer Society <studio@dev.ngo>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/developersociety/willow-exiftool
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Willow>=1.11.0
Dynamic: license-file

# willow-exiftool

[ExifTool](https://exiftool.org/) optimizer for [Willow](https://github.com/wagtail/Willow), to
strip out excessive Exif data.

## Installation

Using [pip](https://pip.pypa.io/):

```console
$ pip install willow-exiftool
```

You'll also need to install ExifTool if you don't have it already. For Debian/Ubuntu you can use
apt, other distributions should also have packages:

```console
$ sudo apt install exiftool
```

Edit your Django project's settings module, and add the application to `INSTALLED_APPS`:

```python
INSTALLED_APPS = [
    # ...
    "willow_exiftool",
    # ...
]
```

Also add/update `WILLOW_OPTIMIZERS` to enable the optimizer:

```python
WILLOW_OPTIMIZERS = "exiftool"
```
