Re: pip and distutils

2013-02-02 Thread Kwpolska
On Mon, Jan 28, 2013 at 10:31 PM, Vraj Mohan wrote: > I have created a source distribution using distutils which specifies > external packages using: > > setup( > ..., > requires = ['Foo (>= 0.7)', 'Bar (>= 2.4.5)'], > ... > ) > > When I use pip to install this distribution

pip and distutils

2013-01-28 Thread Vraj Mohan
I have created a source distribution using distutils which specifies external packages using: setup( ..., requires = ['Foo (>= 0.7)', 'Bar (>= 2.4.5)'], ... ) When I use pip to install this distribution, I find that it does not automatically install the packages Foo and Ba