Update documentation and add missing dependencies

This commit is contained in:
2024-01-31 10:33:42 -05:00
parent 3d199df11c
commit 425f6479c4
3 changed files with 199 additions and 9 deletions
+14 -4
View File
@@ -3,18 +3,28 @@
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import neon_client
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "neon-client"
copyright = "2024, Neon, Inc."
author = "Neon, Inc."
release = "0.1.0"
copyright = "2024 Neon, Inc"
author = "Neon, Inc"
release = neon_client.__version__
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = []
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx.ext.viewcode",
"sphinx.ext.autosummary",
"sphinx.ext.intersphinx",
"sphinx.ext.autosectionlabel",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]