-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated __init__.py to include the SlackRequest
- Loading branch information
1 parent
3ea92b9
commit 1e3ee63
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,12 @@ | |
setup( | ||
name = "simple_slack_bot", | ||
packages = ["simple_slack_bot"], # this must be the same as the name above | ||
version = "0.3.1", | ||
version = "0.3.2", | ||
description = "Simple Slack Bot makes writing your next Slack bot incredibly easy. By factoring out common functionality all Slack Bots require, you can focus on writing your business logic.", | ||
author = "Greg Hilston", | ||
author_email = "[email protected]", | ||
url = "https://github.com/GregHilston/Simple-Slack-Bot", # use the URL to the github repo | ||
download_url = "https://github.com/GregHilston/Simple-Slack-Bot/tarball/v0.3.0-alpha", | ||
download_url = "https://github.com/GregHilston/Simple-Slack-Bot/tarball/v0.3.2-alpha", | ||
keywords = ["slack", "bot", "chat", "simple"], # arbitrary keywords | ||
classifiers = [], | ||
install_requires=[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from .simple_slack_bot import SimpleSlackBot | ||
from .slack_request import SlackRequest |