forked from pyOpenSci/python-package-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.py
161 lines (140 loc) · 4.88 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
from datetime import datetime
import subprocess
current_year = datetime.now().year
organization_name = "pyOpenSci"
# -- Project information -----------------------------------------------------
project = "pyOpenSci Python Package Guide"
copyright = f"{current_year}, {organization_name}"
author = "pyOpenSci Community"
# 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
myst_footnote_transition = False
# 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"},
]
# Link to our repo for easy PR/ editing
html_theme_options = {
"announcement": "<p><a href='https://www.pyopensci.org/about-peer-review/index.html'>We run peer review of scientific Python software. Learn more.</a></p>",
# "navbar_center": ["nav"], this can be a way to override the default navigation structure
"external_links": [
{
"url": "https://www.pyopensci.org",
"name": "pyOpenSci Website",
},
{
"url": "https://www.pyopensci.org/software-peer-review",
"name": "Peer Review Guide",
},
{
"url": "https://pyopensci.org/handbook",
"name": "Handbook",
},
],
"icon_links": [
{
"name": "Mastodon",
"url": "https://fosstodon.org/@pyOpenSci",
"icon": "fa-brands fa-mastodon",
},
],
"logo": {
# "text": "Python Packaging",
"image_dark": "logo-dark-mode.png",
"image_light": "logo-light-mode.png",
"alt_text": "pyOpenSci Python Package Guide. 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/python-package-guide",
"footer_start": ["copyright"],
"footer_end": [],
}
html_context = {
"github_user": "pyopensci",
"github_repo": "python-package-guide",
"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",
"styles/write-good/README.md",
"styles/*",
".pytest_cache/README.md",
]
# For sitemap generation
html_baseurl = "https://www.pyopensci.org/python-package-guide/"
sitemap_url_scheme = "{link}"
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "pydata_sphinx_theme"
html_static_path = ["_static"]
html_css_files = ["pyos.css"]
html_title = "Python Packaging Guide"
html_js_files = ["matomo.js"]
# Social cards
ogp_site_url = "https://www.pyopensci.org/python-package-guide/"
ogp_social_cards = {
"line_color": "#6D597A",
"image": "_static/pyopensci-logo-package-guide.png",
}