Skip to content

Commit

Permalink
sync confg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bandophahita committed Feb 16, 2024
1 parent 9bb1e34 commit 4a88d9d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
sys.path.insert(0, os.path.abspath("./ext"))
sys.path.insert(0, os.path.abspath("../"))

from screenpy_pyotp.__version__ import __version__ # noqa: need the path first
from screenpy_pyotp.__version__ import __author__, __copyright__, __version__

autodoc_mock_imports = ["pyotp", "screenpy"]


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

project = 'ScreenPy PyOTP'
copyright = '2022-2023, Perry Goy'
author = 'Perry Goy'
project = "ScreenPy PyOTP"
copyright = __copyright__
author = __author__

# The full version, including alpha/beta/rc tags
release = __version__
Expand All @@ -47,25 +47,25 @@
}

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

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'default'
html_theme = "default"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]

# Other HTML settings
autodoc_member_order = "bysource"
Expand Down

0 comments on commit 4a88d9d

Please sign in to comment.