Re: how to create a pip package

2009-11-11 Thread Wolodja Wentland
On Tue, Nov 10, 2009 at 20:25 -0800, Phlip wrote: On Nov 10, 3:11 pm, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: The pip requirement file would contain the following line: -e git+git://example.com/repo.git#egg=rep Let me ask it like this. What happens when a user types..?

Re: how to create a pip package

2009-11-11 Thread srid
On Nov 10, 8:25 pm, Phlip phlip2...@gmail.com wrote: On Nov 10, 3:11 pm, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: 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 Let me ask it like

Re: how to create a pip package

2009-11-10 Thread Wolodja Wentland
On Mon, Nov 09, 2009 at 19:48 -0800, Phlip wrote: I have a single file that I need my crew to pip install. Where do you plan to host this file? Will it be available on PiPy? When I Google for how to create a pip package I don't hit anything. Of course that info is out there; I can't seem

Re: how to create a pip package

2009-11-10 Thread Phlip
On Nov 10, 1:54 am, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: http://docs.python.org/library/distutils.html#module-distutils http://packages.python.org/distribute/ ktx... now some utterly retarded questions to prevent false starts. the distutils page starts with from

Re: how to create a pip package

2009-11-10 Thread Floris Bruynooghe
On Nov 10, 2:30 pm, Phlip phlip2...@gmail.com wrote: On Nov 10, 1:54 am, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: http://docs.python.org/library/distutils.html#module-distutils http://packages.python.org/distribute/ ktx... now some utterly retarded questions to prevent false

Re: how to create a pip package

2009-11-10 Thread Wolodja Wentland
On Tue, Nov 10, 2009 at 06:30 -0800, Phlip wrote: On Nov 10, 1:54 am, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: http://docs.python.org/library/distutils.html#module-distutils http://packages.python.org/distribute/ ktx... now some utterly retarded questions to prevent false

Re: how to create a pip package

2009-11-10 Thread Phlip
    from setuptools import setup, find_packages It will be enough to use the method outlined in the distutils documentation. Setuptools is a third-party library that used to be the de-facto standard for Python packaging. I don't want to go into detail why setuptools might not be the best

Re: how to create a pip package

2009-11-10 Thread Phlip
except... will pip pull from a simple GitHub repo? or do I need to package something up and put it in a pythonic repository somewhere? -- http://mail.python.org/mailman/listinfo/python-list

Re: how to create a pip package

2009-11-10 Thread Wolodja Wentland
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

Re: how to create a pip package

2009-11-10 Thread Phlip
On Nov 10, 3:11 pm, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: The pip requirement file would contain the following line: -e git+git://example.com/repo.git#egg=rep I thought pip didn't do eggs. did I read a stale blog? I hope this answers your questions :-D we are so close!

Re: how to create a pip package

2009-11-10 Thread Phlip
On Nov 10, 3:11 pm, Wolodja Wentland wentl...@cl.uni-heidelberg.de wrote: 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 Let me ask it like this. What happens when a user types..? sudo pip

Re: how to create a pip package

2009-11-10 Thread Phlip
-e git+git://example.com/repo.git#egg=rep Okay. -e is an argument to pip install. If anyone said that, I overlooked it. So, yes I can rip from github, just with a longer command line, for now. Tx! -- http://mail.python.org/mailman/listinfo/python-list

how to create a pip package

2009-11-09 Thread Phlip
Py hont: I have a single file that I need my crew to pip install. When I Google for how to create a pip package I don't hit anything. Of course that info is out there; I can't seem to pick up the trail of breadcrumbs to it. While I'm looking, could someone push the link in here? Purely

Re: how to create a pip package

2009-11-09 Thread Gabriel Genellina
En Tue, 10 Nov 2009 00:48:26 -0300, Phlip phlip2...@gmail.com escribió: I have a single file that I need my crew to pip install. When I Google for how to create a pip package I don't hit anything. Of course that info is out there; I can't seem to pick up the trail of breadcrumbs to it. See