Metadata-Version: 2.1
Name: commandtemplate
Version: 0.0.1
Summary: A python package that provides a command template for easy execution.
Home-page: https://github.com/aldenleung/commandtemplate/
Author: Alden Leung
Author-email: alden.leung@gmail.com
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
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown

# commandtemplate

A python package that provides a command template for easy execution.

Usage:

```python
from commandtemplate.conda import run_template_bash
output_func = lambda **kwargs: [kwargs['o']]

run_template_bash(
    "cp {i} {o}",
    conda_env="some_conda_environment",
    i="input_file",
    o="output_file"
    
)
```

