Metadata-Version: 1.1
Name: docker-wrapper
Version: 0.3.0
Summary: Docker Wrapper for Python
Home-page: http://github.com/frigg/docker-wrapper-py
Author: Fredrik Carlsen
Author-email: fredrik@carlsen.io
License: MIT
Description: docker-wrapper-py |Build status| |Coverage status|
        ==================================================
        
        Install
        -------
        
        ::
        
            pip install docker-wrapper
        
        Usage
        -----
        
        Use it in a with statement:
        
        .. code:: python
        
            with Docker() as docker:
                docker.run('command')
        
        or as a decorator:
        
        .. code:: python
        
                @Docker.wrap()
                def run_command_in_container(command, docker)
                    docker.run(command)
        
        Read the documentation on
        `docker-wrapper-py.readthedocs.org <http://docker-wrapper-py.readthedocs.org>`__
        for more information about how to use this.
        
        --------------
        
        MIT © frigg.io
        
        .. |Build status| image:: https://ci.frigg.io/badges/frigg/docker-wrapper-py/
           :target: https://ci.frigg.io/frigg/docker-wrapper-py/last/
        .. |Coverage status| image:: https://ci.frigg.io/badges/coverage/frigg/docker-wrapper-py/
           :target: https://ci.frigg.io/frigg/docker-wrapper-py/last/
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
