forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AIRFLOW-1476] add INSTALL instruction for source releases
Closes apache#2492 from mistercrunch/install
- Loading branch information
1 parent
8a2d248
commit da76ac7
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 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 . | ||
|
||
# install the release | ||
python setup.py install |