scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Tue, 26 Aug 2008 21:05:43 +0000
changeset 102 a2d3ac82142f
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Third-party packages that do not need to be part of trunk/app (because they are not part of a Google App Engine image upload).

#!/bin/bash

echo "Running epydoc..."
echo $1

epydoc --html -v --show-private --inheritance=included --graph=all \
  -o ../../wiki/html/epydoc $1

echo "Done."