#!/usr/pkg/bin/python2.7

import sys, os, wx
sys.path.append(os.path.join(sys.path[0], 'gitso'))

from gitso import ConnectionWindow, ArgsParser

if __name__ == "__main__":
	app = wx.PySimpleApp()
	args = ArgsParser.ArgsParser()
	ConnectionWindow.ConnectionWindow(None, -1, "Gitso", args.GetPaths())
	app.MainLoop()
	del app
