Metadata-Version: 1.1
Name: ansible_importer
Version: 0.0.2
Summary: Small library to allow Ansible plugins/modules to be imported.
Home-page: https://github.com/nrb/ansible_importer
Author: Nolan Brubaker
Author-email: palendae@gmail.com
License: GPLv3
Description: ansible_importer
        ----------------
        
        Ansible modules and plugins are typically pure Python, but often lack the structure necessary to import 
        as Python code. This package is meant to allow programmers to import module code for testing purposes.
        
        Usage
        -----
        
        ..code-block:: python
            import ansible_importer
            ansible_importer.install('/abs/path/to/ansible/code')
        
            # Assuming above path has a playbooks/plugins/actions/my_plugin.py module
            from playbooks.plugins.actions.my_plugin import ActionModule
        
            # Assuming playbooks/library/glance
            from playbooks.library.glance import ManageGlance
        
            # Assuming playbooks/inventory/dynamic_inventory.py
            from playbooks.inventory import dynamic_inventory
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
