1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# mypy: ignore-errors
# -- Path setup --------------------------------------------------------------
import os
import sys
sys.path.insert(0, os.path.abspath(".."))
about = {}
with open("../arrow/_version.py", encoding="utf-8") as f:
exec(f.read(), about)
# -- Project information -----------------------------------------------------
project = "Arrow 🏹"
copyright = "2023, Chris Smith"
author = "Chris Smith"
release = about["__version__"]
# -- General configuration ---------------------------------------------------
extensions = [
"sphinx.ext.autodoc",
"sphinx_autodoc_typehints",
"sphinx_rtd_theme",
]
templates_path = []
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
master_doc = "index"
source_suffix = ".rst"
pygments_style = "sphinx"
language = "en"
# -- Options for HTML output -------------------------------------------------
html_theme = "sphinx_rtd_theme"
html_theme_path = []
html_static_path = []
html_show_sourcelink = False
html_show_sphinx = False
html_show_copyright = True
html_context = {
"display_github": True,
"github_user": "arrow-py",
"github_repo": "arrow",
"github_version": "master/docs/",
}
# https://sphinx-rtd-theme.readthedocs.io/en/stable/index.html
html_theme_options = {
"logo_only": False,
"prev_next_buttons_location": "both",
"style_nav_header_background": "grey",
# TOC options
"collapse_navigation": False,
"navigation_depth": 3,
}
# Generate PDFs with unicode characters
# https://docs.readthedocs.io/en/stable/guides/pdf-non-ascii-languages.html
latex_engine = "xelatex"
|