#!/usr/bin/env python

import sys
from os.path import join, abspath, dirname, exists, getmtime
from inspect import getfile, currentframe

here = dirname( abspath( getfile( currentframe() ) ) )
base = abspath( join( here, '..' ) )

# NOTE: insert this pyutilib.virtualenv path *second*.  
#   '' (the CWD) should always be first.
sys.path.insert(1, base)

from pyutilib.virtualenv.vpy_install import main
main()
