Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #5092 > unrolled thread

Merge multiple source directories into one package with distutils?

Started byGregory Ewing <greg.ewing@canterbury.ac.nz>
First post2011-05-11 17:35 +1200
Last post2011-05-11 17:35 +1200
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  Merge multiple source directories into one package with distutils? Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2011-05-11 17:35 +1200

#5092 — Merge multiple source directories into one package with distutils?

FromGregory Ewing <greg.ewing@canterbury.ac.nz>
Date2011-05-11 17:35 +1200
SubjectMerge multiple source directories into one package with distutils?
Message-ID<92ulgfFmukU1@mid.individual.net>
Is there a straightforward way to tell distutils to merge
.py files from more than one source directory into a single
package when installing?

PyGUI consists of some generic modules and some platform
specific ones, that conceptually all live at the same level
within a single package. In the source, there is a subdirectory
for each platform containing the platform-dependent files.
When run from the source, __path__ manipulation is done to
make the appropriate platform subdirectory appear to be part
of the main package.

However, when installing, I would like to just copy the
generic files plus the relevant platform ones directly into
the destination package directory, so that __path__ fiddling
is not needed. This is so that bundling tools such as py2app
and py2exe can find all the relevant modules without requiring
any hacking.

But distutils doesn't appear to support this. Unless I'm
missing something, you only get to specify one source directory
for each package.

Anyone have any ideas for getting around this?

-- 
Greg

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web