# .pathosrc
#
# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)
# Copyright (c) 1997-2016 California Institute of Technology.
# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation.
# License: 3-clause BSD.  The full license text is available at:
#  - https://github.com/uqfoundation/pox/blob/master/LICENSE

# user environment
PATH=$PATH:.:$HOME/bin
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:$HOME/lib
MYPYTHON = $HOME/python

if [ "$PYTHONPATH" = "" ]
then
  PYTHONPATH=.:$MYPYTHON
else
  PYTHONPATH=.:$MYPYTHON:$PYTHONPATH
fi

export PATH
export LD_LIBRARY_PATH
export PYTHONPATH
export PYTHONSTARTUP=$HOME/.python
export PYTHONHISTORY=$HOME/.pyhistory

unset USERNAME


# user aliases
alias pythonpath='python -c "import sys; print(sys.path)"'


# EOF
