RetroDECK/docs/conf.py

28 lines
645 B
Python
Raw Normal View History

2023-08-28 14:29:16 +00:00
project = 'RetroDECK'
author = 'RetroDECK Team'
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.mathjax',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
2023-08-28 14:45:47 +00:00
'sphinx_rtd_theme',
2023-08-28 14:54:54 +00:00
'myst_parser',
2023-08-28 14:29:16 +00:00
]
2023-08-28 14:32:54 +00:00
language = 'English'
2023-08-28 14:29:16 +00:00
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
2023-08-28 15:49:43 +00:00
html_theme = "sphinx_rtd_theme"
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
source_suffix = [".rst", ".md", ".html"]
# source_suffix = '.rst'
# The master toctree document.
master_doc = "index"