Metadata-Version: 2.1
Name: pyhub-pr
Version: 0.1.0
Summary: Will create an issue from the command line with given parameters
Home-page: https://github.com/seluj78/pyhub_pr
Author: Jules Lasne
Author-email: jules.lasne@gmail.com
License: MIT license
Keywords: pyhub_pr
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests

# PyHub-PR
Command line tool written in Python to create a PR on github

usage:
```
usage: github_pr [-h] --organisation ORGANISATION --repo REPO --token TOKEN --title TITLE --body BODY [--base BASE] [--head HEAD]
                 [--github-url GITHUB_URL]

Create a PR

optional arguments:
  -h, --help            show this help message and exit
  --organisation ORGANISATION
                        GitHub organisation
  --repo REPO           GitHub repo
  --token TOKEN         GitHub token
  --title TITLE         Title of the Pull Request
  --body BODY           Body of the Pull Request
  --base BASE           Base branch to merge into
  --head HEAD           Head branch to merge from
  --github-url GITHUB_URL
                        Github API url
```

