Warning: Python newbie.
I have two Python
projects A and B.
A depends on B.
I'm using PyBuilder
to build both projects and I am struggling to link B into A.
My thoughts are I somehow need to install project B via pip
or some-other method in the same way I would install pandas
.
Then in A, declare B as a module dependency and I can then import it.
Does this make sense in the world of Python
? I have a setup.py for each project but they prob need some changes or PyBuilder
needs to be told that module B is located in XYZ private git repo. When I run pyb --debug
I can see all dependencies are looked for in a location where by module is not present.
Please advise, thanks.