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
|
import sphinx_rtd_theme
import check_systemd
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
]
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'check_systemd'
copyright = u'2020, Josef Friedrich'
author = u'Josef Friedrich'
version = check_systemd.__version__
release = check_systemd.__version__
language = None
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
todo_include_todos = False
html_static_path = []
htmlhelp_basename = 'checksystemddoc'
autodoc_default_flags = ['members', 'undoc-members', 'private-members', 'show-inheritance']
|