Metadata-Version: 2.1
Name: bleachrepo
Version: 0.0.18
Summary: Find and remove the mold from your source control repositories
Home-page: https://github.com/shesekino/bleach
Author: Amir Moualem
Author-email: amoualem@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: python-dateutil
Requires-Dist: pytz

# bleach
Remove mold from your repositories :)

Bleach is a project dedicated to helping software development teams keep track of their repositories and make sure no pull request is left unattended.
Bleach may query GitHub and BitBucket repositories, and write alerts on pull requests open for too long to Slack.

## Installing
For unpriviliged users:
`pip install --user bleachrepo`

Or for priviliged users / with sudo:
`pip install bleachrepo`

## Running
For public repositories:

`python -m bleach <org> <repo>`

For example:

`python -m bleach shesekino bleach`

For private repositories:

Obtain a GitHub access token with `repo` permissions, then set it as an environment variable:

`export BLEACH_GITHUB_ACCESS_TOKEN=<access token>`

and run normally.

## Writing to Slack

Set a webhook URL to slack:

`export BLEACH_SLACK_WEBHOOK=<webhook url>`

then run:

`python -m bleach --outputMethod slack <org> <repo>`


