mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-05 04:40:42 +00:00
11 lines
205 B
Python
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.")
|