[Twisted-Python] subpackages not getting installed
Why? This below workaround make my software working again. I assume I must be missing something, otherwise I don't see the point of disabling packages without giving a command line switch to force a full install. (I did a quick search but I couldn't find a way to install without backing out the ignore switch) If this is just work-in-progress code feel free to ignore this email of course. Thanks. Index: setup.py =================================================================== --- setup.py (revision 12903) +++ setup.py (working copy) @@ -92,9 +92,9 @@ # build stuff packages=dist.getPackages(util.sibpath(__file__, 'twisted'), - ignore=dist.twisted_subprojects), + ignore=()), data_files=dist.getDataFiles(util.sibpath(__file__, 'twisted'), - ignore=dist.twisted_subprojects), + ignore=()), detectExtensions=detectExtensions, scripts= [ 'bin/manhole', 'bin/mktap', 'bin/twistd',
On Wed, 2005-01-26 at 09:54 +0100, Andrea Arcangeli wrote:
If this is just work-in-progress code feel free to ignore this email of course.
Yes, 2.0 is going to have separate downloads for separate packages (along with a one-in-all download, of course), so the distutils code is currently work in progress.
participants (2)
-
Andrea Arcangeli
-
Itamar Shtull-Trauring