Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-18 Thread Thomas Güttler
Am 15.04.2016 um 14:12 schrieb Alex Grönholm: To my knowledge, metadata 2.0 does not have any reliable means to specify a repository URL. So how do you propose to retrieve this information? How to retrieve the information? I don't know. Where is the best place to store meta information for

Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-16 Thread Ionel Cristian Mărieș
On Fri, Apr 15, 2016 at 1:05 PM, Thomas Güttler < guettl...@thomas-guettler.de> wrote: > This: > > pip install -e > ​​ > third-party-foo-lib > > should be the same as: > > pip install -e git+https:///@mydevbranch#egg=third-party-foo-lib > In the first form, how would you tell pip which

Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-15 Thread Alex Grönholm
To my knowledge, metadata 2.0 does not have any reliable means to specify a repository URL. So how do you propose to retrieve this information? 15.04.2016, 13:05, Thomas Güttler kirjoitti: Am 14.04.2016 um 14:31 schrieb Ian Cordasco: On Apr 14, 2016 2:20 AM, "Thomas Güttler"

Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-15 Thread Thomas Güttler
Am 14.04.2016 um 20:50 schrieb John Wong: On Apr 14, 2016 2:20 AM, "Thomas Güttler" > wrote: > Next use case: you use software third-party-foo-lib in your project. > Up to now you use it as package. You find a bug

Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-15 Thread Thomas Güttler
Am 14.04.2016 um 14:31 schrieb Ian Cordasco: On Apr 14, 2016 2:20 AM, "Thomas Güttler" > wrote: > > I think it would be very cool if you could install a package editable > without the repo-url. > > The default repo-url

Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-14 Thread John Wong
> On Apr 14, 2016 2:20 AM, "Thomas Güttler" > wrote: > > Next use case: you use software third-party-foo-lib in your project. > > Up to now you use it as package. You find a bug and want to fix it. > > Wouldn't it be great if you could just type "pip install -e >

Re: [Distutils] pip install -e foo (without Repo URL)

2016-04-14 Thread Ian Cordasco
On Apr 14, 2016 2:20 AM, "Thomas Güttler" wrote: > > I think it would be very cool if you could install a package editable > without the repo-url. > > The default repo-url can be defined in the meta-data of the package. > > Background: I came across this becaus

[Distutils] pip install -e foo (without Repo URL)

2016-04-14 Thread Thomas Güttler
I think it would be very cool if you could install a package editable without the repo-url. The default repo-url can be defined in the meta-data of the package. Background: I came across this becaus saltstack prefers the branch "develop", but most other repos use the branch "master". Yes,