Metadata-Version: 1.1
Name: wundertool
Version: 0.1.1
Summary: Tool for working with Docker containers
Home-page: https://github.com/aleksijohansson/wundertool-py
Author: Aleksi Johansson
Author-email: aleksi@aleksijohansson.net
License: MIT
Description: wundertool-py
        ==============
        Tool for working with `Docker <https://www.docker.com/>`_ containers.
        
        Requirements:
        
        - python 3 or later
        
        Installation
        ------------
        You can always install the tool from PyPI with::
        
          pip install wundertool
        
        *Note: OS X doesn't have python 3 or pip installed by default. You should install them with `brew` first and then install `wundertool`*::
        
          brew install python3
          pip3 install wundertool
        
        Upgrade
        -------
        Upgrade to the latest version with::
        
          pip install wundertool --upgrade
        
        or on OS X with python 3::
        
          pip3 install wundertool --upgrade
        
        Usage
        -----
        Currently available commands are mostly equivalent of those of docker-compose. See this for list of available commands::
        
          wundertool commands
        
        Development
        -----------
        Requirements:
        
        - python 3.4 or later
        
        You can clone this module locally and install it in development mode in an virtual environment like this::
        
          git clone https://github.com/aleksijohansson/wundertool-py.git
          cd wundertool-py
          pyvenv .
          source bin/activate
          pip install -e ".[dev]"
        
        You always need to activate the wundertool-py virtual environment when opening a new terminal for development::
        
          source <DIR>/wundertool-py/bin/activate
        
Keywords: wundertools wundertool docker containers container-management
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
