matrix-alertbot/matrix_alertbot/__init__.py
2022-06-13 20:55:01 +02:00

8 lines
205 B
Python

import sys
# Check that we're not running on an unsupported Python version.
if sys.version_info < (3, 5):
print("matrix_alertbot requires Python 3.5 or above.")
sys.exit(1)
__version__ = "0.0.1"