Metadata-Version: 2.1
Name: pipen-cli-run
Version: 0.9.1
Summary: A pipen cli plugin to run a process or a pipeline
Home-page: https://github.com/pwwang/pipen-cli-run
License: MIT
Author: pwwang
Author-email: pwwang@pwwang.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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-Dist: pipen-args (>=0.10.0,<0.11.0)
Project-URL: Repository, https://github.com/pwwang/pipen-cli-run
Description-Content-Type: text/markdown

# pipen-cli-run

A pipen cli plugin to run a process or a pipeline

## 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

