Metadata-Version: 2.3
Name: blokus_engine
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Author: Alex Racapé
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Self Play Module

This module allows the model to simulate games against itself using Monte
Carlo Tree Search. It uses gRPC to communicate with the model server.
This approach is modeled after the AlphaZero algorithm.

## Usage

To run the self play client:

```bash
cargo run --bin self_play
```

