Metadata-Version: 2.0
Name: friendlyshell
Version: 1.0.9
Summary: Framework for writing interactive Python command line interfaces, similar to the 'cmd' built in class.
Home-page: https://github.com/TheFriendlyCoder/friendlyshell
Author: Kevin S. Phillips
Author-email: thefriendlycoder@gmail.com
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Keywords: cmd command line shell interactive interpreter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Software Development :: Libraries
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
Requires-Dist: six
Requires-Dist: pyparsing
Requires-Dist: tabulate
Requires-Dist: pyreadline; platform_system == "Windows"
Provides-Extra: dev
Requires-Dist: twine; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest-timeout; extra == 'dev'
Requires-Dist: mock; extra == 'dev'
Requires-Dist: pylint; extra == 'dev'
Requires-Dist: sphinx; extra == 'dev'
Requires-Dist: tox; extra == 'dev'

.. image:: https://travis-ci.org/TheFriendlyCoder/friendlyshell.svg?tag=1.0.9
    :target: https://travis-ci.org/TheFriendlyCoder/friendlyshell
    :alt: Build Automation


.. image:: https://coveralls.io/repos/github/TheFriendlyCoder/friendlyshell/badge.svg?tag=1.0.9
    :target: https://coveralls.io/github/TheFriendlyCoder/friendlyshell?tag=1.0.9
    :alt: Test Coverage


.. image:: https://img.shields.io/pypi/pyversions/friendlyshell.svg
    :target: https://pypi.python.org/pypi/friendlyshell
    :alt: Python Versions


.. image:: https://readthedocs.org/projects/friendlyshell/badge/?version=1.0.9
    :target: http://friendlyshell.readthedocs.io/en/1.0.9
    :alt: Documentation Status


.. image:: https://requires.io/github/TheFriendlyCoder/friendlyshell/requirements.svg?tag=1.0.9
    :target: https://requires.io/github/TheFriendlyCoder/friendlyshell/requirements/?tag=1.0.9
    :alt: Requirements Status


.. image:: https://img.shields.io/pypi/format/friendlyshell.svg
    :target: https://pypi.python.org/pypi/friendlyshell/
    :alt: Package Format


.. image:: https://img.shields.io/pypi/dm/friendlyshell.svg
    :target: https://pypi.python.org/pypi/friendlyshell/
    :alt: Download Count


.. image:: https://img.shields.io/pypi/l/friendlyshell.svg
    :target: https://www.apache.org/licenses/LICENSE-2.0.txt
    :alt: Apache License 2.0


=============
Overview
=============

Framework for writing interactive Python command line interfaces, similar to
the 'cmd' built in class.


