blob: ec5e91be46ecd5cdc7591cc2d1f99273083bb5ed [file] [log] [blame]
A R Karthick8f930292017-07-07 12:36:22 -07001#
Chetan Gaonker357f4892017-06-19 19:38:27 +00002# 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
A R Karthick8f930292017-07-07 12:36:22 -07007#
Chetan Gaonker357f4892017-06-19 19:38:27 +00008# http://www.apache.org/licenses/LICENSE-2.0
A R Karthick8f930292017-07-07 12:36:22 -07009#
Chetan Gaonker357f4892017-06-19 19:38:27 +000010# 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')
21subscriber_dir = os.path.join(working_dir, '../subscriber')
A R Karthick8f930292017-07-07 12:36:22 -070022tls_dir = os.path.join(working_dir, '../tls')
23vrouter_dir = os.path.join(working_dir, '../vrouter')
Chetan Gaonker357f4892017-06-19 19:38:27 +000024__path__.append(utils_dir)
25__path__.append(fsm_dir)
26__path__.append(subscriber_dir)
27cli_dir = os.path.join(working_dir, '../cli')
28__path__.append(cli_dir)
A R Karthick8f930292017-07-07 12:36:22 -070029__path__.append(tls_dir)
30__path__.append(vrouter_dir)