# -*- mode: python -*- #----------------------------------------------------------------------------- # Copyright (c) 2013, PyInstaller Development Team. # # Distributed under the terms of the GNU General Public License with exception # for distributing bootloader. # # The full license is in the file COPYING.txt, distributed with this software. #----------------------------------------------------------------------------- __testname__ = 'test_matplotlib' if sys.platform == 'win32' and sys.version_info[:2] >= (2, 6): manifest = ''' ''' else: manifest = None a = Analysis([__testname__ + '.py']) pyz = PYZ(a.pure) exe = EXE(pyz, a.scripts, exclude_binaries=1, name=__testname__ + '.exe', debug=False, strip=False, upx=False, console=True, manifest=manifest ) coll = COLLECT(exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=False, name=__testname__)