Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
# registry key(s) where WAPT will find how to remove the application(s)
uninstallkey = []
def install():
print('installing tis-conemu')
if iswin64():
uninstallkey.append('{BBEE9E16-A9A2-4783-848D-7653C7399984}')
run('ConEmuSetup.150813c.exe /p:x64 /qn"')
else:
uninstallkey.append('{7C272E55-893B-4E07-B2DF-40665A89C252}')
run('ConEmuSetup.150813c.exe /p:x86 /qn"')
add_to_system_path(makepath(programfiles,'ConEmu','ConEmu.exe'))
filecopyto("ConEmu.xml",makepath(programfiles,'ConEmu'))