2020-08-06 22:16:57 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# Check that we're not running on an unsupported Python version.
|
|
|
|
if sys.version_info < (3, 5):
|
2020-08-12 02:37:54 +02:00
|
|
|
print("my_project_name requires Python 3.5 or above.")
|
2020-08-06 22:16:57 +02:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
__version__ = "0.0.1"
|