Metadata-Version: 1.1
Name: InteractiveCommandLine
Version: 0.3.4
Summary: Framework for interactive and command-line programs.
Home-page: http://pythonhosted.org/InteractiveCommandLine
Author: Vincent Jacques
Author-email: vincent@vincent-jacques.net
License: MIT
Description: **DO NOT USE THIS LIBRARY**: the `click <http://click.pocoo.org/>`_ library is vastly better.
        I will not fix anything in this library and I'm migrating my own projects to ``click``.
        
        InteractiveCommandLine is a Python (2.7+ and 3.3+) framework for git-style command line interface
        (main program, commands, sub-commands) *and* shell-like interface, with prompt.
        
        It's licensed under the `MIT license <http://choosealicense.com/licenses/mit/>`__.
        It's available on the `Python package index <http://pypi.python.org/pypi/InteractiveCommandLine>`__,
        its `documentation is hosted by Python <http://pythonhosted.org/InteractiveCommandLine>`__
        and its source code is on `GitHub <https://github.com/jacquev6/InteractiveCommandLine>`__.
        
        .. image:: https://img.shields.io/travis/jacquev6/InteractiveCommandLine/master.svg
            :target: https://travis-ci.org/jacquev6/InteractiveCommandLine
        
        .. image:: https://img.shields.io/coveralls/jacquev6/InteractiveCommandLine/master.svg
            :target: https://coveralls.io/r/jacquev6/InteractiveCommandLine
        
        .. image:: https://img.shields.io/codeclimate/github/jacquev6/InteractiveCommandLine.svg
            :target: https://codeclimate.com/github/jacquev6/InteractiveCommandLine
        
        .. image:: https://img.shields.io/scrutinizer/g/jacquev6/InteractiveCommandLine.svg
            :target: https://scrutinizer-ci.com/g/jacquev6/InteractiveCommandLine
        
        .. image:: https://img.shields.io/pypi/dm/InteractiveCommandLine.svg
            :target: https://pypi.python.org/pypi/InteractiveCommandLine
        
        .. image:: https://img.shields.io/pypi/l/InteractiveCommandLine.svg
            :target: https://pypi.python.org/pypi/InteractiveCommandLine
        
        .. image:: https://img.shields.io/pypi/v/InteractiveCommandLine.svg
            :target: https://pypi.python.org/pypi/InteractiveCommandLine
        
        .. image:: https://img.shields.io/pypi/pyversions/InteractiveCommandLine.svg
            :target: https://pypi.python.org/pypi/InteractiveCommandLine
        
        .. image:: https://img.shields.io/pypi/status/InteractiveCommandLine.svg
            :target: https://pypi.python.org/pypi/InteractiveCommandLine
        
        .. image:: https://img.shields.io/github/issues/jacquev6/InteractiveCommandLine.svg
            :target: https://github.com/jacquev6/InteractiveCommandLine/issues
        
        .. image:: https://badge.waffle.io/jacquev6/InteractiveCommandLine.png?label=ready&title=ready
            :target: https://waffle.io/jacquev6/InteractiveCommandLine
        
        .. image:: https://img.shields.io/github/forks/jacquev6/InteractiveCommandLine.svg
            :target: https://github.com/jacquev6/InteractiveCommandLine/network
        
        .. image:: https://img.shields.io/github/stars/jacquev6/InteractiveCommandLine.svg
            :target: https://github.com/jacquev6/InteractiveCommandLine/stargazers
        
        Quick start
        ===========
        
        Install from PyPI::
        
            $ pip install InteractiveCommandLine
        
        .. Warning, these are NOT doctests because doctests aren't displayed on GitHub.
        
        Import::
        
            >>> from InteractiveCommandLine import *
        
        @todoc Quick start
        
Platform: UNKNOWN
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Environment :: Console
