Diff of /docs/source/conf.py [000000] .. [9f010e]

Switch to unified view

a b/docs/source/conf.py
1
# Configuration file for the Sphinx documentation builder.
2
3
# -- Project information
4
5
project = 'MuSim'
6
copyright = '2024, Saxena Lab'
7
author = 'Saxena Lab'
8
9
release = '0.1'
10
version = '0.1.0'
11
12
# -- General configuration
13
14
extensions = [
15
    'sphinx.ext.duration',
16
    'sphinx.ext.doctest',
17
    'sphinx.ext.autodoc',
18
    'sphinx.ext.autosummary',
19
    'sphinx.ext.intersphinx',
20
]
21
22
intersphinx_mapping = {
23
    'python': ('https://docs.python.org/3/', None),
24
    'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
25
}
26
intersphinx_disabled_domains = ['std']
27
28
templates_path = ['_templates']
29
30
# -- Options for HTML output
31
32
html_theme = 'sphinx_rtd_theme'
33
34
# -- Options for EPUB output
35
epub_show_urls = 'footnote'