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",