From 049925642e37dfa5545558a39c3afd570d89c26a Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Tue, 11 Aug 2020 17:37:54 -0700 Subject: [PATCH] Fix some lingering matrix-reminder-bot refs --- my_project_name/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/my_project_name/__init__.py b/my_project_name/__init__.py index 186ec26..b2df4de 100644 --- a/my_project_name/__init__.py +++ b/my_project_name/__init__.py @@ -2,7 +2,7 @@ import sys # Check that we're not running on an unsupported Python version. if sys.version_info < (3, 5): - print("matrix_reminder_bot requires Python 3.5 or above.") + print("my_project_name requires Python 3.5 or above.") sys.exit(1) __version__ = "0.0.1" diff --git a/setup.py b/setup.py index 4eaad64..09675be 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name="my-project-name", version=version, url="https://github.com/anoadragon453/nio-template", - description="A matrix bot to remind you about things!", + description="A matrix bot to do amazing things!", packages=find_packages(exclude=["tests", "tests.*"]), install_requires=[ "matrix-nio[e2e]>=0.10.0",