Roger Lovelock wrote:
> Have had success with py2exe so long as I add my bizObj as a data file, and 
> have also successfully used inno setup to create a single file install that 
> is a 1/4 of the size of the dist directory.  ButI have had no success trying 
> to get the bizObj code included in the exe where it should be. Any 
> suggestions?

This works for me:

...
{"packages": ["encodings", "wx", "ui", "biz", "db"],
...

but it would require your biz directory to be a Python package, which means it 
has an 
__init__.py file (can be empty).

You also may find you need to explicitly import your bizobjs in the __init__.py 
file, 
such as:

from customers import BizCustomers
from vendors import BizVendors

Paul


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]

Reply via email to