#!/usr/bin/python
'''
gtkrawgallery: GTKRawGallery launcher;
comment: A workflow oriented photo manager for digital camera raw image development;
author: (c) 2007-2010 Daniele Isca <bit123 AT users DOT sourceforge DOT net>
license: GNU GPL v.2 (see COPYING file)
version: 0.9.6
This software comes with no warranty of any kind, use at your own risk!
'''

import gtkrawgallery

if __name__ == "__main__":
	gtkrg = gtkrawgallery.Gallery()
	gtkrg.main()

