Metadata-Version: 1.1
Name: climenu
Version: 1.0.0
Summary: Command-line menu system
Home-page: UNKNOWN
Author: Timothy McFadden
Author-email: tim@timandjamie.com
License: MIT
Description: 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()
        
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
