blob: 0a08b71e3dd43fce092873423b60bdac5f39bc91 [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
Joe Gregorio3cf90d02010-12-20 10:26:08 -050012export GOOGLE_APPENGINE=$HOME/projects/google_appengine/
13export DJANGO_SETTINGS_MODULE=fakesettings
14export PYTHONPATH=`pwd`/..:$GOOGLE_APPENGINE
Joe Gregorio30dfdc32010-12-09 16:34:22 -050015find ../apiclient/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s/^\.\.\///" | sed "s#/#.#g" | xargs pydoc -w
16