summaryrefslogtreecommitdiffstats
path: root/lib/talloc/wscript
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-11 01:05:13 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-11 03:30:06 +0100
commit68d97f8b492d1d075ed77a4bab7f178d10570106 (patch)
tree7a7f28518e4528eb5e5c100291cf25f8e375d272 /lib/talloc/wscript
parent7ef1de3973ea694abb7e330dd538a0f3679365fb (diff)
downloadsamba-68d97f8b492d1d075ed77a4bab7f178d10570106.tar.gz
samba-68d97f8b492d1d075ed77a4bab7f178d10570106.tar.xz
samba-68d97f8b492d1d075ed77a4bab7f178d10570106.zip
talloc: Add ability to generate Python docs using pydoctor.
Diffstat (limited to 'lib/talloc/wscript')
-rw-r--r--lib/talloc/wscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript
index 49eac6e6e6d..b4cb84bbd8a 100644
--- a/lib/talloc/wscript
+++ b/lib/talloc/wscript
@@ -141,3 +141,10 @@ def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)
+
+
+def pydoctor(ctx):
+ '''build python apidocs'''
+ cmd='PYTHONPATH=bin/python pydoctor --project-name=talloc --project-url=http://talloc.samba.org/ --make-html --docformat=restructuredtext --introspect-c-modules --add-module bin/python/talloc.*'
+ print("Running: %s" % cmd)
+ os.system(cmd)