Skip to content

Commit

Permalink
trying to fix module not found on simple_slack_bot.library when using…
Browse files Browse the repository at this point in the history
… library
  • Loading branch information
GregHilston committed Mar 21, 2018
1 parent bb6934c commit a7ae3ac
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 19 deletions.
File renamed without changes.
Empty file added __init__.py
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
setup(
name="simple_slack_bot",
packages=["simple_slack_bot"], # this must be the same as the name above
version="1.0.0",
version="1.0.1",
description="Simple Slack Bot makes writing your next Slack bot incredibly easy",
long_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 by simply registering for Slack Events defined by the Slack API",
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/v1.0.0-alpha",
download_url="https://github.com/GregHilston/Simple-Slack-Bot/tarball/v1.0.1-alpha",
keywords=["slack", "bot", "chat", "simple"], # arbitrary keywords
classifiers=[],
install_requires=[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import logging
from logging import NullHandler
from slacker import Slacker
from .slack_request import SlackRequest
from slacksocket import SlackSocket
from .slack_request import SlackRequest

logger = logging.getLogger(__name__)
logger.addHandler(NullHandler())
Expand Down
2 changes: 0 additions & 2 deletions simple_slack_bot/__init__.py

This file was deleted.

12 changes: 0 additions & 12 deletions simple_slack_bot/app.py

This file was deleted.

1 change: 0 additions & 1 deletion simple_slack_bot/library/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion simple_slack_bot/library/simple_slack_bot/__init__.py

This file was deleted.

File renamed without changes.

0 comments on commit a7ae3ac

Please sign in to comment.