Metadata-Version: 2.0
Name: climenu
Version: 1.1.0
Summary: Command-line menu system
Home-page: https://github.com/mtik00/pyclimenu
Author: Timothy McFadden
Author-email: tim@timandjamie.com
License: MIT
Download-URL: https://github.com/mtik00/pyclimenu/releases/download/v1.1.0/climenu-1.1.0.tar.gz
Keywords: cli command-line menu
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable

climenu
=======
This project is used to create *simple* command-line interfaces using
text-based menus.

The interface loosely mimics `click <http://click.pocoo.org>`_ (the use of
decorators to define the interface).

Documentation is hosted `on ReadTheDocs <http://pyclimenu.rtfd.io/>`_

----

Example::

    from __future__ import print_function
    import climenu

    @climenu.menu()
    def build_release():
        '''Build release'''
        print("built the release")

    @climenu.menu()
    def build_package():
        '''Build the package'''
        print("built the package")

    if __name__ == '__main__':
        climenu.run()


