> On Mon, Oct 12, 2009 at 5:55 PM, mgemmill <
mark.gemm...@gmail.com> wrote:
> > For example, I have task:
>
> > @task
> > @needs('setuptools.command.bdist_egg',
> > 'aedilis.paving.tools.ftp_egg')
> > def dist_my_egg():
> > print('Completed \'dist_my_egg\' build')
>
> > I can run this from the command line with the --exclude-source-file
> > option:
>
> > paver dist_my_egg --exclude-source-file
>
> > But is there a way I can insert this option as a default within my
> > task so I don't have to bother typing it at the command line? (i.e.
> > just run "paver dist_my_egg") I'm sure this is likely to be something
> > obvious, but I'm relatively new to the world of Python packaging and I
> > can't seem to find a reference in the documentation or figure it out
> > from the source code. Any help would be greatly appreciated.
>
> Hmm, that's not obvious at all, but seems like a nice idea.
>
> I hate to say it, but I can't offhand think of any pleasant way to do
> this... You *could* do something like: