Metadata-Version: 2.1
Name: tictacai
Version: 1.0.0
Summary: Tic-Tac-Toe Game created using Human, Randomized Computer & Minimax AI players
Author: Brian Lusina
Author-email: 12752833+BrianLusina@users.noreply.github.com
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown
License-File: LICENSE


# 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 .
```
