~jacksonc/python-packager/devel

« back to all changes in this revision

Viewing changes to Build-Server/pyinstaller/windows-2.6/buildtests/test-relative-import.spec

  • Committer: Jackson Cooper
  • Date: 2010-04-13 03:14:06 UTC
  • Revision ID: jackson@jacksonc.com-20100413031406-415e68ruamsfc5se
Added pyinstaller for Windows

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- mode: python -*-
 
2
 
 
3
__testname__ = 'test-relative-import'
 
4
 
 
5
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'),
 
6
              __testname__ + '.py'],
 
7
             )
 
8
pyz = PYZ(a.pure)
 
9
exe = EXE(pyz,
 
10
          a.scripts,
 
11
          a.binaries,
 
12
          a.zipfiles,
 
13
          name = os.path.join('dist', __testname__, __testname__ +'.exe'),
 
14
          debug=False,
 
15
          strip=False,
 
16
          upx=False,
 
17
          console=1 )