From d476b9aaa8f138e2ac7d87602a67375bd4580d93 Mon Sep 17 00:00:00 2001 From: phillipjeromeyosief Date: Sun, 3 Nov 2024 17:38:16 +0100 Subject: [PATCH] Adding conf.py --- docs/conf.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/conf.py diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..401246f --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,32 @@ +# Configuration file for the Sphinx documentation builder. + +# -- Path setup -------------------------------------------------------------- + +import os +import sys +sys.path.insert(0, os.path.abspath('..')) + +# -- Project information ----------------------------------------------------- + +project = 'omnivista_py' +copyright = '2024, Phillip Jerome Yosief' +author = 'Phillip Jerome Yosief' + +# The full version, including alpha/beta/rc tags +release = '0.3.8' + +# -- General configuration --------------------------------------------------- + +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.napoleon', + 'sphinx_autodoc_typehints', +] + +templates_path = ['_templates'] +exclude_patterns = [] + +# -- Options for HTML output ------------------------------------------------- + +html_theme = 'sphinx_rtd_theme' +html_static_path = ['_static'] \ No newline at end of file