From d7fd80327ef41a6f3027997ec09502039ef31975 Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Fri, 23 Sep 2022 22:33:10 -0500 Subject: [PATCH] fix: package name should include backend --- _slack/room.py | 2 +- setup.py | 2 +- slackv3.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_slack/room.py b/_slack/room.py index 016acbe..49f8338 100644 --- a/_slack/room.py +++ b/_slack/room.py @@ -21,7 +21,7 @@ log.exception("Could not start the SlackSDK backend") log.fatal( "You need to install python modules in order to use the Slack backend.\n" - "You can do `pip install errbot-plugin-slackv3` to install them." + "You can do `pip install errbot-backend-slackv3` to install them." ) sys.exit(1) diff --git a/setup.py b/setup.py index f125d2f..33ce20c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def read(name, encoding="ascii"): ] setup( - name="errbot-plugin-slackv3", + name="errbot-backend-slackv3", version="0.2.0", description="Errbot SlackV3 backend plugin", author="Errbot", diff --git a/slackv3.py b/slackv3.py index f1cdad9..db191cf 100644 --- a/slackv3.py +++ b/slackv3.py @@ -44,7 +44,7 @@ log.exception("Could not start the SlackV3 backend") log.fatal( "You need to install python modules in order to use the Slack backend.\n" - "You can do `pip install errbot-plugin-slackv3` to install them." + "You can do `pip install errbot-backend-slackv3` to install them." ) sys.exit(1)