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 7 import os, sys 8 9 cwd = os.path.dirname(sys.modules[__name__].__file__) 10 client_dir = os.path.abspath(os.path.join(cwd, '..')) 11 sys.path.insert(0, client_dir) 12