mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 15:59:03 +00:00
26 lines
831 B
Python
26 lines
831 B
Python
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
#
|
|
# This software is licensed under the "HS" 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/hs_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 Picture Edition')
|
|
dgapp = DupeGuru()
|
|
cProfile.run('app.exec_()', '/tmp/prof')
|
|
p = pstats.Stats('/tmp/prof')
|
|
p.sort_stats('time').print_stats() |