File: pathosrc

package info (click to toggle)
pox 0.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 392 kB
  • sloc: python: 1,354; makefile: 32; sh: 9
file content (34 lines) | stat: -rw-r--r-- 773 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# .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