-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathconf.py
More file actions
73 lines (59 loc) · 2.11 KB
/
conf.py
File metadata and controls
73 lines (59 loc) · 2.11 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "Score Persistency"
project_url = "https://eclipse-score.github.io/persistency/"
project_prefix = "PER_"
author = "S-CORE"
version = "0.1.0"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx_design",
"sphinx_needs",
"myst_parser",
"sphinxcontrib.plantuml",
"score_plantuml",
"score_metamodel",
"score_draw_uml_funcs",
"score_source_code_linker",
"score_layout",
]
myst_enable_extensions = ["colon_fence"]
include_patterns = [
"index.rst",
"docs/**",
"score/**",
]
exclude_patterns = [
# The following entries are not required when building the documentation via 'bazel
# build //:docs', as that command runs in a sandboxed environment. However, when
# building the documentation via 'bazel run //:docs' or esbonio, these
# entries are required to prevent the build from failing.
"bazel-*",
".venv*",
]
# Enable markdown rendering
source_suffix = {
".rst": "restructuredtext",
".md": "markdown",
}
templates_path = ["templates"]
# Enable numref
numfig = True
# needs_builder_filter = ""