Metadata-Version: 2.0
Name: wundertool
Version: 0.0.1
Summary: Tool written in Python for working with Docker containers.
Home-page: https://github.com/aleksijohansson/wundertool-py
Author: Aleksi Johansson
Author-email: aleksi@aleksijohansson.net
License: MIT
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
Requires-Dist: docker-compose (>=1.7.1,<2)
Requires-Dist: docker-py (>=1.8.1,<2)

wundertool-py
==============
Tool written in Python for working with Docker containers.

Installation
------------
You can always install the tool from PyPI with::

  pip install wundertool

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 code::

  git clone https://github.com/aleksijohansson/wundertool-py.git
  cd wundertool-py
  pyvenv .
  source bin/activate
  pip install -e .

You always need to activate the wundertool-py virtual environment when opening a new terminal for development::

  source <DIR>/wundertool-py/bin/activate


