mapnik/docs/epydoc_config/build_epydoc.sh
Artem Pavlenko dbc2e45d57 + remove *.html doc files
+ update epydoc generation script
2010-01-11 23:51:01 +00:00

19 lines
327 B
Bash
Executable file

#!/bin/sh
API_DOCS_DIR="../api_docs/python"
if [ ! -d $API_DOCS_DIR ]
then
echo "creating $API_DOCS_DIR"
mkdir -p $API_DOCS_DIR
fi
epydoc --no-private \
--no-frames \
--no-sourcecode \
--name mapnik \
--url http://mapnik.org \
--css mapnik_epydoc.css mapnik \
-o $API_DOCS_DIR
exit $?