Metadata-Version: 2.4
Name: workflows-manager
Version: 0.4.1
Summary: Python CLI application that allows to run custom workflows.
Project-URL: Documentation, https://dl1998.github.io/workflows-manager
Project-URL: Repository, https://github.com/dl1998/workflows-manager.git
Project-URL: Issues, https://github.com/dl1998/workflows-manager/issues
Author-email: Dmytro Leshchenko <dima.leschenko1998@gmail.com>
Maintainer-email: Dmytro Leshchenko <dima.leschenko1998@gmail.com>
License-Expression: MIT
License-File: LICENSE.md
Keywords: action,manager,pipeline,pipelines,step,workflow,workflows,workflows-manager
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: System
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: pyyaml==6.0.2
Description-Content-Type: text/markdown

# Workflows Manager

<!-- [START BADGES] -->
<!-- Please keep comment here to allow auto update -->
[![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://github.com/dl1998/workflows-manager/blob/main/LICENSE.md)
[![Language](https://img.shields.io/badge/Language-Python-blue?style=for-the-badge&logo=python)](https://www.python.org/)
[![PRs Welcome](https://img.shields.io/badge/PRs-Welcome-brightgreen.svg?style=for-the-badge)](https://github.com/dl1998/workflows-manager/pulls)
[![TestPyPi 0.4.1](https://img.shields.io/badge/TestPyPi-0.4.1-brightgreen.svg?style=for-the-badge)](https://test.pypi.org/project/workflows-manager/)
[![PyPi 0.4.1](https://img.shields.io/badge/PyPi-0.4.1-brightgreen.svg?style=for-the-badge)](https://pypi.org/project/workflows-manager/)
[![Coverage 99%](https://img.shields.io/badge/Coverage-99%25-green.svg?style=for-the-badge)](https://codecov.io/gh/dl1998/workflows-manager)
[![dl1998/workflows-manager](https://img.shields.io/badge/Docker-dl1998%2Fworkflows--manager-blue?style=for-the-badge&logo=docker&color=%232496ED)](https://hub.docker.com/repository/docker/dl1998/workflows-manager)
<!-- [END BADGES] -->

Workflows manager is a tool that allows you to manage your workflows in a more efficient way. It provides a simple and
intuitive way to create a new workflow from the defined steps. You can create a new workflow by reusing the existing
steps or workflows.

## Official Documentation

The official documentation is available on [GitHub Pages](https://dl1998.github.io/workflows-manager/).

## Installation

You can install workflows manager using pip. It is recommended to use pip together with virtual environment (venv).

```shell
python3 -m pip install workflows-manager
```

## Usage

To run the workflows manager, you can use the following command:

```shell
workflows-manager -c <path_to_workflows_configuration> run -w <workflow_name>
```

More options are available, you can check them using the following command:

```shell
workflows-manager --help
```

Or, you can check [the official documentation](https://dl1998.github.io/workflows-manager/latest/setup/cli/) for more
information.
