diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-10-12 17:24:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 17:24:22 +0200 |
commit | 9054a3be492091f3a323914ee24b682f993c9fcb (patch) | |
tree | a34a487bbfde0ca16614c1d7772ae4aa34b82ef4 /docs/conf.py | |
parent | 8cb8040198a6183c7c4bd3745af800fcf303fe43 (diff) | |
parent | 6c21fc83d3d6173bffb60e686ec579f875f8bebe (diff) | |
download | gitlab-9054a3be492091f3a323914ee24b682f993c9fcb.tar.gz |
Merge pull request #1209 from python-gitlab/docs/cli-reference-page
docs(cli): add auto-generated CLI reference
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index a5e5406..681af22 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,7 +39,12 @@ sys.path.insert(0, os.path.abspath("..")) # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ["sphinx.ext.autodoc", "sphinx.ext.autosummary", "ext.docstrings"] +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.autosummary", + "ext.docstrings", + "sphinxcontrib.autoprogram", +] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] |