Metadata-Version: 2.1
Name: helloheart-airflow-utils
Version: 0.2.3
Summary: Apache Airflow Utilities
Home-page: https://github.com/Hello-Heart/helloheart-airflow-utils
License: MIT
Author: Ory Jonay
Author-email: ory.jonay@helloheart.com
Requires-Python: >=3.6.2,<3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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: apache-airflow (<=1.10.15)
Requires-Dist: markupsafe (<=2.0.1)
Requires-Dist: wtforms (<=2.3.3)
Description-Content-Type: text/markdown

# HelloHeart Airflow Utilities

Useful utilities for Apache Airflow, courtesy of HelloHeart.

It supports Python 3.6 - 3.8.

## Installation

### Install latest release
Latest release are uploaded to PyPi, install using pip:

```bash
pip install helloheart-airflow-utils
```

### Install from source to use latest development version
Install latest development version, clone the repository and install using Poetry:

```bash
git clone https://github.com/Hello-Heart/helloheart-airflow-utils
cd helloheart-airflow-utils
poetry install
```

## Running the tests

### Single Python version testing
For testing a single Python version, use pytest (after installing from source):

```bash
pytest tests
```

### Multiple Python versions testing
For testing multiple Python versions, use tox:

```bash
tox
```
