One possible solution could be to put a mth suffixed file in your sys.prefix directory.
>>> import sys
>>> sys.prefix
'F:\\F-ProgramFiles\\Python-3.2.3'
>>>
So in my case the directory is 'F:\F-ProgramFiles\Python-3.2.3'. I can create a file named forexample
'mymodules.mth' in this directory (with the suffix .mth) which contains at least two lines with the following syntax:
<module1 name without module filename suffix>
<absolute file path to your module1 file>
<module2 name without module filename suffix>
<absolute file path to your module2 file>
<module3 name without module filename suffix>
<absolute file path to your module3 file>
.
.
.
After that if you restart a new python session, normally you should have the visibility to your module and
being able to import your desired module(s).
Regards,
Dariyoosh