#!/usr/bin/env python
#
# Copyright 2007 Owen Taylor
#
# This file is part of Reinteract and distributed under the terms
# of the BSD license. See the file COPYING in the Reinteract
# distribution for full details.
#
########################################################################

import os

import reinteract
from reinteract.global_settings import global_settings

prefix=u"/opt/local"
datarootdir=u"${prefix}/share".replace("${prefix}", prefix)
global_settings.dialogs_dir = os.path.join(datarootdir, "reinteract", "dialogs")
global_settings.examples_dir = os.path.join(datarootdir, "reinteract", "examples")
global_settings.icon_file = os.path.join(datarootdir, "reinteract", "Reinteract.ico")
global_settings.version = "0.5.10"

if __name__ == "__main__":
    import reinteract.main
    reinteract.main.main()
