Also just wanted to let you know that this DOES compile into a single EXE very easily. it ends up being around 8.3mb.
The command to generate it is something like this:
python c:\python27\pyinstaller-2.0\pyinstaller.py specfile.spec
Where specfile.spec is:
# -*- mode: python -*-
a = Analysis(['C:\\Python27\\goxgui\\goxgui\\application.py'],
pathex=['C:\\Python27\\goxgui\\goxtool', 'C:\\Python27\\Lib\\site-packages\\Crypto\\Cipher\\'],
hiddenimports=['AES','goxapi'], hookspath=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
a.dependencies,
name=os.path.join('dist', 'goxgui.exe'),
debug=False,
strip=None,
upx=True,
console=False)