-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf.py
More file actions
39 lines (32 loc) · 1.38 KB
/
Copy pathconf.py
File metadata and controls
39 lines (32 loc) · 1.38 KB
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
# Configuration file for the Sphinx documentation builder.
# Wiki of the DAP PyMoDAQ plugins (Arduino, Raspberry).
# Same theme as the official PyMoDAQ documentation: sphinx_rtd_theme.
# -- Project information -----------------------------------------------------
project = 'DAP Pymodaq Plugins'
author = 'BTS CIEL - Lycee Edouard Branly'
copyright = '2026, BTS CIEL - Lycee Edouard Branly'
version = '2.2.0'
release = '2.2.0'
language = 'en'
# -- General configuration ---------------------------------------------------
extensions = [
'sphinx_design', # cards / grids / tabs (used by the official docs)
'sphinx_sitemap', # generates sitemap.xml
'sphinx.ext.githubpages', # writes .nojekyll for GitHub Pages
]
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# -- HTML output (identical theme to https://pymodaq.cnrs.fr) ----------------
html_theme = 'sphinx_rtd_theme'
html_theme_options = {
'navigation_depth': 4,
'collapse_navigation': False,
}
html_logo = '_static/logo.svg'
html_favicon = '_static/favicon.svg'
html_static_path = ['_static']
html_css_files = ['css/custom.css']
html_extra_path = ['_extra']
# -- SEO ---------------------------------------------------------------------
# Canonical URLs (added by the theme from html_baseurl) and sitemap generation.
html_baseurl = 'https://wiki-plugins-dap-pymodaq.github.io/'
sitemap_url_scheme = '{link}'