diff --git a/docs/source/conf.py b/docs/source/conf.py index d76bece..2ef3bae 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,3 +1,4 @@ +import guzzle_sphinx_theme # Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full @@ -70,3 +71,16 @@ napoleon_use_admonition_for_references = False napoleon_use_ivar = False napoleon_use_param = True napoleon_use_rtype = True + + +html_theme_path = guzzle_sphinx_theme.html_theme_path() +html_theme = 'guzzle_sphinx_theme' + +# Register the theme as an extension to generate a sitemap.xml +extensions.append("guzzle_sphinx_theme") + +# Guzzle theme options (see theme.conf for more information) +html_theme_options = { + # Set the name of the project to appear in the sidebar + "project_nav_name": "Project Name", +} diff --git a/docs/source/index.rst b/docs/source/index.rst index fa578f0..26f871b 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -18,7 +18,7 @@ API Support | ☑️ download a specific file | ☑️ create a directory | ☑️ move / rename a file or directory -| ☑️ upload a file +| ❎ upload a file | ❎ delete a file or directory | ❎ shell | ❎ annotiation exports diff --git a/requirements.txt b/requirements.txt index f777b44..02b6e19 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,5 @@ requests pyaml==19.4.1 sphinx==2.2.0 sphinx-autodoc-typehints==1.8.0 +guzzle-sphinx-theme==0.7.11