Welcome to mirror list, hosted at ThFree Co, Russian Federation.

epy_docgen.sh « doc « api2_2x « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27d82c9d373aca1d6824b072f29d04bba6de4c15 (plain)
1
2
3
4
5
6
7
8
9
# 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_234 --url "http://www.blender.org" -t API_intro.py \
 -n "Blender" --no-private --no-frames \
$( ls [A-Z]*.py )