Newer
Older
# -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/master/config
# -- Project information -----------------------------------------------------
project = 'NEMO'
author = 'NEMO System Team'
# The short X.Y version
# The full version, including alpha/beta/rc tags

Tomas Lovato
committed
release = 'release-' + version
# NEMO gitlab repository
nemo_repo='https://forge.nemo-ocean.eu/nemo/nemo/-/'
# -- 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 = ['sphinx.ext.extlinks', 'sphinx.ext.todo', 'sphinxcontrib.bibtex']

Tomas Lovato
committed
# add pip extensions
extensions += ['sphinxext.remoteliteralinclude']
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
bibtex_bibfiles = ['refs.bib', 'cfgs.bib', 'tests.bib']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The master toctree document.
master_doc = 'index'
# 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 = ['global.rst', 'coarsening.rst']
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# -- 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 = 'sphinx_rtd_theme'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_favicon = '_static/ORCA.ico'
# -- Options for LaTeX output ------------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'NEMO_guide.tex', 'NEMO Quick Start Guide',
'NEMO System Team', 'howto'),
]
# -- Customisation -----------------------------------------------------------
import datetime
year = datetime.date.today().year
copyright = '2008-' + str( year ) + ', NEMO Consortium'
# Link aliases
extlinks = {
'doi' : ('https://doi.org/%s' , None),
'forge' : ('https://forge.ipsl.jussieu.fr/nemo/%s' , None),
'github' : ('https://github.com/NEMO-ocean/%s' , None),
'xios' : ('https://forge.ipsl.jussieu.fr/ioserver/%s', None),
'xios_doc': ('https://forge.ipsl.jussieu.fr/ioserver/wiki/documentation/%s', None),
'website' : ('https://www.nemo-ocean.eu/%s' , None),
'zenodo' : ('https://zenodo.org/publication/%s' , None),
Andrew Coward
committed
'gitlab' : (nemo_repo + '%s' , None),

Tomas Lovato
committed
'mergereq': (nemo_repo + '/merge_requests/%s' , '!%s'),
Andrew Coward
committed
'coderepo': (nemo_repo + '/tree/'+ version + '%s' , None),
'tarrepo' : (nemo_repo + '/releases/'+ version + '%s' , None),
}
# Include common directives for every rst file
rst_epilog = open('global.rst', 'r').read()