deployment - How to package shared internal Python module with wheel? -
we have separate python package (shared modules) build ourselves stored in our internal git repository. need use package in python project/application.
in development setting, can run pip install -e <module/path>
, module can used in other python applications.
how tell wheel
install these internal shared modules when deploying it?