2015-08-02 18:29:36 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
2016-04-17 16:41:39 -07:00
|
|
|
setup(
|
|
|
|
name='rtmbot',
|
2016-06-05 13:28:28 -07:00
|
|
|
version='0.2.0',
|
2016-04-17 16:41:39 -07:00
|
|
|
description='A Slack bot written in python that connects via the RTM API.',
|
|
|
|
author='Ryan Huber',
|
|
|
|
author_email='rhuber@gmail.com',
|
|
|
|
url='https://github.com/slackhq/python-rtmbot',
|
|
|
|
packages=['rtmbot'],
|
|
|
|
)
|