diff options
author | David Cournapeau <cournape@gmail.com> | 2009-03-28 11:11:11 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-03-28 11:11:11 +0000 |
commit | a73581f20f21e969b45c72e56611d5a8865f478f (patch) | |
tree | 9d212493370b3e11288aa1e1432e7803c8e84e0d /pavement.py | |
parent | 06a66656d7beff62d1e976b5fb876488951c445e (diff) | |
download | numpy-a73581f20f21e969b45c72e56611d5a8865f478f.tar.gz |
Document global vars in paver.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pavement.py b/pavement.py index 899282dbd..cf8fb7b78 100644 --- a/pavement.py +++ b/pavement.py @@ -71,18 +71,26 @@ WINE_PYS = {'2.6' : WINE_PY26, '2.5': WINE_PY25} SUPERPACK_BUILD = 'build-superpack' SUPERPACK_BINDIR = os.path.join(SUPERPACK_BUILD, 'binaries') +# Where to put built documentation (where it will picked up for copy to +# binaries) PDF_DESTDIR = paver.path.path('build') / 'pdf' HTML_DESTDIR = paver.path.path('build') / 'html' +# Source of the release notes RELEASE = 'doc/release/1.3.0-notes.rst' + +# Start/end of the log (from git) LOG_START = 'tags/1.2.0' LOG_END = 'master' + +# Virtualenv bootstrap stuff BOOTSTRAP_DIR = "bootstrap" BOOTSTRAP_PYEXEC = "%s/bin/python" % BOOTSTRAP_DIR BOOTSTRAP_SCRIPT = "%s/bootstrap.py" % BOOTSTRAP_DIR DMG_CONTENT = paver.path.path('numpy-macosx-installer') / 'content' +# Where to put the final installers, as put on sourceforge INSTALLERS_DIR = 'installers' options(sphinx=Bunch(builddir="build", sourcedir="source", docroot='doc'), |