2 # Generates epydoc for $target to $outdir, while ignoring $exclude
3 # WARNING: The contents of $outdir are -deleted- before the running epydoc
4 # This way there are no 'stale files' when the script finishes.
6 outdir
="../../wiki/html/epydoc"
7 target
="../app ../tests"
10 echo "Cleaning out $outdir..."
15 echo "Running epydoc..."
16 echo "$target -> $outdir"
17 echo "================="
19 epydoc
--html -v --show-private --inheritance=included
--graph=all \
20 --parse-only --exclude=$exclude -o $outdir $target
22 echo "================="