I want to link the local .whl distribution file inside another wheel file as a dependency.
dist_pkg1.whl (link to the wheel file, is a local file)
dist_pkg2.whl depends on dist_pkg1.whl, and I need to embed dist_pkg1.whl inside dist_pkg2.whl, so whenever I install dist_pkg1.whl, dist_pkg2.whl should be installed as a dependency. Is there a way I can figure this out?
source share