You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
195 B

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