├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.md ├── LICENSE.txt ├── Makefile ├── README.md ├── RTMBOT_README.md ├── requirements.txt ├── rtmbot.conf.example ├── rtmbot.py └── teambot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | python -m doctest -v rtmbot.py 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/README.md -------------------------------------------------------------------------------- /RTMBOT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/RTMBOT_README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/requirements.txt -------------------------------------------------------------------------------- /rtmbot.conf.example: -------------------------------------------------------------------------------- 1 | DEBUG: True 2 | 3 | SLACK_TOKEN: "" 4 | -------------------------------------------------------------------------------- /rtmbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/rtmbot.py -------------------------------------------------------------------------------- /teambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdeck/teambot/HEAD/teambot.py --------------------------------------------------------------------------------