Metadata-Version: 2.3
Name: pipen-cli-run
Version: 0.15.0a1
Summary: A pipen cli plugin to run a process or a pipeline
License: MIT
Author: pwwang
Author-email: pwwang@pwwang.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: pipen-args (>=0.17.0a1,<0.18.0)
Project-URL: Homepage, https://github.com/pwwang/pipen-cli-run
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

