Skip to content

Commit

Permalink
Adding conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipyosief committed Nov 3, 2024
1 parent 4545337 commit d476b9a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -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']

0 comments on commit d476b9a

Please sign in to comment.