2017-09-11 16:23:29 +03:00
|
|
|
# INSTALL / BUILD instruction for Apache Airflow (incubating)
|
|
|
|
# fetch the tarball and untar the source
|
|
|
|
|
|
|
|
# [optional] run Apache RAT (release audit tool) to validate license headers
|
|
|
|
# RAT docs here: https://creadur.apache.org/rat/
|
|
|
|
java -jar apache-rat.jar -E ./.rat-excludes -d .
|
|
|
|
|
2018-03-27 17:15:21 +03:00
|
|
|
# [optional] by default one of Apache Airflow's dependencies pulls in a GPL
|
|
|
|
# library. If this is a concern issue (also every upgrade):
|
|
|
|
# export SLUGIFY_USES_TEXT_UNIDECODE=yes
|
|
|
|
|
2017-09-11 16:23:29 +03:00
|
|
|
# install the release
|
|
|
|
python setup.py install
|