forked from cleveragents/cleveragents-core
60 lines
1.5 KiB
Python
60 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath("../src"))
|
|
|
|
|
|
extensions = [
|
|
"sphinx.ext.autodoc",
|
|
"sphinx.ext.autosummary",
|
|
"sphinx.ext.coverage",
|
|
"sphinx.ext.doctest",
|
|
"sphinx.ext.extlinks",
|
|
"sphinx.ext.ifconfig",
|
|
"sphinx.ext.napoleon",
|
|
"sphinx.ext.todo",
|
|
"sphinx.ext.viewcode",
|
|
]
|
|
if os.getenv("SPELLCHECK"):
|
|
extensions += ("sphinxcontrib.spelling",)
|
|
spelling_show_suggestions = True
|
|
spelling_lang = "en_US"
|
|
|
|
source_suffix = ".rst"
|
|
master_doc = "index"
|
|
project = "CleverAgents"
|
|
year = "2024"
|
|
author = "Jeffrey Phillips Freeman"
|
|
copyright = "{0}, {1}".format(year, author)
|
|
version = release = "0.1.0"
|
|
|
|
pygments_style = "trac"
|
|
templates_path = ["."]
|
|
extlinks = {
|
|
"issue": ("https://git.cleverthis.com/cleverthis/cleveragents/-/issues%s", "#"),
|
|
"pr": (
|
|
"https://git.cleverthis.com/cleverthis/cleveragents/-/merge_requests%s",
|
|
"PR #",
|
|
),
|
|
}
|
|
import sphinx_py3doc_enhanced_theme
|
|
|
|
html_theme = "sphinx_py3doc_enhanced_theme"
|
|
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]
|
|
html_theme_options = {"githuburl": "https://git.cleverthis.com/cleverthis/cleveragents"}
|
|
|
|
html_use_smartypants = True
|
|
html_last_updated_fmt = "%b %d, %Y"
|
|
html_split_index = False
|
|
html_sidebars = {
|
|
"**": ["searchbox.html", "globaltoc.html", "sourcelink.html"],
|
|
}
|
|
html_short_title = "%s-%s" % (project, version)
|
|
|
|
napoleon_use_ivar = True
|
|
napoleon_use_rtype = False
|
|
napoleon_use_param = False
|