<div dir="ltr">The goal in this approach would be to place headers, and binaries in the same location as if they were installed with a separate package.</div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, May 15, 2017 at 7:29 PM, Sylvain Corlay <span dir="ltr"><<a href="mailto:sylvain.corlay@gmail.com" target="_blank">sylvain.corlay@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<div><br></div><div>When distributing python packages that depend on non-python components, the typical way of doing this with general-purpose package managers (linux distributions, conda) is to place binaries, headers, configuration and other artefacts for these components in their respective natural locations under the installation prefix (e.g. PREFIX/bin/, PREFIX/include/, PREFIX/etc/,  PREFIX/share/).</div><div><br></div><div>Now, if I have a python package that depends on such a thing (e.g. pyzmq vs zmq), the pypi wheel for pyzmq will vendor a binary for libzmq as package data.</div><div><br></div><div>For the case of the header files, there is the distutils `install_headers` directive, but the target directory is (typically) under PREFIX/include/PythonX.Y, which is probably only a good choices for headers of a C extension linked with this specific python installation.</div><div><br></div><div>Would it make sense, when vendoring packages packages that don't depend on the python version in a wheel to use `data_files` instead, and target respectively the `bin`, `include`, `etc` and `share` subdirectories of the prefix?</div><div><br></div><div>Specifically, for the headers, one could do</div><div><br></div><div><br></div><div><div><font face="monospace, monospace">    data_files      = [</font></div><div><font face="monospace, monospace">        ('include/foobar', [list of the foobar header files])),</font></div><div><font face="monospace, monospace">    ],</font></div></div><div><br></div><div>Note: I was just using zmq as an example.</div><div><br></div><div>Thanks,</div><div><br></div><div>Sylvain</div><div><br></div></div>
</blockquote></div><br></div>