-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconf.py
More file actions
30 lines (26 loc) · 695 Bytes
/
conf.py
File metadata and controls
30 lines (26 loc) · 695 Bytes
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
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.intersphinx',
]
templates_path = ['_templates']
numfig = True
source_suffix = '.rst'
master_doc = 'index'
project = 'EBPFCat'
copyright = '2025, European XFEL GmbH'
author = 'Martin Teichmann'
release = "1.0"
version = "1.0.0"
language = "en"
exclude_patterns = ['_build']
pygments_style = 'sphinx'
todo_include_todos = False
html_theme = 'alabaster'
html_logo = 'ebpfcat.svg'
html_favicon = 'ebpfcat.svg'
html_static_path = ['_static']
htmlhelp_basename = 'EBPFCat'
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
autodoc_mock_imports = ['softioc']
autodoc_inherit_docstrings = False