Metadata-Version: 1.1
Name: jcli
Version: 0.0.2.dev29
Summary: Command-line Interface for Jenkins
Home-page: UNKNOWN
Author: Arie Bregman
Author-email: bregman.arie@gmail.com
License: Apache License, Version 2.0
Description: Jcli - Jenkins Command-line Interface
        =====================================
        
        The ultimate Jenkins ClI ;)
        
        Install
        -------
        
        To install jcli on your system, run the following command:
        
            sudo pip install .
        
        Setup config
        ------------
        
        jcli is using configuartion file to connect the server.
        
        It can be setup in one of the following paths:
        
            /etc/jcli/config.ini
            `pwd`/config.ini
        
        or it can passed as an argument.
        
        Minimal configuartion is:
        
            [jenkins]
            user=<jenkins_user>
            password=<api_token>
            url=<jenkins_url>
        
        Examples
        --------
        
        ### Job examples
        
        Print list of all the jobs:
        
            jcli job list
        
        Print jobs which contain the string 'coreci' in their names:
        
            jcli job list coreci
        
        Print the number of jobs on Jenkins server:
        
            jcli job count
        
        
        Full list of job commands can be found [here](https://github.com/bregman-arie/jcli/tree/master/doc/job.md)
        
        ### View examples
        
        List all views:
        
            jcli view list
        
        Delete view:
        
            jcli view delete view90 
        
        
        Full list of view commands can be found [here](https://github.com/bregman-arie/jcli/tree/master/doc/view.md)
        
        ### Node examples
        
        List all nodes:
        
            jcli node list
        
        Delete node:
        
            jcli node delete <node_name>
        
        ### Plugin examples
        
        List all installed plugins:
        
            jcli plugin list
        
        List infromation on specific plugin:
        
            jcli plugin list python
        
        
        License
        -------
        
        Apache
        
        Author Information
        ------------------
        
        Arie Bregman - abregman@redhat.com
        
        
Platform: UNKNOWN
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
