Skip to content
Snippets Groups Projects
Commit 9a4e87fd authored by Erik Reid's avatar Erik Reid
Browse files

added some sphinx config

parent af8d12de
Branches
Tags
No related merge requests found
......@@ -14,6 +14,14 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import os
import sys
sys.path.insert(0, os.path.abspath(
os.path.join(
os.path.dirname(__file__),
'..', '..', 'inventory_provider')))
# -- Project information -----------------------------------------------------
......@@ -31,6 +39,9 @@ release = '0.57'
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx_rtd_theme',
'sphinx.ext.autodoc',
'sphinx.ext.coverage'
]
# Add any paths that contain templates here, relative to this directory.
......@@ -52,4 +63,9 @@ html_theme = 'alabaster'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
\ No newline at end of file
html_static_path = ['_static']
# Both the class’ and the __init__ method’s docstring
# are concatenated and inserted.
autoclass_content = "both"
autodoc_typehints = "none"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment