I want to bundle a local distribution .whl file inside another wheel file as a dependency.
dist_pkg1.whl (referenced wheel file,is a local file)
dist_pkg2.whl is dependent on dist_pkg1.whl, and I need to embed dist_pkg1.whl inside dist_pkg2.whl, so that, whenever I install dist_pkg1.whl, dist_pkg2.whl should be installed as a dependency. Is there any way I can acheve this?