Skip to content

Commit

Permalink
Update conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
menckend authored Oct 25, 2024
1 parent a6a7fb1 commit e8c2256
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,21 @@

# -- Extensions to use ---------------------------------------------------
extensions = [
'autoapi.extension',
'sphinx.ext.napoleon',
'autoapi.extension'
'myst_parser',
'sphinx.ext.autodoc', # Core Sphinx library for auto html doc generation from docstrings
'sphinx.ext.autodoc.typehints',
'sphinx.ext.autosummary', # Create neat summary tables for modules/classes/methods etc
'sphinx.ext.intersphinx', # Link to other project's documentation (see mapping below)
'sphinx.ext.napoleon',
'sphinx.ext.viewcode', # Add a link to the Python source code for classes, functions etc.
'sphinx_autodoc_typehints', # Automatically document param types (less noise in class signature)
]

# -- Autoapi extension configuraiton ---------------------------------------------------
autodoc_typehints = "description"
autoapi_template_dir = "_templates/autoapi"
autoapi_own_page_level = "function"
autoapi_own_page_level = "module"
autoapi_dirs = ['../netbox_ptov/']
autoapi_type = "python"
autoapi_options = [
Expand Down

0 comments on commit e8c2256

Please sign in to comment.