ppackage: excluding modules

Hello, I’ve these files and directories:

/
    main.py
    MyModule/
        __init__.py
        MyModule.py

I’d like to obtain a p3d file containing the file main.py and a separate package for the module MyModule. But, when I submit the command panda3d packp3d_dev.p3d -o myPack.p3d, this includes inside the p3d file the module MyModule; indeed if I submit multify -t -f myPack.p3d I obtain:

MyModule/MyModule.pyo
MyModule/__init__.pyo
main.pyo
p3d_info.xml

This is the expected behaviour (packp3d should import the requested packages), but I’d like to divide the p3d pack from the module, providing a separate module. How can I exclude that module from the p3d file? Very thanks!

I’m trying to use ppackage in order to make a p3d file which excludes a specific module (but which loads it from a package). I can exclude the module, but I can’t specify how to require it. I’m following this example, since I’ve an analogous situation (in the example there is a package named somePackage which is required).

How can I specify that somePackage must be retrieved from a specific site (the one which is hosting my packages)? Thanks!

Solved, there’s the kwarg host.