Python Tic Tac Toe Module
- clone repository
git clone [email protected]:chessticulate/tictactoe && cd tictactoe
- create virtual environment
python -m venv venv && source venv/bin/activate
- install the project for local development
pip install --editable .[dev]
- format the project
black .
- lint the project
pylint ./tictactoe
- test the project
pytest
To run the module as a simple commandline game, run: python tictactoe
To use this module in another project, run: - TBD