ansible-doctor/ansibledoctor/__init__.py

11 lines
205 B
Python

"""Provide version information."""
__version__ = "0.0.0"
import sys
try:
import ansible # noqa
except ImportError:
sys.exit("ERROR: Python requirements are missing: 'ansible-core' not found.")