Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.

Commit 54fe252

Browse files
committed
added setup.py for installing module now that RtmBot was refactored
1 parent 45e9f77 commit 54fe252

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(name='rtmbot',
6+
version='1.0',
7+
description='A Slack bot written in python that connects via the RTM API.',
8+
author='Ryan Huber',
9+
author_email='[email protected]',
10+
url='https://github.com/slackhq/python-rtmbot',
11+
packages=['rtmbot'],
12+
)

0 commit comments

Comments
 (0)