Metadata-Version: 2.1
Name: easyflowutils
Version: 0.2.1
Summary: A utility package for Easy Flow automation
Home-page: https://easyflow.co.il/
Author: Nadav Friedman
Author-email: info@easyflow.co.il
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# EasyFlow Utils

A simple utility package for EasyFlow, demonstrating packaging and distribution.

## Installation
```chatinput
pip install easyflow_utils

```

## Usage

```python
from easyflow_utils import factorial

result = factorial(5)
print(result)  # Output: 120
