Metadata-Version: 2.1
Name: mastermind
Version: 0.4
Summary: Play mastermind with python !
Home-page: https://github.com/nhoulier/mastermind.git
Author: Nicolas Houlier
Author-email: nicolas.houlier@imt-atlantique.net
License: MIT
Keywords: mastermind notebook ipywidgets game
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown; charset=UTF-8
Requires-Dist: ipywidgets (>=7.4)
Requires-Dist: notebook-toggle-code

<img src="./img/logo.png" width="35%" />

This package allows you to play Mastermind

## Install

    pip install mastermind

## How to use in a jupyter notebook

Copy and paste the following lines into a cell of a notebook and run it:

    from mastermind import MastermindNotebook
    game = MastermindNotebook()

The game should display, you can start playing by choosing one color for each position and click on "Confirm combination" button !

![GitHub Logo](/img/game_capture.png)

## State of development

* A Tkinter interface must be developed to play outside a notebook, feel free to contribute !

* Add a DB to record all the games for one user

