#!/usr/bin/python
'''
gtkrawgallery: GTKRawGallery launcher for Linux;
To start GTKRawGallery type from a shell prompt:
$ python /usr/bin/gtkrawgallery
or
$ python /usr/local/bin/gtkrawgallery
depending of your system prefix.
comment: A workflow oriented photo manager for digital camera raw image development;
author: (c) 2013 Daniele Isca <bit123 AT users DOT sourceforge DOT net>
license: GNU GPL v.3 (see COPYING file)
version: 0.9.9
This software comes with no warranty of any kind, use at your own risk!
'''

import gtkrawgallery

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

