Metadata-Version: 2.1
Name: swe-airflow-tools
Version: 0.0.2
Summary: Tools for Apache Airflow Application
Home-page: https://github.com/swe-eng-br/swe-airflow-tools
Author: Eduardo Luiz
Author-email: swe@swe.com.br
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Apache Airflow Tools

Shared tools for Apache Airflow

## Generating distribution archives

Update setuptools from pip:

```
python3 -m pip install --user --upgrade setuptools wheel
```

Generete setup:

```
python3 setup.py sdist bdist_wheel
```

Install Twine:

```
python3 -m pip install --user --upgrade twine
```

Upload files in [Pypi](https://test.pypi.org/account/register/).

```
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
```


