1# Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5"""This module provides access to the namespace of the project home.""" 6 7import os, sys 8 9cwd = os.path.dirname(sys.modules[__name__].__file__) 10client_dir = os.path.abspath(os.path.join(cwd, '..')) 11sys.path.insert(0, client_dir) 12