Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
noahfranz13 committed Jul 12, 2024
1 parent 78c8213 commit 38fcc0f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import syncfit
# import syncfit
from typing import List
import sys
import os
Expand All @@ -23,6 +23,7 @@
sys.path.insert(0, os.path.abspath("."))
sys.path.insert(0, os.path.abspath("../"))
sys.path.insert(0, os.path.abspath("../src/syncfit")) # needed for autodocs
sys.path.insert(0, os.path.abspath("../src/syncfit/models")) # needed for autodocs

# -- Project information -----------------------------------------------------

Expand All @@ -31,8 +32,9 @@
author = 'Noah Franz, Collin Christy'

# The full version, including alpha/beta/rc tags
release = syncfit.__version__
version = syncfit.__version__
from _version import __version__ as _v
release = _v
version = _v


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions docs/source.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Source Documentation

`syncfit.models`
----------------
.. autoclass:: syncfit.models.MQModel
:members:
:inherited-members:

.. autoclass:: syncfit.models.B5
:members:
Expand Down

0 comments on commit 38fcc0f

Please sign in to comment.