Metadata-Version: 2.0
Name: friendlyshell
Version: 1.0.3
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: kevin@thefriendlycoder.com
License: GPL
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 :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft
Classifier: Operating System :: POSIX
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: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Requires-Dist: pyparsing
Requires-Dist: tabulate
Requires-Dist: pyreadline; platform_system == "Windows"
Provides-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'

.. This is a readme file encoded in reStructuredText format, intended for use on
.. the summary page for the FriendlyShell PyPI project. Care should be taken to
.. make sure the encoding is compatible with PyPI's markup syntax. See this site
.. for details:
.. http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html
..


.. image:: https://img.shields.io/pypi/l/friendlyshell.svg
    :target: https://github.com/TheFriendlyCoder/friendlyshell/blob/master/LICENSE
    :alt: License

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

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

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

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

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

.. image:: https://badge.fury.io/py/friendlyshell.svg
    :target: https://pypi.org/project/friendlyshell/
    :alt: Latest Version

.. image:: https://api.travis-ci.org/TheFriendlyCoder/friendlyshell.svg?branch=master
    :target: https://travis-ci.org/TheFriendlyCoder/friendlyshell
    :alt: Build status

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

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


