-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.py
147 lines (127 loc) · 4.31 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# Configuration file for the Sphinx documentation builder.
# -- Path setup --------------------------------------------------------------
from datetime import datetime
import subprocess
current_year = datetime.now().year
organization_name = "pyOpenSci"
# -- Project information -----------------------------------------------------
project = "pyOpenSci Handbook"
copyright = f"{current_year}, {organization_name}"
author = "pyOpenSci"
# Get the latest Git tag - there might be a prettier way to do this but...
try:
release_value = (
subprocess.check_output(["git", "describe", "--tags"])
.decode("utf-8")
.strip()
)
release_value = release_value[:4]
except subprocess.CalledProcessError:
release_value = "0.1" # Default value in case there's no tag
# Update the release value
release = release_value
# -- General configuration ---------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"myst_nb",
"sphinx_design",
"sphinx_copybutton",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx_sitemap",
"sphinxext.opengraph",
"sphinx_favicon",
]
# colon fence for card support in md
myst_enable_extensions = [
"colon_fence",
"deflist",
"attrs_block",
]
myst_heading_anchors = 3
# Link to our repo
# Sphinx_favicon is used now in favor of built in support
# https://pypi.org/project/sphinx-favicon/
favicons = [
{"href": "https://www.pyopensci.org/images/favicon.ico"},
]
html_theme_options = {
"announcement": "<p><a href='https://www.pyopensci.org/software-peer-review/about/intro.html'>Submit Your Python Package for Peer Review - Learn More!</a></p>",
"external_links": [
{
"url": "https://www.pyopensci.org",
"name": "pyOpenSci Website",
},
{
"url": "https://www.pyopensci.org/python-package-guide",
"name": "Packaging Guide",
},
{
"url": "https://pyopensci.org/peer-review-guide",
"name": "Peer Review Guide",
},
],
"icon_links": [
{
"name": "Mastodon",
"url": "https://fosstodon.org/@pyOpenSci",
"icon": "fa-brands fa-mastodon",
},
],
"logo": {
"text": "Handbook",
"image_dark": "logo-dark-mode.png",
"image_light": "logo-light-mode.png",
"alt_text": "pyOpenSci Handbook. The pyOpenSci logo is a purple flower with pyOpenSci under it. The o in open sci is the center of the flower",
},
"header_links_before_dropdown": 4,
"use_edit_page_button": True,
"show_nav_level": 2,
"navigation_depth": 3,
"show_toc_level": 1,
# "navbar_align": "left", # [left, content, right] For testing that the navbar items align properly
"github_url": "https://github.com/pyopensci/handbook",
"footer_start": ["copyright"],
"footer_end": [],
}
# html_theme_options["analytics"] = {
# "google_analytics_id": "UA-141260825-1",
# }
html_context = {
"github_user": "pyopensci",
"github_repo": "handbook",
"github_version": "main",
}
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# List of patterns relative to source directory that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store",
".github",
".nox",
"README.md",
"reference/2018-2020-orig-meeting-notes",
]
# For sitemap generation
html_baseurl = "https://www.pyopensci.org/handbook/"
sitemap_url_scheme = "{link}"
# -- Options for HTML output -------------------------------------------------
html_theme = "pyos_sphinx_theme"
html_title = "pyOpenSci Handbook"
html_js_files = ["matomo.js"]
# Add paths containing custom static files (such as style sheets) here,
# relative to this directory. They are copied after the built-in static files,
# so a file named "default.css" will overwrite the built-in "default.css".
html_static_path = ["_static"]
# Social cards
ogp_site_url = "https://www.pyopensci.org/handbook/"
ogp_social_cards = {
"line_color": "#6D597A",
"image": "_static/logo-dark-mode.png",
}