Skip to content

Commit

Permalink
separated class constructors from class definitions within generated …
Browse files Browse the repository at this point in the history
…spinx documentation
  • Loading branch information
hazzery committed Oct 24, 2024
1 parent 3f6b02f commit 67d8cb1
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

sys.path.insert(0, os.path.abspath("../"))

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

project = "MessageCipher"
version = "1.2.0"
copyright = "2023, Harrison Parkes"
author = "Harrison Parkes"

# -- General configuration ---------------------------------------------------
# -- General configuration -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = ["sphinx.ext.autodoc"]
Expand All @@ -25,8 +25,13 @@
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
autodoc_typehints = "both"

# -- Options for HTML output -------------------------------------------------
# -- Options for HTML output ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]

# -- Options for autodoc extension ---------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html

autodoc_class_signature = "separated"

0 comments on commit 67d8cb1

Please sign in to comment.