#!/usr/bin/env python

import sys, os

# Forcerfully add root directory of the project to our path.
dir_of_executable = os.path.dirname(__file__)
path_to_project_root = os.path.abspath(os.path.join(dir_of_executable, '..'))

sys.path.insert(0, path_to_project_root)

from obfsproxy.pyobfsproxy import run
run()


