Metadata-Version: 2.1
Name: venv-modulefile
Version: 0.0.10
Summary: Python venv extension using Modulefile
Home-page: https://github.com/roland-lenain/venv-modulefile
Author: R. Lenain
Author-email: roland.lenain@cea.fr
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/roland-lenain/venv-modulefile/issues
Project-URL: Doc, https://venv-modulefile.readthedocs.io/en/latest/index.html
Project-URL: Source, https://github.com/roland-lenain/venv-modulefile
Keywords: venv,modulefile
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: packaging
Requires-Dist: requests
Provides-Extra: docs
Requires-Dist: psutil (==5.9.4) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme (==1.1.1) ; extra == 'docs'
Requires-Dist: myst-parser (==0.16.1) ; extra == 'docs'
Requires-Dist: numpydoc (==1.1.0) ; extra == 'docs'
Provides-Extra: test
Requires-Dist: psutil (==5.9.4) ; extra == 'test'
Requires-Dist: pylint (>=2.13.9) ; extra == 'test'
Requires-Dist: pytest (>=7.0.1) ; extra == 'test'
Requires-Dist: pytest-cov (>=4.0.0) ; extra == 'test'
Requires-Dist: pytest-html (>=3.2.0) ; extra == 'test'
Requires-Dist: pytest-sugar (>=0.9.6) ; extra == 'test'
Requires-Dist: pytest-xdist (>=3.0.2) ; extra == 'test'

# venv-modulefile

[<img src="https://www.python.org/static/community_logos/python-logo-master-v3-TM.png" height="30"/>](Python)
[<img src="https://raw.githubusercontent.com/cea-hpc/modules/v5.2.0/doc/img/modules_red.svg" height="30" style="background-color: white"/>](Environment_Module)

- [venv-modulefile](#venv-modulefile)
  - [Description](#description)
  - [Quick start](#quick-start)

## Description

Tool to create Python complient environment from non-pythonic tools in a Python virtual
environment.

It is based on [Environment Module](https://modules.readthedocs.io/en/latest/) to
modify the virtual environment.

## Quick start

```bash

venvmod-initialize ${VIRTUAL_ENV}
venvmod-prepend-path ${VIRTUAL_ENV} LD_LIBRARY_PATH toto/tata/tutu

venvmod-add-appli ${VIRTUAL_ENV} APPLI_NAME --environ
venvmod-prepend-path ${VIRTUAL_ENV} --appli APPLI_NAME LD_LIBRARY_PATH toto/tata/tutu

```


