We have a repository app-lib that is used as sub-module in 4 other repos and in each I have to add all dependencies for the sub-module. So if I add/remove a dependency in app-lib I have to adjust all other repositories. I there a way to tell Poetry to install the root repo dependencies and the ones in the sub-module?
The my-package = { path = "../my-package/dist/my-package-0.1.0.tar.gz" }
parameter seems only to work for files. And I don't know if it's good design to store all wheels in app-lib.
I kind of want to merge the root toml file dependencies and the sub-module toml file dependencies and then install them.
Thanks