Metadata-Version: 2.1
Name: tictacai
Version: 0.1.4
Summary: Tic-Tac-Toe Game created using Minimax AI players
License: MIT
Keywords: tic-tac-toe,minimax,gamedev
Author: BrianLusina
Author-email: 12752833+BrianLusina@users.noreply.github.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# TicTacToe Game Engine library

A pure Python library for creating tic tac toe game frontends

## Installation

Install the library into an active virtual environment:

```sh
(venv) python -m pip install .
```

## Packaging

Build and package a standalone tic tac toe library for distribution with:

``` sh
python -m pip wheel .
```

