2021-12-11 21:36:05 +00:00
|
|
|
# Configuration file for the Sphinx documentation builder.
|
|
|
|
#
|
2021-12-11 21:39:51 +00:00
|
|
|
# This file only contains a selection of the most common options. For
|
|
|
|
# a full list see the documentation:
|
2021-12-11 21:36:05 +00:00
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
#
|
2021-12-11 21:39:51 +00:00
|
|
|
# To see the default sample conf.py, run sphinx-quickstart in an empty
|
|
|
|
# directory. Most of the original comments and options were removed.
|
2021-12-19 18:12:11 +00:00
|
|
|
import sphinx_rtd_theme # noQA F401
|
2021-12-11 21:36:05 +00:00
|
|
|
|
|
|
|
project = 'QPDF'
|
2021-12-11 21:39:51 +00:00
|
|
|
copyright = '2005-2021, Jay Berkenbilt'
|
2021-12-11 21:36:05 +00:00
|
|
|
author = 'Jay Berkenbilt'
|
2021-12-20 18:05:11 +00:00
|
|
|
release = '10.5.0'
|
2021-12-18 20:59:04 +00:00
|
|
|
version = release
|
2021-12-19 18:12:11 +00:00
|
|
|
extensions = [
|
|
|
|
'sphinx_rtd_theme',
|
|
|
|
]
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
2021-12-18 14:01:52 +00:00
|
|
|
html_theme_options = {
|
|
|
|
"body_max_width": None,
|
|
|
|
}
|
2021-12-19 18:12:11 +00:00
|
|
|
html_logo = '../logo/qpdf.svg'
|
2021-12-18 18:43:58 +00:00
|
|
|
highlight_language = 'none'
|