Metadata-Version: 2.0
Name: slack-responder
Version: 1.1.0
Summary: A slack bot that responds to regex patterns
Home-page: https://github.com/jarshwah/slack-pattern-responder
Author: Josh Smeaton
Author-email: josh.smeaton@gmail.com
License: MIT
Platform: unix
Platform: linux
Platform: osx
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: click
Requires-Dist: pyyaml
Requires-Dist: slackclient (>=1.0.5)

# slack_responder
Monitors all messages for regex patterns and returns a corresponding message.
I use this for turning ticket numbers into links.

## Installation:

`pip3 install slack_responder`

## Configuration:

See the `example.yaml` configuration file. Sorry, that's not a lot of help,
but docs are on my todo list below :)

## Usage:

Create yourself a bot user, paste the token given to you into your config
file (just copy the example.yaml), and run.

```
slack_responder ./responder.yaml
```

See `config/upstart.conf` for an example of running this as a service. Pay
particular attention to the environment variables `LC_ALL` and `LANG` when
running under python 3.

## TODO:

- Docs
- Way more tests
- travis test integration


