Metadata-Version: 2.4
Name: pipen-cli-run
Version: 1.0.6
Summary: A pipen cli plugin to run a process or a pipeline
Project-URL: Homepage, https://github.com/pwwang/pipen-cli-run
Project-URL: Repository, https://github.com/pwwang/pipen-cli-run
Author-email: pwwang <pwwang@pwwang.com>
License: MIT
Requires-Python: >=3.9
Requires-Dist: pipen-args>=1.2
Description-Content-Type: text/markdown

<div align="center">
    <img src="./logo.png" width="220px" alt="pipen-cli-run logo" />
    <p style="font-weight:bold;">A pipen cli plugin to run a process or a pipeline</p>
</div>

## Install

```shell
pip install -U pipen-cli-run
```

## Usage

### Register a namespace

`pyproject.toml`
```toml
[tool.poetry.plugins.pipen_cli_run]
ns = "yourpackage.ns"
```

`ns` should be a module where you define you processes/pipelines

Then run the process or pipeline:

```shell
pipen run ns <process_or_pipeline_name> [args...]
```
