Metadata-Version: 1.1
Name: gallows
Version: 0.6.0
Summary: The word game Hangman based on 'Invent Your Own Computer Games with Python'.
Home-page: http://github.com/chennaipy/hangman
Author: Vijay Kumar B.
Author-email: vijaykumar@bravegnu.org
License: BSD 2-Clause
Description: Gallows
        =======
        
        .. image:: https://travis-ci.org/Chennaipy/hangman.svg?branch=master
          :target: https://travis-ci.org/Chennaipy/hangman
        
        .. image:: https://img.shields.io/coveralls/Chennaipy/hangman.svg?style=flat
          :target: https://coveralls.io/r/Chennaipy/hangman
        
        .. image:: https://pypip.in/version/gallows/badge.svg?style=flat
          :target: https://pypi.python.org/pypi/gallows/
          :alt: Latest Version
        
        .. image:: https://readthedocs.org/projects/gallows/badge/?version=latest
          :target: https://readthedocs.org/projects/gallows/?badge=latest
             :alt: Documentation Status
        
        The goal of this project is to learn and implement the best practices,
        in writing and maintaining a Python project. For this purpose, we use
        a simple Hangman game program, from the book `"Invent Your Own
        Computer Games with Python" <http://inventwithpython.com/chapters/>`_.
        
        Usage
        -----
        
        The game can be installed using the following command ::
        
          $ pip install gallows
        
        Once installed the game can be played using the following command ::
        
          $ gallows.py
        
        Development
        -----------
        
        After cloning the repository, install the game in development mode
        using the following command ::
        
          $ python3 setup.py develop
        
        You can modify the program and then test it by using the following
        command ::
        
          $ gallows.py
        
        You can execute the unit tests, using the following command ::
        
          $ python3 setup.py test
        
        You can build the documentation, using the following commands ::
        
          $ pip install -r doc-requirements.txt
          $ cd doc
          $ make html
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Games/Entertainment :: Puzzle Games
