Re: Fwd: Re[2]: [Sqlalchemy-users] SQLAlchemy and py2exe Instructions

2006-05-08 Thread Gambit
list) > -- Forwarded message -- > From: Rick Morrison <[EMAIL PROTECTED]> > Date: May 8, 2006 2:08 PM > Subject: Re: Re[2]: [Sqlalchemy-users] SQLAlchemy and py2exe Instructions > To: Gambit <[EMAIL PROTECTED]> > Hey Gambit, > I'm using cx

Fwd: Re[2]: [Sqlalchemy-users] SQLAlchemy and py2exe Instructions

2006-05-08 Thread Rick Morrison
(copying to the list)-- Forwarded message --From: Rick Morrison <[EMAIL PROTECTED]> Date: May 8, 2006 2:08 PMSubject: Re: Re[2]: [Sqlalchemy-users] SQLAlchemy and py2exe InstructionsTo: Gambit <[EMAIL PROTECTED]> Hey Gambit, I'm using cx_Freeze, which I guess doesn't do as good of

Re[2]: [Sqlalchemy-users] SQLAlchemy and py2exe Instructions

2006-05-08 Thread Gambit
Hey Rick, The approach I used seems to have picked up the sqlalchemy/databases/*.pyc files, it's the default dependency checking that doesn't pick those up. Having the symlink in the source directory also prevents duplicate files from being acquired. What was the commandline that you used, if you

Re: [Sqlalchemy-users] SQLAlchemy and py2exe Instructions

2006-05-07 Thread Rick Morrison
Also be aware that the database imports (that is both database-specific support within SA such as "mysql.py", "mssql.py" etc., as well as the DBAPI files used beneath the covers)   are loaded dynamically by SA, and therefore won't be detected by the dependency checkers in py2exe and cxFreeze. You'

[Sqlalchemy-users] SQLAlchemy and py2exe Instructions

2006-05-07 Thread Gambit
Hey All, Spent a little time today trying to package up my application for it's first round of test users and such. Put it together with the py2exe (and, eventually, will probably use 'freeze' for the linux side) and immediately ran into the problem of py2exe not understanding .egg's. Sigh. The