diff --git a/docs/conf.py b/docs/conf.py index 80cac14..11dbcaa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,8 @@ # The full version, including alpha/beta/rc tags release = __version__ - +master_doc = 'index' +source_suffix = ['.rst', '.md'] # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be @@ -36,7 +37,7 @@ 'myst_parser', 'sphinx.ext.autodoc', 'sphinx.ext.inheritance_diagram', - 'autoapi.sphinx', + 'autoapi.extension', ] extensions.append('sphinx.ext.intersphinx') @@ -46,7 +47,7 @@ 'python': ('https://docs.python.org/3/', None), } -autoapi_modules = {'pyglider': None} +autoapi_dirs = ['../pyglider'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']