X-Git-Url: https://scm.cri.mines-paristech.fr/git/minwii.git/blobdiff_plain/b4d2fe93ad71b4328a1bc492f8a3b1eec8b64212..79aca379ed6dffa4d71d66f513a973d2e3470c5a:/setup_win_exe.py diff --git a/setup_win_exe.py b/setup_win_exe.py index de4ccd9..c903cd9 100755 --- a/setup_win_exe.py +++ b/setup_win_exe.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # This will create a dist directory containing the executable file, all the data # directories. All Libraries will be bundled in executable file. # @@ -30,10 +31,10 @@ class pygame2exe(py2exe.build_exe.py2exe): #This hack make sure that pygame defa class BuildExe: def __init__(self): #Name of starting .py - self.script = "MyApps.py" + self.script = "src/minwii/start_win.py" #Name of program - self.project_name = "MyApps" + self.project_name = "MINWii" #Project url self.project_url = "about:none" @@ -138,19 +139,23 @@ class BuildExe: 'icon_resources': [(0, self.icon_file)], 'copyright': self.copyright }], - options = {'py2exe': {'optimize': 2, 'bundle_files': 1, 'compressed': True, \ - 'excludes': self.exclude_modules, 'packages': self.extra_modules, \ - 'dll_excludes': self.exclude_dll} }, + options = {'py2exe': {#'optimize': 2, + 'bundle_files': 1, + #'compressed': True, + 'excludes': self.exclude_modules, + 'packages': self.extra_modules, + 'dll_excludes': self.exclude_dll} + }, zipfile = self.zipfile_name, data_files = extra_datas, dist_dir = self.dist_dir ) - if os.path.isdir('build'): #Clean up build dir - shutil.rmtree('build') + #if os.path.isdir('build'): #Clean up build dir + # shutil.rmtree('build') if __name__ == '__main__': if operator.lt(len(sys.argv), 2): sys.argv.append('py2exe') BuildExe().run() #Run generation - raw_input("Press any key to continue") #Pause to let user see that things ends + #raw_input("Press any key to continue") #Pause to let user see that things ends