Metadata-Version: 2.4
Name: tripa
Version: 0.2.0
Summary: Utilities to create, open, extend, and animate .tripa files.
Author: Cognet Benjamin
License-Expression: MIT
Project-URL: Homepage, https://github.com/Hatsunefanboy/Tripatouilleur
Project-URL: Repository, https://github.com/Hatsunefanboy/Tripatouilleur
Keywords: tripa,image,art,python
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow>=9.0
Dynamic: license-file

# Tripa

`Tripa` is a Python package to create, open, extend, and animate `.tripa` files.

License: MIT
Author: Cognet Benjamin

## Installation

```bash
pip install tripa
```

For local development:

```bash
pip install -e .
```

## Quick start

```python
from tripa import FileTripa

tripa = FileTripa.open("example.tripa")
tripa.extend(2)
tripa.save("example_extended.tripa")
tripa.close()
```

## Package contents

- `tripa.Tripa`: base class
- `tripa.FileTripa`: work with `.tripa` archives on disk
- `tripa.ImageTripa`: image-oriented helpers
- `tripa.VirtualTripa`: in-memory triangle generation

## Build a distribution

```bash
py -m build
```

This generates a source distribution and a wheel in `dist/`.
