diff options
-rw-r--r-- | doc_generator/conf.py | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/doc_generator/conf.py b/doc_generator/conf.py index 428f0a1..528cd72 100644 --- a/doc_generator/conf.py +++ b/doc_generator/conf.py @@ -8,31 +8,32 @@ import os # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = 'qolab' -copyright = 'qolab developers' -author = 'Eugeniy Mikhailov' -release = '0.15' +project = "qolab" +copyright = "qolab developers" +author = "Eugeniy Mikhailov" +release = "0.15" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = [ - 'autoapi.extension', + "autoapi.extension", # 'sphinx.ext.autodoc', # 'sphinx.ext.autosummary', # 'sphinx.ext.viewcode', - 'sphinx.ext.napoleon', - 'sphinx_rtd_theme'] + "sphinx.ext.napoleon", + "sphinx_rtd_theme", +] # extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary'] -autoapi_dirs = ['../qolab'] +autoapi_dirs = ["../qolab"] autoapi_keep_files = True -templates_path = ['_templates'] +templates_path = ["_templates"] exclude_patterns = [] -sys.path.insert(0, os.path.abspath('..')) +sys.path.insert(0, os.path.abspath("..")) # autosummary_generate = True -autosummary_mock_imports = ['pandas', 'universal_tsdb', 'justpy', 'ue9', 'cachetools'] +autosummary_mock_imports = ["pandas", "universal_tsdb", "justpy", "ue9", "cachetools"] napoleon_google_docstring = True napoleon_numpy_docstring = True @@ -44,5 +45,5 @@ napoleon_numpy_docstring = True smartquotes = False # html_theme = 'alabaster' # html_theme = 'sphinx_rtd_theme' -html_theme = 'furo' -html_static_path = ['_static'] +html_theme = "furo" +html_static_path = ["_static"] |