On 14 Set, 18:49, Kevin Dangoor <
dang...@gmail.com> wrote:
> Sorry for the delay on this. I've been really behind on things due to
> various non-computer-related-stuff and I'm only just catching up.
>
> On Sat, Sep 12, 2009 at 3:46 AM, Francesc <
fal...@gmail.com> wrote:
> > Yeah. The thing that I don't understand is where a module like
> > 'setuptools.command.sdist' is converted into a task instance. I don't
> > see the part of the code that does that.
>
> Ahh, this question actually leads me to guess at what the problem is.
>
> paver.setuputils.install_distutils_tasks is responsible for turning all of
> the distutils/setuptools commands into Paver tasks.
>
> You can call that directly, or you can use the setup() function in there
> (which also makes a pavement look like a distutils script).
>
> If you're not calling install_distutils_tasks or setup(), then you won't
> have the sdist task available.
Ahh, nice! Calling install_distutils_tasks() did the trick. Maybe