blob: 82ba6427e97b545ff3a4f17491850a6313971d9a [file] [log] [blame]
Zack Williams0149cd22018-05-17 16:19:48 -07001#!/usr/bin/env bash
2
3# Copyright 2017-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# setup_venv_lite.sh
18# sets up a python virtualenv for testing and service development
19
20set -eu -o pipefail
21
22BASEDIR=$(pwd)
23REQUIREMENTS=$BASEDIR/scripts/xos_reqs_lite.txt
24VENVDIR=venv-xos-lite
25
26# create venv if it's not yet there
27if [ ! -x "$BASEDIR/$VENVDIR/bin/activate" ]; then
28 echo "Setting up virtualenv ${BASEDIR}/${VENVDIR} for XOS"
29 virtualenv -q "$BASEDIR/$VENVDIR" --no-site-packages
30 pip install --upgrade pip
31 echo "Virtualenv created."
32fi
33
34set +u
35# activate the virtual env
36if [ ! -x "$VIRTUAL_ENV" ]; then
37 source "$BASEDIR/$VENVDIR/bin/activate"
38 echo "Virtualenv activated."
39fi
40
41pip install -r "$REQUIREMENTS"
42cd "$BASEDIR/lib/xos-config"; python setup.py install
43cd "$BASEDIR/lib/xos-genx"; python setup.py install
44cd "$BASEDIR/lib/xos-util"; python setup.py install
45