blob: 1ea5060d95f12dca32f0518fad62cd804b02e4a4 [file] [log] [blame]
Joe Gregorio30dfdc32010-12-09 16:34:22 -05001#!/bin/bash
2#
3# Copyright 2010 Google Inc. All Rights Reserved.
4# Author: jcgregorio@google.com (Joe Gregorio)
5#
6# Creates the documentation set for the library by
7# running pydoc on all the files in apiclient.
8#
9# Notes: You may have to update the location of the
10# App Engine library for your local system.
11
12set GOOGLE_APPENGINE=$HOME/projects/google_appengine/
13set DJANGO_SETTINGS_MODULE=fakesettings
14set PYTHONPATH=`pwd`/..:$GOOGLE_APPENGINE
15find ../apiclient/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s/^\.\.\///" | sed "s#/#.#g" | xargs pydoc -w
16