Metadata-Version: 2.1
Name: pullyou
Version: 1.0.2
Summary: A tool for opening the PR associated with a given commit
Home-page: https://github.com/macrael/pullyou
Author: MacRae Linton
Author-email: macrae@macrael.com
License: BSD
Keywords: git github
Platform: UNKNOWN
Classifier: Environment :: MacOS X
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests

PullYou is a tool for opening the PR associated with a given git hash.

Install
--------
```
pip3 install pullyou
```

Usage
--------
```
$ pullyou 2aaf764552e012ac33cd7b2d6

$ pullyou 2aaf76455 --repo transcom/mymove
```

Auth
------
If accessing a private repository, create a github personal access token with the `repo` scope and drop it in ~/.github_token as `username:token`

Releasing
-------------
```
$ python setup.py sdist bdist_wheel
$ twine upload dist/* [-r testpypi]
$ rm -rf dist/*
* tag the release
* bump the version number
```


