I'm trying to pack my app which uses zodb.
one of the dependences are zope.interface and zope.event which are 
distributed in two different eggs.
when i pack the app i get an error saying that zope.event can't be found 
though is importable.
in my distribution i have:
site-packages/
      zope.interfacexxx.egg/
           zope/
              __init__.py

      zope.eventxxx.egg/
           zope/
              __init__.py 
              event/

and in zope.event.egg/zope/__init__.py it has this line 
*__import__('pkg_resources').declare_namespace(__name__)*
   
i know what is for, i should try to make available the path of zope.event 
and zope.interface for pyinstaller.
i tried writing a hook but i'm not able to make it work.
when i write a hook for zope (hook-zope.py) pyinstaller picks it up, but 
when i write one for zope.event (hook-zope.event.py) it never gets called. 
Also i dont know what's the best way to solve this. i've tried reading the 
other hooks but i'm unsure,
can someone please help me a little?

-- 
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/-/QF8DC-N2F-gJ.
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