Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
mccrindlebrian committed Dec 18, 2024
1 parent afbb4e8 commit 8b677ff
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,34 @@

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

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

project = 'atom'
copyright = '2024, Macrocosmos'
author = 'Macrocosmos'
release = '1.0.0'
project = "atom"
copyright = "2024, Macrocosmos"
author = "Macrocosmos"
release = "1.0.0"

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

extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'sphinx.ext.autosummary',
'sphinx_autodoc_typehints' # Render type hints nicely

"sphinx.ext.autodoc",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
"sphinx.ext.autosummary",
"sphinx_autodoc_typehints", # Render type hints nicely
]

templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]


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

html_theme = 'sphinx_book_theme'
html_static_path = ['_static']
html_theme = "sphinx_book_theme"
html_static_path = ["_static"]

0 comments on commit 8b677ff

Please sign in to comment.