On Tue, Nov 10, 2009 at 13:09 -0800, Phlip wrote: > will pip pull from a simple GitHub repo? or do I need to package > something up and put it in a pythonic repository somewhere?
I don't quite understand, but would say: both ;-) You can't tell pip to pull from arbitrary git repositories, but only from those that contain the packaging code as outlined in the distutils documentation. These git repositories do *not* have to be hosted on pypi. You should however be able to do the following: $ git clone git://example.com/repo.git $ cd repo $ python setup.py install The pip requirement file would contain the following line: -e git+git://example.com/repo.git#egg=rep I hope this answers your questions :-D -- .''`. Wolodja Wentland <wentl...@cl.uni-heidelberg.de> : :' : `. `'` 4096R/CAF14EFC `- 081C B7CD FF04 2BA9 94EA 36B2 8B7F 7D30 CAF1 4EFC
signature.asc
Description: Digital signature
-- http://mail.python.org/mailman/listinfo/python-list