~jacksonc/python-packager/devel

« back to all changes in this revision

Viewing changes to Build-Server/pyinstaller/windows-2.6/buildtests/.svn/text-base/test6.spec.svn-base

  • 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__ = 'test6'
 
4
 
 
5
a = Analysis(['../support/_mountzlib.py', 'test6.py'],
 
6
             pathex=[])
 
7
pyz = PYZ(a.pure)
 
8
exe = EXE(pyz,
 
9
          a.scripts,
 
10
          exclude_binaries=1,
 
11
          name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'),
 
12
          debug=0,
 
13
          console=1)
 
14
coll = COLLECT( exe,
 
15
               a.binaries,
 
16
               name=os.path.join('dist', __testname__),)