makedoc 254 B

1234567
  1. #!/bin/bash
  2. rm -rf doc/*
  3. epydoc --html --output doc/ --name "Python-OpenID" --top openid \
  4. --url "http://openidenabled.com/python-openid/" --inheritance listed \
  5. --no-private -v \
  6. $( find openid -name '*.py' -and -not -path 'openid/test*' )