-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.py
74 lines (53 loc) · 1.87 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
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
# Configuration file for the Sphinx documentation builder.
# -- Path setup --------------------------------------------------------------
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath('../..'))
# -- Project information -----------------------------------------------------
project = 'LIANA x Tensor-cell2cell'
copyright = '2023, Hratch Baghdassarian, Daniel Dimitrov, Erick Armingol, et al'
author = 'Hratch Baghdassarian, Daniel Dimitrov, Erick Armingol, et al'
# The full version, including alpha/beta/rc tags
release = '0.0.2'
# -- General configuration ---------------------------------------------------
extensions = [
'sphinx.ext.duration',
'sphinx.ext.doctest',
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
'sphinx.ext.autosectionlabel',
'numpydoc',
'nbsphinx',
'IPython.sphinxext.ipython_console_highlighting'
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# 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 = []
# -- Options for HTML output -------------------------------------------------
master_doc = 'index'
html_theme = 'sphinx_rtd_theme'
html_static_path = ["_static"]
html_theme_options = dict(
logo_only=True,
display_version=True,
)
html_context = dict(
display_github=False,
github_user='hmbaghdassarian/',
github_repo='ccc_protocols',
github_version='main',
conf_py_path='.',
)
html_show_sphinx = True
html_logo = '_static/logo.png'
html_favicon = '_static/logo.png'
html_css_files = ['custom.css']
# -- Options for EPUB output
epub_show_urls = 'footnote'
nbsphinx_execute = 'never'
nbsphinx_allow_errors = True