<div dir="ltr"><div>Hi Thomas,</div><div><br></div>Besides figuring out where the repo url is, you have a second problem to solve:<div><br></div><div>The command `pip install -e some/path` already has something unpacked/checked-out in `some/path` to install in development mode.</div><div><br></div><div>In which folder would the command `pip install -e some.project` unpack/checkout `some.project`?</div><div><br></div><div>Cheers,</div><div><br></div><div>Leo</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 21 March 2017 at 05:13, Thomas Güttler <span dir="ltr"><<a href="mailto:guettliml@thomas-guettler.de" target="_blank">guettliml@thomas-guettler.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">AFAIK it is impossible to do this:<br>
<br>
 pip install -e foo<br>
<br>
You need to use the repo URL up to now:<br>
<br>
 pip install -e git+<a href="https://example.com/repos/foo#egg=foo" rel="noreferrer" target="_blank">https://example.com/repos/<wbr>foo#egg=foo</a><br>
<br>
AFAIK the fast/short implementation of "pip install -e foo" does<br>
not work, since pip can't access metadata of package foo without downloading<br>
the whole package. Or am I wrong - is this possible?<br>
<br>
But how cares for useless downloaded bytes? I don't care.<br>
<br>
It should be possible to download the whole package "foo",<br>
then look at the metadata which is provided by it. Take<br>
the canonical repo url, and then get the source from<br>
the repo.<br>
<br>
AFAIK there is no official way to define a "Canonical Repo URL" up to now.<br>
<br>
If I want to provide it for my custom packages. How could I do this?<br>
<br>
Regards,<br>
  Thomas Güttler<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
Thomas Guettler <a href="http://www.thomas-guettler.de/" rel="noreferrer" target="_blank">http://www.thomas-guettler.de/</a><br>
______________________________<wbr>_________________<br>
Distutils-SIG maillist  -  <a href="mailto:Distutils-SIG@python.org" target="_blank">Distutils-SIG@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/distutils-sig" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/distutils-sig</a><br>
</font></span></blockquote></div><br></div>