Firebase python cloud function is unable to import local package
I try to deploy a firebase cloud function via Firebase cli. My folder structure is: functions |--localpackage | |-__init__.py | |-constants.py |-main.py |-requirements.txt An I try to import constants.py via from localpackage.constants import *. I guess thats the way it's…