Martin,

I created a hook-convert.py file in the Pyinstaller/hooks directory but it 
doesn't seem to be getting called. Imagemagick's convert utility ISNT a 
Python module so it never gets imported in my script but called from 
subprocess instead. How do I get the hook-convert.py file to get called? Is 
there a standard method are adding standalone utility apps and their 
dependencies in Pyinstaller that aren't Python packages?

My COLLECT looks like this:
coll = COLLECT(exe,
               a.binaries,
               [('ui/%s.ui' % APP_NAME, './ui/%s.ui' % APP_NAME, 'DATA')],
               [('convert', './convert', 'DATA')],

Thanks!
-Scott

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/pyinstaller/-/o8dxDFeiUMcJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

Reply via email to