import pkg_resources from .interface import run, run_async # noqa from .exceptions import AnsibleRunnerException, ConfigurationError, CallbackError # noqa from .runner_config import RunnerConfig # noqa from .runner import Runner # noqa plugins = { entry_point.name: entry_point.load() for entry_point in pkg_resources.iter_entry_points('ansible_runner.plugins') }