#!/usr/bin/python

import ctypes
import os
from chipwhisperer.analyzer.ui.CWAnalyzerGUI import main
import cProfile

if __name__ == '__main__':

    # Windows work-around
    if os.name == "nt":
        myappid = u'newaetech.chipwhisperer.analyzer.git'  # arbitrary string
        ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid)

    # cProfile.run('main()')
    main()
