I have a repo like ```/appA pyproject.toml: ...
# general
p
I have a repo like
Copy code
/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 module
1
b
Can you add
module-b
(the parent) as a source root?
p
Ahh yeah, I think that's what I needed
Thanks!!
🙌 1