On Tue, Jun 22, 2010 at 11:04 AM, Michael Foord <[email protected]> wrote: > Hey all, > > I have a single module I distribute and I would *like* to include the tests > (a package) and docs (sphinx generated - single directory) in the > distribution - but not have them "installed" by setup.py.
By distribution, you mean the tarball generated by sdist ? In that case, just use the MANIFEST.in, and ensure the doc is build when doing a sdist. You could for example use paver to do that. cheers, David _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
