Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 470 Bytes

BUILD.md

File metadata and controls

18 lines (14 loc) · 470 Bytes

Build from source

  1. clone this repo, hop into the src dir and tweak the codebase as required

  2. remove any existing build artifacts

    rm -rf build/ dist/ airflow_xtended_api.egg-info/
  3. build the codebase

    python3 setup.py sdist bdist_wheel
  4. (optional) upload build artifacts to testpypi (may require some tweaks in setup.py)

    python3 -m twine upload --repository testpypi dist/*