-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
53 lines (33 loc) · 1.77 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
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Geocomputing course'
#copyright = '2023, CSC - IT center for Science'
author = 'CSC - IT center for Science. This page is available under the Creative Commons 4.0 Share-Alike License.'
#release = '0.1'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = ['myst_parser', 'sphinx_togglebutton']
myst_enable_extensions = ['colon_fence']
source_suffix = ['.rst','.md']
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
# setting title in left panel (default is <projectname> documentation <release>)
#html_title = "Geocomputing with Puhti supercomputer course"
# setting upper left logo
html_logo = "materials/images/Geocomputing_on_supercomputer.png"
html_favicon = "materials/images/csc.png"
html_theme = 'sphinx_book_theme'
html_static_path = ['_static']
html_css_files = ["custom.css"]
html_theme_options = {
"repository_url": "https://github.com/csc-training/geocomputing_course",
"use_repository_button": True,
"show_toc_level": 3,
}
# "announcement": 'Psst, remember the <a href="https://csc-training.github.io/geocomputing_course/materials/cheatsheet.html">cheatsheet</a>!',