Metadata-Version: 2.3
Name: workflows-manager
Version: 0.1.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: MIT License
        
        Copyright (c) 2024 Dmytro Leshchenko
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
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
Provides-Extra: test
Requires-Dist: coverage==7.6.4; extra == 'test'
Requires-Dist: pytest==8.3.3; extra == 'test'
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)
[![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.1.1](https://img.shields.io/badge/TestPyPi-0.1.1-brightgreen.svg?style=for-the-badge)](https://test.pypi.org/project/workflows-manager/)
[![PyPi 0.1.1](https://img.shields.io/badge/PyPi-0.1.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)
<!-- [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 <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.
