Metadata-Version: 1.1
Name: shellish
Version: 2.4
Summary: A framework for CLI/shell programs.
Home-page: https://github.com/mayfield/shellish/
Author: Justin Mayfield
Author-email: tooker@gmail.com
License: MIT
Description: shellish
        ========
        
        **Command-line/shell mashup framework**
        
        |Maturity| |License| |Change Log| |Build Status| |Version|
        
        About
        -----
        
        This module combines the Python standard library modules argparse and
        cmd to provide a unified way to make cli programs that can also be
        interactive (when invoked in "shell" mode).
        
        The main benefit to using this package is streamlined command hierarchy
        when you want to have rich set of subcommands along with a pretty
        powerful tab completion layer that parses argparse arguments
        automagically.
        
        Requirements
        ------------
        
        Posix-like platform
        
        Installation
        ------------
        
        **PyPi Stable Release**
        
        ::
        
            pip3 install shellish
        
        **Development Release**
        
        ::
        
            python3.4 ./setup.py build
            python3.4 ./setup.py install
        
        *or*
        
        ::
        
            python3.4 ./setup.py develop
        
        Compatibility
        -------------
        
        -  Python 3.4+
        
        Examples
        --------
        
        -  `Hello World <examples/hello_world.py>`__
        -  `Decorator <examples/decorator.py>`__
        -  `Nesting (Subcommands) <examples/simple_nesting.py>`__
        -  `Alternate Styles <examples/skin_a_cat.py>`__
        -  `Tab Completion <examples/tabcompletion.py>`__
        
        `All Examples <examples/>`__
        
        .. |Maturity| image:: https://img.shields.io/pypi/status/shellish.svg
           :target: https://pypi.python.org/pypi/shellish
        .. |License| image:: https://img.shields.io/pypi/l/shellish.svg
           :target: https://pypi.python.org/pypi/shellish
        .. |Change Log| image:: https://img.shields.io/badge/change-log-blue.svg
           :target: https://github.com/mayfield/shellish/blob/master/CHANGELOG.md
        .. |Build Status| image:: https://semaphoreci.com/api/v1/mayfield/shellish/branches/master/shields_badge.svg
           :target: https://semaphoreci.com/mayfield/shellish
        .. |Version| image:: https://img.shields.io/pypi/v/shellish.svg
           :target: https://pypi.python.org/pypi/shellish
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Shells
