Files
Ivolution/Ivolution.py
Julien Lengrand-Lambert 9e95642c68 Loads of changes in the repo structure.
Data are now hosted as a subfolder of the code, and all the source files are grouped into the same package.
Bin folder has been removed, scripts are now directly placed in the root location.

Main package has been renamed to ivolution, this is a first step towards github renaming and full renaming of the project
2012-07-31 18:28:33 +02:00

10 lines
194 B
Python
Executable File

#!/usr/bin/env python
from gi.repository import Gtk, GObject
from ivolution.gui import IvolutionWindow
my_app = IvolutionWindow.IvolutionWindow("Ivolution")
GObject.threads_init()
Gtk.main()