Metadata-Version: 2.1
Name: pyxo
Version: 1.2.2
Summary: An easy way to create XO game with python.
Home-page: https://github.com/ouhammmourachid/pyxo
License: MIT
Author: ouhammmourachid
Author-email: rachidouhammou21@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Repository, https://github.com/ouhammmourachid/pyxo
Description-Content-Type: text/markdown

## Pyxo package :

an easy way to create **XO game** with python.

<p align="center">
    <a href="https://github.com/ouhammmourachid/pyxo/blob/main/LICENSE" >
        <img src="https://img.shields.io/github/license/ouhammmourachid/pyxo"
            alt="GitHub LICENSE" /></a>
    <a href="https://pypistats.org/packages/pyxo">
        <img src="https://img.shields.io/pypi/dm/pyxo"
            alt="Mounthly Download" /></a>
    <a href="https://pypi.org/project/pyxo/">
        <img src="https://img.shields.io/pypi/v/pyxo.svg?style=flat"
            alt="latest version" /></a>
    <a href="https://pypi.org/project/pyxo/">
        <img src="https://img.shields.io/pypi/pyversions/pyxo"
            alt="suported python version" /></a>
</p>

#### get staretd:

* you need to install the package from the pypi by `pip install pyxo`.
* you are ready to play you just need create a game with the building Engin and the run easy .

```python
from pyxo import Engin

game:Engin = Engin()

game.run()

```
or by running
```shell
$ pyxo
# or
$ python -m pyxo
```
```shell
           _____ _        _____            _____
          |_   _(_) ___  |_   _|_ _  ___  |_   _|__   ___
            | | | |/ __|   | |/ _` |/ __|   | |/ _ \ / _ \
            | | | | (__    | | (_| | (__    | | (_) |  __/
            |_| |_|\___|   |_|\__,_|\___|   |_|\___/ \___|

            by ouhammmourachid                      v1.2.2


                welcome to the game [X,O]

      that is the roles you should chose one the nomber between (1...9)

                        _|___|___|___|_
                         | 1 | 2 | 3 |
                        _|___|___|___|_
                         | 4 | 5 | 6 |
                        _|___|___|___|_
                         | 7 | 8 | 9 |
                        _|___|___|___|_
                         |   |   |   |

      should we start who will begin first you or your friend !

 press ENTER to begin ..

```
have fun playing with your friend.

