-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
466997a
commit 5934d7d
Showing
1 changed file
with
21 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,67 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# This file only contains a selection of the most common options. For a full | ||
# list see the documentation: | ||
# For the full list of built-in configuration values, see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Path setup -------------------------------------------------------------- | ||
|
||
# If extensions (or modules to document with autodoc) are in another directory, | ||
# add these directories to sys.path here. If the directory is relative to the | ||
# documentation root, use os.path.abspath to make it absolute, like shown here. | ||
|
||
# | ||
import os | ||
import sys | ||
|
||
sys.path.insert(0, os.path.abspath("./ext")) | ||
sys.path.insert(0, os.path.abspath("../")) | ||
|
||
from screenpy_requests.__version__ import ( | ||
__version__, | ||
__author__, | ||
__copyright__, | ||
) # noqa: need the path first | ||
from screenpy_requests.__version__ import __version__, __author__, __copyright__ | ||
|
||
autodoc_mock_imports = ["selenium", "screenpy", "screenpy_pyotp"] | ||
|
||
|
||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
project = "screenpy_requests" | ||
copyright = __copyright__ | ||
author = __author__ | ||
|
||
# The full version, including alpha/beta/rc tags | ||
release = __version__ | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | ||
|
||
# Add any Sphinx extension module names here, as strings. They can be | ||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | ||
# ones. | ||
extensions = [ | ||
"sphinx.ext.intersphinx", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.autosectionlabel", | ||
"sphinx.ext.intersphinx", | ||
"sphinx_rtd_theme", | ||
"autodoc_skip_protocols", | ||
] | ||
|
||
intersphinx_mapping = { | ||
"screenpy": ("https://screenpy-docs.readthedocs.io/en/latest/", None), | ||
"requests": ("https://docs.python-requests.org/en/latest/", None), | ||
} | ||
|
||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ["_templates"] | ||
templates_path = ['_templates'] | ||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] | ||
|
||
rst_prolog = """.. External references | ||
.. |request| replace:: `Session.request <https://requests.readthedocs.io/en/master/api/#requests.Session.request>`__ | ||
.. |Requests| replace:: `Requests <https://requests.readthedocs.io/en/master/>`__ | ||
""" | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# 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"] | ||
|
||
|
||
|
||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#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" | ||
|
||
# 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_theme = "sphinx_rtd_theme" | ||
html_static_path = [] | ||
|
||
# Other HTML settings | ||
autodoc_member_order = "bysource" | ||
add_module_names = False | ||
|
||
|
||
# -- Options for intersphinx extension --------------------------------------- | ||
|
||
# Example configuration for intersphinx: refer to the Python standard library. | ||
intersphinx_mapping = { | ||
"screenpy": ("https://screenpy-docs.readthedocs.io/en/latest/", None), | ||
"requests": ("https://docs.python-requests.org/en/latest/", None), | ||
} |