Metadata-Version: 2.1
Name: swe-airflow-tools
Version: 0.0.1
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
Description: # 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 Test](https://test.pypi.org/account/register/).
        
        ```
        python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
        ```
        
        Install and test your package:
        
        ```
        python3 -m twine upload --repository-url https://pypi.org/legacy/ dist/*
        ```
        
        Upload files in [Pypi](https://pypi.org/account/register/) and Install from pip:
        
        ```
        python3 -m pip install swe-airflow-tools
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
