#!python

"""
Check that the installation of python is C enabled.
"""

import os
from pypeit.display import required_plugins, plugins_available
from pypeit import msgs

success, report = plugins_available(return_report=True)
if not success:
    msgs.error(report)
msgs.info('All required plugins found: {0}'.format(', '.join(required_plugins)))


