]>
Commit | Line | Data |
---|---|---|
1 | #!/bin/bash | |
2 | ||
3 | #---------------------------------------------------------------------- | |
4 | ||
5 | if [ ! -d wxPython ]; then # TODO: make this test more robust | |
6 | echo "Please run this script from the root wxPython directory." | |
7 | exit 1 | |
8 | fi | |
9 | ||
10 | ||
11 | rm -r docs/api/* | |
12 | ||
13 | epydoc --name wxPython \ | |
14 | --html \ | |
15 | --output docs/api \ | |
16 | --ignore-param-mismatch \ | |
17 | --inheritance none \ | |
18 | --no-expand-subpackages \ | |
19 | --no-private \ | |
20 | --css docs/wxPython-epydoc.css \ | |
21 | --docformat restructuredtext \ | |
22 | $* \ | |
23 | ./wx/__init__.py | |
24 | ||
25 | # --no-frames \ | |
26 | # --docformat epytext \ | |
27 | # --debug \ | |
28 | ||
29 | ||
30 | # TODO: | |
31 | # 1. Should rebuild the top-level docs too (but we need more of them first!) | |
32 | # 2. bundle it all up into a tarball | |
33 | # 3. etc. | |
34 | ||
35 |