Skip to content

Commit

Permalink
Try to Fix docs generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Sep 12, 2024
1 parent 5c0500a commit 472da00
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
import sys
sys.path.insert(0, os.path.abspath('../..')) # Source code dir relative to this file

extensions = [
'sphinx.ext.autodoc', # Core library for html generation from docstrings
'sphinx.ext.autosummary', # Create neat summary tables
]
autosummary_generate = True # Turn on sphinx.ext.autosummary

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

0 comments on commit 472da00

Please sign in to comment.