-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathconf.py
120 lines (94 loc) · 2.79 KB
/
conf.py
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
""" Documentation configuration and workflow for jupyter-starters
"""
# pylint: disable=invalid-name,redefined-builtin,import-error
import subprocess
from pathlib import Path
DOCS = Path(__file__).parent
ROOT = DOCS.parent
YARN_STATE = ROOT / "node_modules/.yarn-state.yml"
project = "Jupyter[Lab] Language Server"
copyright = "2021, Jupyter[Lab] Language Server Contributors"
author = "Jupyter[Lab] Language Server Contributors"
version = ""
release = ""
extensions = [
"myst_nb",
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx.ext.coverage",
"sphinx.ext.doctest",
"sphinx.ext.githubpages",
"sphinx.ext.ifconfig",
"sphinx.ext.intersphinx",
"sphinx.ext.mathjax",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
"sphinx_copybutton",
"sphinx_autodoc_typehints",
]
templates_path = ["_templates"]
source_suffix = [".rst", ".md"]
master_doc = "index"
language = "en"
exclude_patterns = [
".ipynb_checkpoints/**",
"**/.ipynb_checkpoints/**",
"**/~.*",
"~.*",
"_build/**",
]
html_theme = "sphinx_book_theme"
html_static_path = ["_static"]
htmlhelp_basename = "jupyterlab-lsp"
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"jsonschema": ("https://python-jsonschema.readthedocs.io/en/stable/", None),
}
github_url = "https://github.com"
github_repo_org = "jupyter-lsp"
github_repo_name = "jupyterlab-lsp"
github_repo_slug = f"{github_repo_org}/{github_repo_name}"
github_repo_url = f"{github_url}/{github_repo_slug}"
extlinks = {
"issue": (f"{github_repo_url}/issues/%s", "#"),
"pr": (f"{github_repo_url}/pull/%s", "PR #"),
"commit": (f"{github_repo_url}/commit/%s", ""),
"gh": (f"{github_url}/%s", "GitHub: "),
}
html_show_sourcelink = True
html_context = {
"display_github": True,
# these automatically-generated pages will create broken links
"hide_github_pagenames": ["search", "genindex"],
"github_user": github_repo_org,
"github_repo": github_repo_name,
"github_version": "master",
"conf_py_path": "/docs/",
}
html_logo = "images/logo.png"
html_title = "Language Server Protocol integration for Jupyter[Lab]"
html_theme_options = {
"repository_url": github_repo_url,
"path_to_docs": "docs",
"use_fullscreen_button": True,
"use_repository_button": True,
"use_issues_button": True,
"use_edit_page_button": True,
"use_download_button": True,
}
# MyST-{NB}
nb_execution_mode = "force"
nb_output_stderr = "remove-warn"
myst_enable_extensions = [
"amsmath",
"deflist",
"dollarmath",
"html_admonition",
"html_image",
"smartquotes",
]
def setup(app):
"""Runs before the "normal business" of sphinx. Don't go too crazy here."""
app.add_css_file("css/custom.css")
if not YARN_STATE.exists():
subprocess.check_call(["jlpm"])