Metadata-Version: 2.1
Name: tictactoe-enhanced
Version: 1.0.1
Summary: A Tic Tac Toe game where you can define game size.
Home-page: https://github.com/danysrour/tictactoe_enhanced
Author: Dany Srour
Author-email: dany.srour@gmail.com
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# TicTacToe Enhanced

TicTacToeEnhanced is a Python package that provides functionality for playing the old classic Tic Tac Toe game.

The library allows you to play any size 3x3 4x4 10x10 or even 100x100 if you have a big enough screen 

The default size is 3x3

## Installation

You can install TicTacToeEnhanced using pip:

```shell
pip install tictactoe_enhanced
```
 
# Usage

## Encoding


```python
from tictactoe_enhanced import TicTacToe

game = TicTacToe(size=4)
game.play_game()
```

# Enjoy :)

# Contributing

Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on [GitHub](https://github.com/danysrour/tictactoe_enhanced).

# License

This project is licensed under the [MIT License](https://raw.githubusercontent.com/danysrour/tictactoe_enhanced/master/LICENSE.txt)

```text

You can now copy this code and use it as your README.md file.
```
