blob: 5a8f538f11a887dd4ce2a3811fffb133daace6e1 [file] [log] [blame]
Guido van Rossum944e76f1991-09-15 21:26:52 +00001import sys
Guido van Rossumc96f38e1991-09-15 21:26:30 +00002
3# My home directory/
4GUIDO = '/ufs/guido/'
5
6# Hack sys.path so AL can be found
7LIB = GUIDO + 'lib/python'
8if LIB not in sys.path: sys.path.insert(0, LIB)
9
10# Python binary to be used on remote machine
11PYTHON = GUIDO + 'bin/sgi/python'
12
13# Directory where the programs live
Guido van Rossum944e76f1991-09-15 21:26:52 +000014AUDIODIR = GUIDO + 'src/python/demo/sgi/al'