Metadata-Version: 2.4
Name: zipzap
Version: 0.1.0
Summary: Fast batch image compression for Dropbox, folders and ZIP files using zipzap
Author: Abhiraj Adhikary
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pyvips
Requires-Dist: pyvips-binary
Requires-Dist: dropbox
Requires-Dist: python-dotenv

# bci-compressor

Fast batch image compression for local folders, ZIP archives, and Dropbox.

## Install

```bash
pip install bci-compressor
```

## CLI

```bash
bci-compress
bci-pyvips-zip
```

`bci-compress` supports:
- Dropbox folder compression
- Local folder compression
- Local ZIP compression

`bci-pyvips-zip` compresses images inside a ZIP archive into a new output ZIP.

## Publish To PyPI

1. Build distributions:

```bash
python -m pip install --upgrade build twine
python -m build
```

2. Upload to TestPyPI first:

```bash
python -m twine upload --repository testpypi dist/*
```

3. Upload to PyPI:

```bash
python -m twine upload dist/*
```

Use a PyPI API token (`__token__`) when prompted.
