Skip to content

Commit

Permalink
Update conf.py and index.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Aminsinichi committed Feb 27, 2024
1 parent 110d32e commit baf4f4c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import os
import sys
sys.path.insert(0, os.path.abspath('../..'))

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

Expand All @@ -14,10 +18,6 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

import os
import sys
sys.path.insert(0, os.path.abspath('..'))

extensions = ['sphinx.ext.autodoc']

templates_path = ['_templates']
Expand Down
6 changes: 5 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ Welcome to wearablehrv's documentation!
:maxdepth: 2
:caption: Contents:

.. automodule:: wearablehrv
.. automodule:: wearablehrv.individual
:members:
:undoc-members:
:show-inheritance:

.. automodule:: wearablehrv.group
:members:
:undoc-members:
:show-inheritance:

Indices and tables
==================
Expand Down

0 comments on commit baf4f4c

Please sign in to comment.