ansible-doctor/ansibledoctor/__init__.py

11 lines
205 B
Python
Raw Normal View History

"""Provide version information."""
2019-10-07 08:52:00 +02:00
2020-12-31 14:16:00 +01:00
__version__ = "0.0.0"
import sys
try:
import ansible # noqa
except ImportError:
sys.exit("ERROR: Python requirements are missing: 'ansible-core' not found.")