Metadata-Version: 2.3
Name: pyord
Version: 0.2.2
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: python-bitcointx ; extra == 'dev'
Requires-Dist: ipython ; extra == 'dev'
Requires-Dist: ipdb ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Provides-Extra: dev
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

Python wrappers for Ordinals
============================

This project provides Python wrappers for [ord](https://github.com/ordinals/ord) internals.

The project is very much WIP. Currently, only wrappers for structs and functions related to Runes are provided.

The philosophy is to wrap `ord` internal structs as thinly as possible inside pyo3-compatible Rust, and to
provide sane methods on top of them to enable use in Python.

## Development

```bash
# python3.10 needs to be in PATH
make develop  # creates a venv and installs `pyord` inside it
make test  # test using pytest
```

## Building wheels

```bash
make build
```

