Metadata-Version: 1.1
Name: Fifteen-Puzzle-Game
Version: 0.0.1
Summary: A Simple Puzzle Game
Home-page: https://github.com/skdhell/Fifteen-Puzzle-Game
Author: ShashiKant Dwivedi
Author-email: raghoram2009@gmail.com
License: MIT
Description: Fifteen-Puzzle-Game
        ==============
        
        A simple python puzzle game.
        Play at you free time.
        
        The code is  Python 3 .
        
        Installation
        ------------
        
        Fast install:
        
        ::
        
            pip install Fifteen-Puzzle-Game
        
        For a manual install get this package:
        
        ::
        
            wget https://github.com/skdhell/Fifteen-Puzzle-Game/archive/master.zip
            unzip master.zip
            rm master.zip
            cd Fifteen-Puzzle-Game-master
        
        Install the package:
        
        ::
        
            python setup.py install    
        
        Example
        --------
        
        .. code:: python
        
            from Game import main
            
            main.play() 
        
        
        output
        -------
        $------$------$------$------$
        |  1   |  2   |  3   |  4   |
        $------$------$------$------$
        |  5   |  6   |  7   |  8   |
        $------$------$------$------$
        |  9   |  10  |  11  |  12  |
        $------$------$------$------$
        |  13  |  14  |  15  |      |
        $------$------$------$------$
        You have completed this game in 
        Press 
        N: New Game
        S: Resume Last Game
        Q: Exit
        Enter Choice Here:
        
            
            
        
        
        
        
        
Keywords: Solving Puzzle
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
