1# -*- coding: utf-8 -*-
2
3"""
4***************************************************************************
5    pyuic.py
6    ---------------------
7    Date                 : March 2016
8    Copyright            : (C) 2016 by Juergen E. Fischer
9    Email                : jef at norbit dot de
10***************************************************************************
11*                                                                         *
12*   This program is free software; you can redistribute it and/or modify  *
13*   it under the terms of the GNU General Public License as published by  *
14*   the Free Software Foundation; either version 2 of the License, or     *
15*   (at your option) any later version.                                   *
16*                                                                         *
17***************************************************************************
18"""
19
20__author__ = 'Juergen E. Fischer'
21__date__ = 'March 2016'
22__copyright__ = '(C) 2016, Juergen E. Fischer'
23
24from PyQt5.uic import pyuic
25if (callable(pyuic.main)):
26    pyuic.main()
27