A simple Chess engine.
Create virtual environment.
pip install virtualenv
virtualenv .venv
Install packages.
make install
Run all tests.
make test
Generate coverage reports.
make report
From the Run and Debug panel, with Python Debugger: Current File
selected, press Start Debugging or [F5] from any project root
Python file (i.e. ~/CLI.py
or ~/Chess.py
).
Format code.
make format
Run the game.
make run