Commit 065300f0 authored by Guillaume Seguin's avatar Guillaume Seguin

Import release scripts for Windows from Kliment

parent 3d4c191e
d:\python27\python.exe setup_win.py py2exe -v
xcopy images dist\images\ /Y /E
xcopy locale dist\locale\ /Y /E
xcopy Slic3r dist\Slic3r\ /Y /E
copy MSVCP90.DLL dist\
pause
from distutils.core import setup
setup(windows = [{"script": "pronterface.py", "icon_resources": [(1, "P-face.ico")]},
{"script": "plater.py", "icon_resources": [(1, "plater.ico")]},
],
console = [{"script": "pronsole.py", "icon_resources": [(1, "pronsole.ico")]},
],
options = {"py2exe": {"bundle_files": 1,
"dll_excludes": ["w9xpopen.exe"],
"compressed": 1,
"excludes": ['_ssl', 'pickle', 'calendar', 'Tkconstants', 'Tkinter', 'tcl', 'email']
}
}
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment