grim/local-pipelines

Add a bunch of licensing info

2016-07-26, Gary Kramlich
aef3a7b69e1b
Add a bunch of licensing info
# Local Pipelines
Local Pipelines parses your bitbucket-pipelines.yml and runs it locally using
Docker.
This supports mercurial and git.
## Installing
You can easily install it with a simple
```
pip install -U --user local-pipelines
```
Once that's done make sure ~/.local/bin is in your $PATH.
## Running
You can run your your bitbucket-pipelines.yml from the working directory via:
```
pipelines
```
If you want to run it from another directory you can use
```
pipelines -f /path/to/bitbucket-pipelines.yml
```
## TODO
Additional environment variable support and need to investigate pipelines a bit
more to make sure everything looks the same.
## Licensing
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA