pyodide/docs/conf.py

187 lines
5.3 KiB
Python

# Configuration file for the Sphinx documentation builder.
# -- Path setup --------------------------------------------------------------
import atexit
import os
import sys
import shutil
import subprocess
from pathlib import Path
from typing import Any
# -- Project information -----------------------------------------------------
project = "Pyodide"
copyright = "2019-2021, Pyodide contributors and Mozilla"
# -- General configuration ---------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinxcontrib.napoleon",
"myst_parser",
"sphinx_js",
"autodocsumm",
"sphinx_panels",
"sphinx_pyodide",
"sphinx_argparse_cli",
"versionwarning.extension",
"sphinx_issues",
]
myst_enable_extensions = ["substitution"]
js_language = "typescript"
jsdoc_config_path = "../src/js/tsconfig.json"
root_for_relative_js_paths = "../src/"
issues_github_path = "pyodide/pyodide"
versionwarning_messages = {
"latest": (
"This is the development version of the documentation. "
'See <a href="https://pyodide.org/">here</a> for latest stable '
"documentation. Please do not use Pyodide with non "
"versioned (`dev`) URLs from the CDN for deployed applications!"
)
}
versionwarning_body_selector = "#main-content > div"
autosummary_generate = True
autodoc_default_flags = ["members", "inherited-members"]
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The suffix(es) of source filenames.
source_suffix = [".rst", ".md"]
# The master toctree document.
master_doc = "index"
# The language for content autogenerated by Sphinx.
language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "README.md"]
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None
# -- 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 = "sphinx_book_theme"
html_logo = "_static/img/pyodide-logo.png"
# theme-specific options
html_theme_options: dict[str, Any] = {}
# paths that contain custom static files (such as style sheets)
html_static_path = ["_static"]
html_css_files = [
"css/pyodide.css",
]
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
# html_sidebars = {}
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = "Pyodidedoc"
# A list of files that should not be packed into the epub file.
epub_exclude_files = ["search.html"]
def delete_attrs(cls):
for name in dir(cls):
if not name.startswith("_"):
try:
delattr(cls, name)
except:
pass
# Try not to cause side effects if we are imported incidentally.
try:
import sphinx
IN_SPHINX = hasattr(sphinx, "application")
except ImportError:
IN_SPHINX = False
IN_READTHEDOCS = "READTHEDOCS" in os.environ
if IN_READTHEDOCS:
env = {"PYODIDE_BASE_URL": "https://cdn.jsdelivr.net/pyodide/dev/full/"}
os.makedirs("_build/html", exist_ok=True)
res = subprocess.check_output(
["make", "-C", "..", "docs/_build/html/console.html"],
env=env,
stderr=subprocess.STDOUT,
encoding="utf-8",
)
print(res)
if IN_SPHINX:
base_dir = Path(__file__).resolve().parent.parent
path_dirs = [
str(base_dir),
str(base_dir / "pyodide-build"),
str(base_dir / "docs/sphinx_pyodide"),
str(base_dir / "src/py"),
str(base_dir / "packages/micropip/src"),
]
sys.path = path_dirs + sys.path
import micropip # noqa
import pyodide
# We hacked it so that autodoc will look for submodules, but only if we import
# them here. TODO: look these up in the source directory?
import pyodide.console
import pyodide.http
import pyodide.webloop
# The full version, including alpha/beta/rc tags.
release = version = pyodide.__version__
html_title = f"Version {version}"
shutil.copy("../src/core/pyproxy.ts", "../src/js/pyproxy.gen.ts")
shutil.copy("../src/core/error_handling.ts", "../src/js/error_handling.gen.ts")
js_source_path = [str(x) for x in Path("../src/js").glob("*.ts")]
def remove_pyproxy_gen_ts():
Path("../src/js/pyproxy.gen.ts").unlink(missing_ok=True)
atexit.register(remove_pyproxy_gen_ts)
os.environ["PATH"] += f':{str(Path("../src/js/node_modules/.bin").resolve())}'
print(os.environ["PATH"])
if IN_READTHEDOCS:
subprocess.run(["npm", "ci"], cwd="../src/js")
elif not shutil.which("typedoc"):
raise Exception(
"Before building the Pyodide docs you must run 'npm install' in 'src/js'."
)
# Prevent API docs for webloop methods: they are the same as for base event loop
# and it clutters api docs too much
delete_attrs(pyodide.webloop.WebLoop)
delete_attrs(pyodide.webloop.WebLoopPolicy)
delete_attrs(pyodide.console.PyodideConsole)