Metadata-Version: 1.1
Name: b2tool
Version: 0.0.4
Summary: bbtool is a command line tool to manage BitBucket
Home-page: https://github.com/jesuejunior/b2tool
Author: Jesue Junior
Author-email: talkto@jesuejunior.com
License: 3-BSD
Description: ======
        b2tool
        ======
        
        **bbtool is a command line tool to manage BitBucket**
        
        List of commands and --options
        ______________________________
        
        * auth
            * login
                * --username
                * --password
        
        * pullrequest
           *__required options for all__*
            --owner *Organization or account on Bitbucket* 
        
            --repo *Repository to connect*
        
        
          * listall
          * oldest
        
            --id True or False
        
            --branch True or False
        
          * accept
        
            --id Integer
        
            --message String
        
        
        
        How to use 
        __________
        
        `Commands`
        
        ::
        
        $ b2tool command options
        
        
        **Authenticate on bitbucket**
        ::
        
        $ b2tool auth login --username jesuejunior --password abc123
        
        **List all pull requests**
        
        ::
        
        $ b2tool pullrequest listall --owner jesuejunior --repo projectA
        
        **List oldest pull requests with ID and branch**
        ::
        
        $ b2tool pullrequest oldest --owner jesuejunior --repo projectA
        
        
        **Print only id of oldest pull requests**
        ::
        
        $ b2tool pullrequest oldest --owner jesuejunior --repo projectA  --id True
        
        **Print only branch of oldest pull requests**
        ::
        
        $ b2tool pullrequest oldest --owner jesuejunior --repo projectA  --branch True
        
        **Accept pull request with id 100**
        ::
        
        $ b2tool pullrequest accept --owner jesuejunior --repo projectA  --id 100 --message 'Accept this pull request ok'
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
