#!/usr/bin/env python

# Force Python to ignore the current directory when loading the
# first component of the import path
import sys, imp
module_info = imp.find_module('Ft', filter(None, sys.path))
imp.load_module('Ft', *module_info)

from Ft.Rdf._4rdf import RdfCommandLineApp
RdfCommandLineApp().run()
