Metadata-Version: 1.1
Name: chessboard
Version: 0.1.0.dev0
Summary: Python CLI to explore chessboard positions.
Home-page: http://github.com/kdeldycke/chessboard
Author: Kevin Deldycke
Author-email: kevin@deldycke.com
License: GPLv2+
Description: Chessboard
        ==========
        
        Python CLI to explore chessboard positions.
        
        
        TODO
        ----
        
        * Implement a brute force algorithm.
        * Add unit tests.
        * Make algorithm faster and smarter.
        
        
        Development philosophy
        ----------------------
        
        1. First create something that work.
        2. Then something that's beautiful.
        3. Finally works on performance.
        
        
        Install
        -------
        
        .. code-block:: bash
        
            $ git clone git@github.com:kdeldycke/chessboard.git
            $ cd ./chessboard
            $ python ./setup.py develop
        
        
        Usage
        -----
        
        .. code-block:: bash
        
            $ chessboard --help
            Usage: chessboard [OPTIONS] COMMAND [ARGS]...
        
              Python CLI to explore chessboard positions.
        
            Options:
              --version             Show the version and exit.
              -l, --length INTEGER  Length of the board.
              -h, --height INTEGER  Height of the board.
              -v, --verbose         Print much more debug statements.
              --help                Show this message and exit.
        
        
        Third-party
        -----------
        
        This project package's boilerplate is sourced from the `code I wrote
        <https://github.com/scaleway/postal-address/graphs/contributors>`_ for
        `Scaleway <https://scaleway.com/>`_'s `postal-address module
        <https://github.com/scaleway/postal-address>`_, which is published under a
        `GPLv2+ License <https://github.com/scaleway/postal-address#license>`_.
        
        The CLI code is based on the one I wrote for the `kdenlive-tools module
        <https://github.com/kdeldycke/kdenlive-tools>`_, published under a `BSD
        license <https://github.com/kdeldycke/kdenlive-tools/blob/master/LICENSE>`_.
        
        
        License
        -------
        
        This software is licensed under the `GNU General Public License v2 or later
        (GPLv2+)
        <https://github.com/kdeldycke/chessboard/blob/master/LICENSE>`_.
        
        ChangeLog
        =========
        
        
        0.1.0 (2015-08-08)
        ------------------
        
        * First public release.
        * Implements a CLI to inititalize the chessboard.
        
        
        0.0.0 (2015-08-08)
        ------------------
        
        * First commit.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
