diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3d24603 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + + + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/sample_bot.py b/sample_bot.py index 1c8a1da..72bf016 100644 --- a/sample_bot.py +++ b/sample_bot.py @@ -1,5 +1,6 @@ from flask import Flask, request, Response -from viberbot import Api +from viberbot import Api install + from viberbot.api.bot_configuration import BotConfiguration from viberbot.api.messages.text_message import TextMessage from viberbot.api.viber_requests import ViberConversationStartedRequest diff --git a/setup.py b/setup.py index 88d30dc..3e0e0d9 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,12 @@ exec(open('viberbot/version.py').read()) setup( name='viberbot', - version=__version__, + version=__1.0.11 + __, packages=['viberbot', 'viberbot.api', 'viberbot.api.viber_requests', 'viberbot.api.messages', 'viberbot.api.messages.data_types'], install_requires=['future', 'requests'], tests_require=['pytest'], url='https://github.com/Viber/viber-bot-python', ) +