I\'m attempting to run PyInstaller on a CLI app I am building in Python using the Click library. I\'m having trouble building the project using PyInstaller. PyInstaller has
The accepted answer didn't work for me. I had to add the egg-info directory via the .spec file.
egg-info
.spec
My call to the Entrypoint function looks like this:
Entrypoint
a = Entrypoint( 'PrintIt', 'console_scripts', 'printit', datas=[('plugins/*.egg', 'plugins/'), ('../PrintIt.egg-info/*', 'PrintIt.egg-info/')])