2020-02-23 23:51:22 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Sphinx configuration file."""
|
|
|
|
import time
|
|
|
|
|
|
|
|
author = "Jan Holthuis"
|
|
|
|
project = "sphinx-multiversion"
|
2020-03-12 09:52:38 +01:00
|
|
|
release = "0.1.1"
|
|
|
|
version = "0.1"
|
2020-03-11 13:28:44 +01:00
|
|
|
copyright = "{}, {}".format(time.strftime("%Y"), author)
|
2020-02-23 23:51:22 +01:00
|
|
|
|
2020-03-11 13:28:44 +01:00
|
|
|
html_last_updated_fmt = "%c"
|
|
|
|
master_doc = "index"
|
|
|
|
pygments_style = "friendly"
|
|
|
|
templates_path = ["_templates"]
|
2020-03-11 13:56:41 +01:00
|
|
|
extensions = [
|
|
|
|
"sphinx_multiversion",
|
|
|
|
]
|
2020-03-11 16:04:45 +01:00
|
|
|
|
|
|
|
templates_path = [
|
|
|
|
"_templates",
|
|
|
|
]
|
|
|
|
|
|
|
|
html_sidebars = {
|
|
|
|
"**": [
|
|
|
|
"about.html",
|
|
|
|
"navigation.html",
|
|
|
|
"relations.html",
|
|
|
|
"searchbox.html",
|
|
|
|
"versioning.html",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
mv_remote_whitelist = r"^origin$"
|