proud-planet-36170
04/09/2024, 8:04 PM/appA
pyproject.toml:
module_b = { path = "../module-b" }
/module-b
/module_b
__init__.py
pyproject.toml
appA has python_aws_lambda_function
and I want it to package up module-b
but it's not doing that automatically
I added python_aws_lambda_function(dependencies=["module-b/module_b"])
however the .zip ends up with module-b/module_b
instead of just module_b
Not sure the correct way to get the appA lambda to package up the dependent modulebetter-van-82973
04/09/2024, 8:06 PMmodule-b
(the parent) as a source root?proud-planet-36170
04/09/2024, 8:18 PMproud-planet-36170
04/09/2024, 8:21 PM