-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconf.py
More file actions
44 lines (32 loc) · 963 Bytes
/
conf.py
File metadata and controls
44 lines (32 loc) · 963 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
34
35
36
37
38
39
40
41
42
43
44
import datetime
import os
import sys
import sphinx_rtd_theme
extensions = [
"sphinx_rtd_theme",
]
# -- Project information -----------------------------------------------------
project = "Python Guidelines"
copyright = "2021, Paul Wolf"
author = "Paul Wolf"
release = "0.1.0"
templates_path = ["_templates"]
exclude_patterns = ["fish", "*.md", ".venv", "_build", "Thumbs.db", ".DS_Store"]
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_static_path = ["_static"]
html_theme_options = {
"analytics_anonymize_ip": False,
# "logo_only": False,
"display_version": True,
"prev_next_buttons_location": "bottom",
"style_external_links": False,
"vcs_pageview_mode": "",
# "style_nav_header_background": "white",
# Toc options
"collapse_navigation": True,
"sticky_navigation": True,
"navigation_depth": 4,
"includehidden": True,
"titles_only": False,
}