2022-04-27 14:50:41 +01:00
|
|
|
import builtins
|
2022-03-10 14:26:22 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath('..'))
|
|
|
|
|
2022-04-27 14:50:41 +01:00
|
|
|
builtins.__sphinx_build__ = True
|
2022-03-10 14:26:22 +00:00
|
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
|
2022-05-01 15:34:58 +01:00
|
|
|
project = 'Bypass Censorship Portal'
|
2024-11-16 19:07:31 +00:00
|
|
|
copyright = '2021-202r SR2 Communications Limited'
|
2022-03-10 14:26:22 +00:00
|
|
|
author = 'Bypass Censorship'
|
|
|
|
|
|
|
|
|
|
|
|
# -- 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 = [
|
2022-04-08 17:48:07 +01:00
|
|
|
'sphinx.ext.autodoc',
|
2024-12-02 00:00:28 +00:00
|
|
|
'sphinxcontrib.mermaid',
|
|
|
|
'sphinxcontrib.openapi'
|
2022-03-10 14:26:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
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']
|
|
|
|
|
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
|
|
|
#
|
2024-12-02 00:00:28 +00:00
|
|
|
html_theme = 'furo'
|
2022-03-10 14:26:22 +00:00
|
|
|
|
|
|
|
# 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']
|