I'm trying to package up a Pyramid App, and running onto issues with various run-time magic that requires that the package be there in its entirely.
(the package of my app)
Back in the day, I did similar work with py2app, and it was really easy to tell it to simply include a package as is.
Is there a way to do that with PyInstaller?
From the docs, it seems it's expected to include eggs as is, but I tried installing my package as an egg, and then run pyinstaller, and no luck.
Any ideas?