10 lines
302 B
Bash
10 lines
302 B
Bash
# epy_docgen.sh
|
|
# generates blender python doc using epydoc
|
|
# requires epydoc in your PATH.
|
|
# run from the doc directory containing the .py files
|
|
# usage: sh epy_docgen.sh
|
|
|
|
epydoc -o BPY_API_233 --url "http://www.blender.org" -t Blender.py \
|
|
-n "Blender" --no-private --no-frames \
|
|
$( ls [A-Z]*.py )
|