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
|
#!/usr/bin/env python
# SPDX-FileCopyrightText: 2025 Kohei Yoshida
#
# SPDX-License-Identifier: MIT
# -*- coding: utf-8 -*-
import sys
import os
import subprocess
rtd_build = os.environ.get('READTHEDOCS', None) == 'True'
if rtd_build:
subprocess.call("doxygen --version; doxygen doxygen.conf", shell=True)
extensions = ['breathe']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = 'mdds'
copyright = '2025, Kohei Yoshida'
version = "3.2"
release = "3.2.0"
exclude_patterns = ['_build']
pygments_style = 'sphinx'
html_theme = 'piccolo_theme'
html_theme_options = {}
html_static_path = ['_static']
htmlhelp_basename = 'mddsdoc'
latex_elements = {}
latex_documents = [
('index', 'mdds.tex', 'mdds Documentation',
'Kohei Yoshida', 'manual'),
]
man_pages = [
('index', 'mdds', 'mdds Documentation',
['Kohei Yoshida'], 1)
]
texinfo_documents = [
('index', 'mdds', 'mdds Documentation',
'Kohei Yoshida', 'mdds', 'One line description of project.',
'Miscellaneous'),
]
breathe_projects = {"mdds": "./_doxygen/xml"}
breathe_default_project = "mdds"
breathe_default_members = ('members', 'undoc-members')
|