-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ff765c
commit 74e8793
Showing
8 changed files
with
47 additions
and
16 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from . import BackgroundTask | ||
from . import BackgroundTaskManager | ||
from . import Bot | ||
from . import ChatRoom | ||
from . import Chatcommunicate | ||
from . import Command | ||
from . import CommandAlive | ||
from . import CommandListRunningCommands | ||
from . import CommandManager | ||
from . import CommandStop | ||
from . import PrivilegeType | ||
from . import PrivilegedChatUser | ||
from . import Utilities | ||
|
||
CommandListRunningCommands = CommandListRunningCommands.CommandListRunningCommands | ||
CommandStop = CommandStop.CommandStop | ||
CommandAlive = CommandAlive.CommandAlive |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .Source/Bot import Bot |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from distutils.core import setup | ||
|
||
setup ( | ||
name = "BotpySE", | ||
packages = ["BotpySE"], | ||
version = "0.1.5", | ||
description = "A python framework to create chatbots on the StackExchange network.", | ||
author = "Ashish Ahuja", | ||
author_email = "[email protected]", | ||
url = "https://github.com/SOBotics/Botpy", | ||
) |