I have a Git repository which (among other things) holds Airflow DAGs in airflow directory. I have a clone of the repository besides an install directory of Airflow. airflow directory in Git is pointed to by AIRFLOW_HOME configuration variable.
I would like to allow imports from modules in the repository that are listed outside airflow folder (please see the structure below).
<repo root>
   |_airflow
      |_dags
         |_dag.py
   |_module1
   |_module2
   |_...
So that in dag.py I can do:
from module1 import Module1
Currently, it does not seem possible without tricks like editing sys.path explicitly which is not very elegant and has to be done in each of the dag source files...
Making an installable package out of the module1 is also out of the question.
 
    