mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 11:46:35 +00:00
25 lines
717 B
Python
25 lines
717 B
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# This file only contains a selection of the most common options. For
|
|
# a full list see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
#
|
|
# To see the default sample conf.py, run sphinx-quickstart in an empty
|
|
# directory. Most of the original comments and options were removed.
|
|
import sphinx_rtd_theme # noQA F401
|
|
|
|
project = 'QPDF'
|
|
copyright = '2005-2021, Jay Berkenbilt'
|
|
author = 'Jay Berkenbilt'
|
|
release = '10.5.0'
|
|
version = release
|
|
extensions = [
|
|
'sphinx_rtd_theme',
|
|
]
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_theme_options = {
|
|
"body_max_width": None,
|
|
}
|
|
html_logo = '../logo/qpdf.svg'
|
|
highlight_language = 'none'
|