I think you could solve this by doing some hacking:
- Take a look at the zipextimporter module in py2exe . It helps with importing pyd-files from a zip.
- Using that, you might be able to load py2exe's output file in your own app/dll using raw python-api. (Use boost::python if you can and want)
- And, since py2exe's outputfile is a zip, you could attach it at the end of your dll, making the whole thing even more integrated. (Old trick that works with jar-files too.)
Not tested, but I think the theory is sound.
Essentially, you reimplement py2exe's output executable's main() in your dll.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…