matrix-alertbot/my_project_name/__init__.py
2020-08-09 14:33:57 -07:00

8 lines
209 B
Python

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.")
sys.exit(1)
__version__ = "0.0.1"