Hi,
I'm trying to create a custom Airflow sensor.
I've created a plugin in the /plugins GCS folder and tested the plugin and it worked well.. up until the point I needed to add some external dependencies.
The problem is that I was unable to add external dependencies as I did with DAGs.
I tried adding a /plugins/dependencies directory and importing a dependency it like so:
from dependencies.test import hello
This pattern works well for DAGs but I get a "module not found" error when I do that in the plugin.
What is the correct way to import local python dependencies?
Thanks