scripts/build_epydocs.sh
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 08 May 2008 23:48:43 +0000
changeset 14 aec6d7b8e745
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Initial implementation of the Contributor Model in the contributor.py module. Review: http://codereviews.googleopensourceprograms.com/61

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."