forked from bazel-contrib/rules_python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf.py
More file actions
33 lines (25 loc) · 677 Bytes
/
conf.py
File metadata and controls
33 lines (25 loc) · 677 Bytes
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
# 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 info
project = "Sphinx Stardoc Test"
extensions = [
"sphinx_bzl.bzl",
"myst_parser",
"sphinx.ext.intersphinx",
]
myst_enable_extensions = [
"fieldlist",
"attrs_block",
"attrs_inline",
"colon_fence",
"deflist",
"substitution",
]
# --- Stardoc configuration
bzl_default_repository_name = "@testrepo"
# --- Intersphinx configuration
intersphinx_mapping = {
"bazel": ("https://bazel.build/", "bazel_inventory.inv"),
}