1+ # Configuration file for the Sphinx documentation builder.
2+ #
3+ # For the full list of built-in configuration values, see the documentation:
4+ # https://www.sphinx-doc.org/en/master/usage/configuration.html
5+
6+ # -- Project information -----------------------------------------------------
7+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8+
9+ project = 'Tools for Experiments'
10+ copyright = '2026, Wolfgang Pfaff, Marcos Frenkel, Oliver Wolff'
11+ author = 'Wolfgang Pfaff, Marcos Frenkel, Oliver Wolff'
12+
13+ # -- General configuration ---------------------------------------------------
14+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
15+
16+ extensions = ['myst_parser' ]
17+
18+ templates_path = ['_templates' ]
19+ exclude_patterns = []
20+
21+ # -- Internationalization ----------------------------------------------------
22+
23+ # specifying the natural language populates some key tags
24+ language = "en"
25+
26+
27+ # -- Options for HTML output -------------------------------------------------
28+ # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
29+
30+ html_theme = "pydata_sphinx_theme"
31+ html_static_path = ['_static' ]
32+ html_logo = '_static/logo.png'
33+
34+ html_theme_options = {
35+ "logo" : {
36+ "text" : "Tools for Experiments" ,
37+ },
38+ "external_links" : [
39+ {
40+ "url" : "https://toolsforexperiments.github.io/labcore/" ,
41+ "name" : "Labcore" ,
42+ },
43+ {
44+ "url" : "https://toolsforexperiments.github.io/instrumentserver/" ,
45+ "name" : "Instrumentserver" ,
46+ },
47+ {
48+ "url" : "https://toolsforexperiments.github.io/plottr/" ,
49+ "name" : "Plottr" ,
50+ },
51+ {
52+ "url" : "https://toolsforexperiments.github.io/cqedtoolbox/" ,
53+ "name" : "CQEDtoolbox" ,
54+ }
55+
56+ ],
57+ "icon_links" : [
58+ {
59+ "name" : "GitHub" ,
60+ "url" : "https://github.com/toolsforexperiments" ,
61+ "icon" : "fa-brands fa-github" ,
62+ }
63+ ]
64+ }
0 commit comments