2003-10-29 23:03:30 +00:00
|
|
|
# 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
|
|
|
|
|
|
2004-04-29 01:56:55 +00:00
|
|
|
epydoc -o BPY_API_233 --url "http://www.blender.org" -t Blender.py \
|
2003-10-29 23:03:30 +00:00
|
|
|
-n "Blender" --no-private --no-frames \
|
|
|
|
|
$( ls [A-Z]*.py )
|