Metadata-Version: 1.1
Name: comenu
Version: 1.1
Summary: Command line menu and helper utility
Home-page: https://github.com/dmirubtsov/comenu
Author: Dmitry Rubtsov
Author-email: dmitry@rubtsov.eu
License: MIT
Description-Content-Type: UNKNOWN
Description: comenu
        -------
        ``comenu`` is a simple menu for execute any command in terminal.
        
        Forked from https://github.com/mmeyer724/sshmenu
        
        Quick Setup
        -----------
        
        **macOS**
        
        .. code-block:: bash
        
           brew install https://raw.githubusercontent.com/dmirubtsov/comenu/master/comenu.rb
           comenu
        
        **Linux**
        
        .. code-block:: bash
        
           pip3 install --user comenu
           comenu
        
        **Development**
        
        .. code-block:: bash
        
           git clone https://github.com/dmirubtsov/comenu.git
           cd comenu
           pip3 install -r requirements.txt
           python3 -m comenu
        
        Configuration
        -------------
        On first run an example configuration file will be created for you, along with the path. For reference, I've added this information here as well.
        
        **OS X**
        
        .. code-block:: bash
        
           nano ~/Library/Application\ Support/comenu/config.json
        
        **Linux**
        
        .. code-block:: bash
        
           nano ~/.config/comenu/config.json
        
        **Default contents**
        
        .. code-block:: json
        
            {
            	"targets": [{
            		"command": "ssh root@desktop",
            		"name": "Desktop",
            		"friendly": "Connect to desktop by ssh"
            	}]
            }
        
        Todo
        ----
        * Submenus
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
