Metadata-Version: 2.1
Name: penney
Version: 0.1
Summary: Penney's game
Home-page: https://github.com/sepandhaghighi/penney
Author: Sepand Haghighi
Author-email: sepand@pycm.ir
License: MIT
Project-URL: Source, https://github.com/sepandhaghighi/penney
Project-URL: Tracker, https://github.com/sepandhaghighi/penney/issues
Description: 
        <div align="center">
        <img src="https://github.com/sepandhaghighi/penney/raw/master/otherfiles/logo.png" width="164px" height="297px">
        <h1>Penney's Game</h1>
        <a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3" /></a>
        <a href="https://codecov.io/gh/sepandhaghighi/penney">
          <img src="https://codecov.io/gh/sepandhaghighi/penney/branch/master/graph/badge.svg" />
        </a>
        <a href="https://badge.fury.io/py/penney"><img src="https://badge.fury.io/py/penney.svg" alt="PyPI version" height="18"></a>
        </div>
        
        ----------
        
        ## Overview	
        
        Penney's game, named after its inventor Walter Penney, is a binary (head/tail) sequence generating game between two or more players. Player A selects a sequence of heads and tails (of length 3 or larger), and shows this sequence to player B. Player B then selects another sequence of heads and tails of the same length. Subsequently, a fair coin is tossed until either player A's or player B's sequence appears as a consecutive subsequence of the coin toss outcomes. The player whose sequence appears first wins [[Wikipedia](https://en.wikipedia.org/wiki/Penney%27s_game)].
        							
        Here we have a friendly clone of this game that I wrote during coronavirus quarantine days.
        
        
        <table>
        	<tr>
        		<td align="center">PyPI Counter</td>
        		<td align="center"><a href="http://pepy.tech/count/penney"><img src="http://pepy.tech/badge/penney"></a></td>
        	</tr>
        	<tr>
        		<td align="center">Github Stars</td>
        		<td align="center"><a href="https://github.com/sepandhaghighi/penney"><img src="https://img.shields.io/github/stars/sepandhaghighi/penney.svg?style=social&label=Stars"></a></td>
        	</tr>
        </table>
        
        
        
        <table>
        	<tr> 
        		<td align="center">Branch</td>
        		<td align="center">master</td>	
        		<td align="center">dev</td>	
        	</tr>
        	<tr>
        		<td align="center">Travis</td>
        		<td align="center"><a href="https://travis-ci.org/sepandhaghighi/penney"><img src="https://travis-ci.org/sepandhaghighi/penney.svg?branch=master"></a></td>
        		<td align="center"><a href="https://travis-ci.org/sepandhaghighi/penney"><img src="https://travis-ci.org/sepandhaghighi/penney.svg?branch=dev"></a></td>
        	</tr>
        	<tr>
        		<td align="center">AppVeyor</td>
        		<td align="center"><a href="https://ci.appveyor.com/project/sepandhaghighi/penney"><img src="https://ci.appveyor.com/api/projects/status/a32vdhh52b61ij76/branch/master?svg=true"></a></td>
        		<td align="center"><a href="https://ci.appveyor.com/project/sepandhaghighi/penney"><img src="https://ci.appveyor.com/api/projects/status/a32vdhh52b61ij76/branch/dev?svg=true"></a></td>
        	</tr>
        </table>
        
        
        <table>
        	<tr> 
        		<td align="center">Code Quality</td>	
        		<td align="center"><a href="https://www.codefactor.io/repository/github/sepandhaghighi/penney"><img src="https://www.codefactor.io/repository/github/sepandhaghighi/penney/badge" alt="CodeFactor" /></a></td>	
        		<td align="center"><a href="https://www.codacy.com/manual/sepand-haghighi/penney?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=sepandhaghighi/penney&amp;utm_campaign=Badge_Grade"><img src="https://api.codacy.com/project/badge/Grade/d95056b079c844f587dd81914ed9d300"/></a></td>	
                <td align="center"><a href="https://codebeat.co/projects/github-com-sepandhaghighi-penney-dev"><img alt="codebeat badge" src="https://codebeat.co/badges/dbef50d3-b132-45fa-857a-701a52189460" /></a></td>
        	</tr>
        </table>
        
        ## Installation	
        
        ### Source Code
        - Download and install [Python3.x](https://www.python.org/downloads/) (>=3.5)
        	- [x] Select `Add to PATH` option
        	- [x] Select `Install pip` option
        - Download [Version 0.1](https://github.com/sepandhaghighi/penney/archive/v0.1.zip) or [Latest Source ](https://github.com/sepandhaghighi/penney/archive/develop.zip)
        - Run `pip install -r requirements.txt` or `pip3 install -r requirements.txt` (Need root access)
        - Run `python3 setup.py install` or `python setup.py install` (Need root access)				
        
        ### PyPI
        
        - Check [Python Packaging User Guide](https://packaging.python.org/installing/)     
        - Run `pip install penney` or `pip3 install penney` (Need root access)
        
        ### Easy Install
        
        - Run `easy_install --upgrade penney` (Need root access)
        
        ### Exe Version (Only Windows)
        - Download [Penney 0.1](https://github.com/sepandhaghighi/penney/releases/download/v0.1/Penney-0.1.exe)
        - Run `Penney-0.1.exe`
        
        ## How to Play
        
        - Open `CMD` (Windows) or `Terminal` (UNIX)
        - Run `python -m penney` or `python3 -m penney` (or run `Penney.exe`)
        
        <div align="center">
        <img src="https://github.com/sepandhaghighi/penney/raw/master/otherfiles/help.gif">
        <p>GIF</p>
        
        </div>
        
        
        ## Contribution			
        
        Changes and improvements are more than welcome! ❤️ Feel free to fork and open a pull request.		
        
        
        Please consider the following :
        
        
        1. Fork it!
        2. Create your feature branch (under `dev` branch)
        3. Add your functions/methods to proper files
        4. Pass all CI tests
        5. Update `CHANGELOG.md`
        	- Describe changes under `[Unreleased]` section
        6. Submit a pull request into `dev` (please complete the pull request template)
        
        ## Issues & bug reports			
        
        Just fill an issue and describe it. I'll check it ASAP!							
        or send an email to [sepand@pycm.ir](mailto:sepand@pycm.ir "sepand@pycm.ir"). 
        
        * Please complete the issue template
        
        
        ## Dependencies
        
        <table>
        	<tr> 
        		<td align="center">master</td>	
        		<td align="center">dev</td>	
        	</tr>
        	<tr>
        		<td align="center"><a href="https://requires.io/github/sepandhaghighi/penney/requirements/?branch=master"><img src="https://requires.io/github/sepandhaghighi/penney/requirements.svg?branch=master" alt="Requirements Status" /></a></td>
        		<td align="center"><a href="https://requires.io/github/sepandhaghighi/penney/requirements/?branch=dev"><img src="https://requires.io/github/sepandhaghighi/penney/requirements.svg?branch=dev" alt="Requirements Status" /></a></td>
        	</tr>
        </table>
        # Changelog
        All notable changes to this project will be documented in this file.
        
        The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
        and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
        
        ## [Unreleased]
        ## [0.1] - 2020-03-21
        ### Added
        - Player mode
        - Computer mode
        - Exe version
        - Test system
        
        [Unreleased]: https://github.com/sepandhaghighi/penney/compare/v0.1...dev
        [0.1]: https://github.com/sepandhaghighi/penney/compare/1e238cd...v0.1
        
        
        
        
Keywords: penney probability game
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Games/Entertainment :: Simulation
Requires-Python: >=3.5
Description-Content-Type: text/markdown
