Metadata-Version: 1.1
Name: curses-2048
Version: 1.3.1
Summary: 2048 implementation with python and ncurses
Home-page: https://github.com/odkq/curses-2048/
Author: Pablo Martin Medrano
Author-email: pablo@odkq.com
License: GPL
Description: ===============================
        curses-2048
        ===============================
        
                
        .. image:: http://i.imgur.com/ASZCWBQ.png
        
        
        A terminal/ncurses/python version of the original game at http://gabrielecirulli.github.io/2048
        
        * Free software: GPL license
        
        Install
        --------
        
        Open your terminal and type:
        
        
        .. code:: bash
        
         $ pip install curses-2048
        
        or 
        
        .. code:: bash  
            
         $ easy_install curses-2048
        
        
        Usage
        ------
        
        .. code:: bash  
            
         $ 2048
        
        256 colors
        ----------
        If your terminal has support for 256 colors you will see colors mimicking the
        original game, something like the screenshot above. If your terminal only
        supports 16 colors, you will se something like this:
        
        .. image:: http://i.imgur.com/S4F4wgW.png
        
        Recent versions of xterm and gnome terminal are known to support 256 colors,
        if you do not see them, probably your environment variable TERM is not set
        accordingly. Do
        
        .. code:: bash
         
         $ export TERM=xterm-256color
        
        or, if you are using screen or tmux
        
        .. code:: bash
        
         $ export TERM=screen-256color
        
        to enjoy curses-2048 in full 256 colors glory.
        
        Use the cursor keys to move and join tiles. Get to the 2048 tile!
        
        
        
        
        History
        -------
        
        1.0 (2014-05-20)
        ++++++++++++++++++
        
        * First release as a module. Packaged for pypi by Henrique Pereira. Uploaded
          to pypi
        
        1.1 (2014-05-21)
        ++++++++++++++++++
        
        * Proper initialization of curses colors and hide terminal cursor, by
          Chris Seymour
        
        1.2 (2014-05-21)
        ++++++++++++++++
        
        * Added support for 256 color terminals mimicking the original web game
        
        1.3 (2014-05-22)
        ++++++++++++++++
        
        * Adapt tile height to terminal window height and adjust dynamically if
          resized
        
Keywords: 2048
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console :: Curses
Classifier: Topic :: Games/Entertainment :: Puzzle Games
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
