Can I bind a local dependency of a .whl file inside a python disk distribution file?

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?

+5
source share

Source: https://habr.com/ru/post/1215211/


All Articles