mirror of
https://github.com/vale981/sphinx-multiversion
synced 2025-03-05 17:41:42 -05:00
17 lines
372 B
Python
17 lines
372 B
Python
# -*- coding: utf-8 -*-
|
|
"""Sphinx configuration file."""
|
|
import time
|
|
|
|
author = "Jan Holthuis"
|
|
project = "sphinx-multiversion"
|
|
release = "1.0.0"
|
|
version = "1.0"
|
|
copyright = "{}, {}".format(time.strftime("%Y"), author)
|
|
|
|
html_last_updated_fmt = "%c"
|
|
master_doc = "index"
|
|
pygments_style = "friendly"
|
|
templates_path = ["_templates"]
|
|
extensions = [
|
|
"sphinx_multiversion",
|
|
]
|