shell script that works with epydoc 3.0

This commit is contained in:
2007-09-03 00:03:29 +00:00
parent 04a2eb2e4e
commit ca59cd68d3

View File

@@ -0,0 +1,12 @@
# 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
# set posix locale so regex works properly for [A-Z]*.py
LC_ALL=POSIX
epydoc -o BPY_API --url "http://www.blender.org" --top API_intro \
--name "Blender" --no-private --no-frames \
$( ls [A-Z]*.py )