Metadata-Version: 2.1
Name: bbprc
Version: 0.1.1
Summary: Sends comment to BitBucket Pull Requests
Home-page: https://github.com/ITD27M01/bitbucket-pr-commenter
Author: itd27m01
Author-email: igortiunov@gmail.com
License: MIT
Description: # BitBucket Pull Request commenter
        
        This simple utility just sends comment to BitBucket server pull request.
        It is useful in CI automation to comment PR with build results and include
        some data from output text file.
        
        ```shell
        > bbprc --help
        usage: bbprc [-h] [--server SERVER] [--token TOKEN] [--project PROJECT] [--repo REPO] [--pr PR] [--greeting GREETING] [--file FILE] [--verify] [--debug]
        
        Sends comment to BitBucket Pull Request
        
        optional arguments:
          -h, --help           show this help message and exit
          --server SERVER      BitBucket server name or address
          --token TOKEN        BitBucket Bearer token for authorization
          --project PROJECT    BitBucket project name
          --repo REPO          BitBucket repository name
          --pr PR              BitBucket Pull Request number
          --greeting GREETING  Some text you want to save in the PR comment
          --file FILE          Filepath to load comment from
          --verify             Verify server cert
          --debug              Shows detailed process
        ```
        
        ## Authentication
        
        For security reasons it only supports [personal access token](https://confluence.atlassian.com/bitbucketserver/personal-access-tokens-939515499.html)
        as a bearer for authentication.
        
        ## Requirements
        
        * requests
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
