blob: d2ccc00e67b1a88a4287be09eceabc18d36b656e [file] [log] [blame]
ChetanGaonker901727c2016-11-29 14:05:03 -08001#
2# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16import os,sys
17##add the python path to lookup the utils
18working_dir = os.path.dirname(os.path.realpath(sys.argv[-1]))
19utils_dir = os.path.join(working_dir, '../utils')
20fsm_dir = os.path.join(working_dir, '../fsm')
21__path__.append(utils_dir)
22__path__.append(fsm_dir)