# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) # # This software is licensed under the "BSD" License as described in the "LICENSE" file, # which should be included with this package. The terms are also available at # http://www.hardcoded.net/licenses/bsd_license import sys import cProfile import pstats from PyQt4.QtCore import QCoreApplication from PyQt4.QtGui import QApplication if sys.platform == 'win32': from app_win import DupeGuru else: from app import DupeGuru if __name__ == "__main__": app = QApplication(sys.argv) QCoreApplication.setOrganizationName('Hardcoded Software') QCoreApplication.setApplicationName('dupeGuru Music Edition') dgapp = DupeGuru() cProfile.run('app.exec_()', '/tmp/prof') p = pstats.Stats('/tmp/prof') p.sort_stats('time').print_stats()