forked from dask/dask-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
36 lines (30 loc) · 834 Bytes
/
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
import os
import sys
import dask_gateway_server
# Project settings
project = "Dask Gateway"
copyright = "2019, Jim Crist-Harif"
author = "Jim Crist-Harif"
release = version = dask_gateway_server.__version__
source_suffix = ".rst"
master_doc = "index"
language = None
pygments_style = "sphinx"
exclude_patterns = []
# Sphinx Extensions
docs = os.path.dirname(os.path.dirname(__file__))
sys.path.insert(0, os.path.join(docs, "sphinxext"))
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.extlinks",
"sphinx.ext.napoleon",
"autodoc_traitlets",
]
extlinks = {
"issue": ("https://github.com/dask/dask-gateway/issues/%s", "Issue #"),
"pr": ("https://github.com/dask/dask-gateway/pull/%s", "PR #"),
}
# Sphinx Theme
html_theme = "dask_sphinx_theme"
templates_path = ["_templates"]