Metadata-Version: 1.1
Name: shellish
Version: 0.4.0
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.
        ===============================================
        
        This module combines the Python standard library modules argparse and
        cmd to provided 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.
        
        Status
        ------
        
        |Change Log| |Build Status|
        
        Requirements
        ------------
        
        -  None more black!
        
        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+
        
        TODO
        ----
        
        -  Documentation
        -  Documentation
        -  Documentation
        
        Getting Started
        ---------------
        
        TBD
        
        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/>`__
        
        .. |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/projects/d925ee35-bede-4cc1-bbb8-17a738b84cfa/533600/shields_badge.svg
           :target: https://semaphoreci.com/mayfield/shellish
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Shells
