Metadata-Version: 2.1
Name: minishogilib
Version: 0.6.16
Author: nyashiki
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Minishogilib
[![](https://github.com/Nyashiki/minishogilib/workflows/build/badge.svg)](https://github.com/Nyashiki/minishogilib/actions?workflow=build)
[![](https://github.com/Nyashiki/minishogilib/workflows/test/badge.svg)](https://github.com/Nyashiki/minishogilib/actions?workflow=test)

This is a python3 library of [Minishogi](https://en.wikipedia.org/wiki/Minishogi) (a variant of Shogi) written in Rust.

# Installation

You can use this library by building from source or downlaoding the wheel file from [release](https://github.com/Nyashiki/minishogilib/releases).

## Build from source
The wheel file can be generated by [maturin](https://github.com/PyO3/maturin).
```
maturin build --release
```

The wheel file is generated at ./target/wheels/ and you can install it via pip3.
```
pip3 install <GENERATED WHEEL FILE>
```

