6 # Copyright (C) 2008 jerous <jerous@gmail.com>
7 # Copyright (C) 2009 Anton Khirnov <wyskas@gmail.com>
9 # Nephilim is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
14 # Nephilim is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Nephilim. If not, see <http://www.gnu.org/licenses/>.
25 from traceback
import print_exc
27 from PyQt4
import QtGui
29 sys
.exit('PyQt4 not found. Ensure that it is installed.')
31 from nephilim
.nephilim_app
import NephilimApp
34 logging
.basicConfig(level
= logging
.WARNING
)
36 app
= NephilimApp(sys
.argv
)
43 if __name__
== "__main__":