Metadata-Version: 2.1
Name: fitz-utils
Version: 0.0.13
Summary: Extra functions for use with pymupdf module
Author: The Walnut AI
Requires-Python: >=3.9,<3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: ftfy (>=6.1.1,<7.0.0)
Requires-Dist: numpy (>=1.26.1,<2.0.0)
Requires-Dist: pandas (>=2.1.1,<3.0.0)
Requires-Dist: pymupdf (>=1.23.5,<2.0.0)
Description-Content-Type: text/markdown

## Introduction

Add extra functions for use with pymupdf module

## Installation

1. Install dev environment

```
make install
```

2. Create wheel of the package

```
python setup.py bdist_wheel
```

3. Install the package

```
pip install dist/fitz_utils-0.0.13-py3-none-any.whl
```

4. Install the package with poetry (If you're using poetry) - OPTIONAL <br/>
   Copy the `dist/fitz_utils-0.0.13-py3-none-any.whl` into your project folder such as `your_project/packages/fitz-utils/fitz_utils-0.0.13-py3-none-any.whl`

```
poetry add packages/fitz-utils/fitz_utils-0.0.13-py3-none-any.whl
```

