Metadata-Version: 2.5
Name: envmodules
Version: 0.2
Summary: Python wrapper around environment modules ("module load")
Author-email: European XFEL GmbH <da-support@xfel.eu>
Description-Content-Type: text/x-rst
License-Expression: BSD-3-Clause
License-File: LICENSE
Project-URL: home-page, https://github.com/European-XFEL/envmodules
Import-Name: envmodules
This is a tiny importable Python wrapper for the `Environment Modules
<https://modules.readthedocs.io/en/latest/>`_ system - the ``module load``
command often used in the shell on HPC systems.

Installation::

    pip install envmodules

Usage::

    import envmodules
    envmodules.load('gcc/6.1.1')

Loading modules like this mostly affects external programs which you
run in subprocesses.
Most modules won't have much effect on Python code in the same process.

