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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
###############################################################################
# Copyright (c) Intel Corporation - All rights reserved. #
# This file is part of the LIBXSMM library. #
# #
# For information on the license, see the LICENSE file. #
# Further information: https://github.com/hfp/libxsmm/ #
# SPDX-License-Identifier: BSD-3-Clause #
###############################################################################
# Hans Pabst (Intel Corp.)
###############################################################################
import sphinx_rtd_theme
import os
project = 'LIBXSMM'
copyright = '2009-2021, Intel Corporation.'
author = 'Intel Corporation'
user = os.environ.get('USER')
extensions = [
#"recommonmark",
"m2r2"
]
master_doc = "index"
source_suffix = [
".rst",
#".md"
]
exclude_patterns = [
"*-" + user + "-*.md",
"Thumbs.db",
".DS_Store",
"_build"
]
html_theme = "sphinx_rtd_theme"
html_theme_options = {
"navigation_depth": 2
}
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_static_path = ["../.theme"]
templates_path = ["_templates"]
pygments_style = "sphinx"
language = None
|