Metadata-Version: 1.1
Name: macht
Version: 0.1.3
Summary: A 2048 clone in python with Terminal UI
Home-page: https://github.com/polyphemus/macht
Author: Rolf Morel
Author-email: rolfmorel@gmail.com
License: LGPLv3
Description: =====
        Macht
        =====
        
        A `2048`_ clone in python with Terminal UI
        
        .. image:: https://mediacru.sh/lwz2N8zBc3Ph.gif
           :target: https://mediacru.sh/lwz2N8zBc3Ph
        
        Install
        -------
        
        Using the `pip` package manager: ::
        
            pip install macht
        
        
        Or: ::
        
            python ./setup.py install
        
        Play
        ----
        ::
        
            macht
        
        Or without installing (in the project directory): ::
        
            python -m macht
        
        Use either the arrow keys, the ``wasd`` keys, or the ``hjkl`` keys to move the tiles.
        
        Options
        -------
        
        Specify the board size: ::
        
            macht 5x5
        
        Play on multiple grids simultaneously: ::
        
            macht 3x3 3x3 3x3
        
        Play with a different base number: ::
        
            macht --base 3
        
        To display a help message use the ``-h/--help`` option.
        
        Dependencies
        ------------
        
        - `blessed`_ -- Used as a general abstraction on terminal input and output.
        - `enum package`_ -- Enumerations for python. Included with python3.4, older python versions need to use the `enum34`_ package.
        
        .. _`2048`: http://gabrielecirulli.github.io/2048/
        .. _`Blessed`: https://pypi.python.org/pypi/blessed/
        .. _`enum package`: https://docs.python.org/3.4/library/enum.html
        .. _`enum34`: https://pypi.python.org/pypi/enum34
        
Keywords: 2048,terminal,game,board,puzzle,tiles
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: POSIX
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Games/Entertainment :: Puzzle Games
Classifier: Topic :: Terminals
