1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# -*- coding: utf-8 -*-
# -- General configuration -----------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['rst2pdf.pdfbuilder']
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = u'issue 319'
copyright = u'2010, Roberto Alsina'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.0.0'
# The full version, including alpha/beta/rc tags.
release = '0.0.0'
# -- Options for PDF output ----------------------------------------------------
pdf_invariant = True
pdf_real_footnotes = True
# Set a consistent date for the cover page
today = 'April 29, 2018'
|