summaryrefslogtreecommitdiff
path: root/admin/makedoc
blob: e477c194db638a71a97691a27b93a42b8b5f48ce (plain)
1
2
3
4
5
6
7
#!/bin/bash

rm -rf doc/*
epydoc --html --output doc/ --name "Python-OpenID" --top openid \
    --url "http://openidenabled.com/python-openid/" --inheritance listed \
    --no-private -v \
    $( find openid -name '*.py' -and -not -path 'openid/test*' )