Metadata-Version: 2.4
Name: pyzta
Version: 0.8.1
Summary: Python bindings for ztalib
Author-Email: Eric Galvan <contact@goosifer.io>
License-Expression: MIT
License-File: LICENSE
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: C++
Classifier: Operating System :: OS Independent
Project-URL: Homepage, https://ztalib.goosifer.io/
Project-URL: Repository, https://github.com/GoosiferIO/ztalib
Project-URL: Issues, https://github.com/GoosiferIO/ztalib/issues
Project-URL: Changelog, https://github.com/GoosiferIO/ztalib/releases
Project-URL: Discord, https://discord.gg/g5FvNrRQGC
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ztalib

This is an image parsing library for Zoo Tycoon 1 animation graphics.

For complete documentation: https://ztalib.goosifer.io

## Compiling

### C++ Library

Easiest way to start using the library is compile it as a C++ library. You can use CMake:

```bash
cmake -S . -B build
cmake --build build --config Release
cmake --install build --config Release --prefix dist
```

This will install the library in a `dist` folder. Copy the contents of `dist` to your project and link against the library.

