diff --git a/docs/conf.py b/docs/conf.py index 6d39abd..d523602 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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__ @@ -47,12 +47,12 @@ } # 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 ------------------------------------------------- @@ -60,12 +60,12 @@ # 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"