diff options
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pavement.py b/pavement.py index e2ac10b81..cd52b6f1a 100644 --- a/pavement.py +++ b/pavement.py @@ -3,6 +3,7 @@ from paver.easy import * from paver.setuputils import setup +from paver.doctools import cog import sys import re @@ -83,6 +84,9 @@ options( dir="env", python="python2", virtual="virtualenv2", + ), + cog=Bunch( + pattern="*.py", ) ) @@ -91,6 +95,7 @@ xargs = ["--from-code=utf-8", "--copyright-holder=pyLoad Team", "--package-name= "--package-version=%s" % options.version, "--msgid-bugs-address='bugs@pyload.org'"] @task +@needs('cog') def html(): """Build html documentation""" module = path("docs") / "module" |