Metadata-Version: 2.1
Name: chesstutor-Ceasar
Version: 0.0.3
Summary: Play chess on the command line.
Home-page: https://github.com/Ceasar/chesstutor
Author: Ceasar Bautista
Author-email: cbautista2010@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Requires-Dist: click
Requires-Dist: python-chess


********************************************************************************
Chess Tutor
********************************************************************************

Improve your chess skills by playing human-computer chess on the command line.

The program will use a chess engine to calculate the top three moves in the
current position, and display them to the player in a random order without
revealing the scores. The player attempts to choose the best move. Then program
reveals the score and chooses the best move for black.

Set up
********************************************************************************

Install the stockfish chess engine (Mac OS)::

    brew install stockfish

Create the environment::

    virtualenv env
    source env/bin/activate
    pip install -r requirements.txt

Then play::

    python chesstutor.py


