[00:52:37] <pikajude> also, is there a way to take a requirements.txt and convert it into setup.py's requirements list in a way that preserves git urls?
[00:57:50] <nedbat> pikajude: some people read the requirements.txt file in their setup.py to make the install_requires
[00:58:05] <pikajude> i do that also but it just gives me a requirement for the package name
[00:58:12] <pikajude> setup.py doesn't know where to find the github URLs
[00:59:27] <nedbat> pikajude: what does your install_requires look like?
[01:00:16] <pikajude> basically like this http://stackoverflow.com/questions/14399534/how-can-i-reference-requirements-txt-for-the-install-requires-kwarg-in-setuptool#answer-16624700
[01:05:32] <nedbat> pikajude: so there are git urls in your list. why do you say "it gives me a requirement for the package name"?
[01:06:05] <pikajude> i mean i end up with "github-package-master" in my install_requires list
[01:06:21] <pikajude> and there seems to be no way to retrieve what should be put in dependency_links
[01:07:10] <nedbat> pikajude: that would be up to the code that reads requirements.txt, right? That's your code?
[16:36:25] <MajObviousman> is any free and able to help me with a versioning issue with pip? Pip 1.1 is finding and installing more packages than pip 1.0 for the same requirements.txt file
[18:03:25] <_habnabit> is there a way to tell pip to, if installing from a local directory, to either make an sdist and unpack that or not copy the entire local directory before installing?
[18:07:48] <ionelmc> _habnabit: you mean "use the local build dir instead of /tmp/whatev" ?
[19:55:17] <dcrosta> hi all -- I got the note about externally hosted PyPI files today. it seems the script which checked that got confused by the fact that my docstring mentions how to install development snapshots from github. the actual released versions are hosted in PyPI itself. do I need to do anything, or can I ignore the email?
[19:56:47] <dcrosta> dstufft ^ since the email was "from" you
[19:57:12] <dstufft> dcrosta: can you post your email
[20:00:36] <dstufft> the tl;dr is if you do nothing, in 3 months time pip won't be able to find that one file anymore
[20:01:01] <dcrosta> so if I'm reading this right, the real versions will still continue to install, but that pip command I put in the long_description won't be accurate or work any more?
[20:01:38] <dstufft> literally executing ``pip install http://github.com/dcrosta/flask-pymongo/tarball/master#egg=Flask-PyMongo-dev`` will still work
[20:01:58] <dcrosta> just "pip install flask-pymongo" wouldn't traverse the github link?
[20:02:36] <dstufft> you can toggle this behavior today by going into your admin for that project and clicking on the "urls" link and then picking the only non deprecated option
[20:02:48] <dstufft> (which will also prevent you from getting another email in nov)
[20:57:40] <andrewwatts> hello, i'm migrating some internal packages to pip and getting an error when using `pip install .` but i get no error with `python setup.py install`, it has to do with referencing data_files in a parent directory, here is a simplified setup.py example: https://dpaste.de/zsD1#L11 and example of output from running `pip install .`
[20:57:59] <andrewwatts> is this a bug with pip or expected and something i should work around?
[21:00:58] <andrewwatts> sorry the output is here: https://dpaste.de/uCLA