# Configuration file for the Sphinx documentation builder. | |
# | |
# For the full list of built-in configuration values, see the documentation: | |
# https://www.sphinx-doc.org/en/master/usage/configuration.html | |
# -- Project information ----------------------------------------------------- | |
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | |
import os | |
import sys | |
project = 'SamGIS' | |
copyright = '2023, alessandro trinca tornidor' | |
author = 'alessandro trinca tornidor' | |
release = '1.0.0' | |
# -- General configuration --------------------------------------------------- | |
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | |
sys.path.insert(0, os.path.abspath('..')) | |
extensions = [ | |
'sphinx.ext.autodoc', | |
'sphinx.ext.viewcode', | |
'sphinx.ext.napoleon', | |
'sphinx_autodoc_typehints' | |
# 'sphinx_autodoc_defaultargs' | |
] | |
# Napoleon settings | |
napoleon_google_docstring = True | |
# napoleon_include_init_with_doc = False | |
# napoleon_include_private_with_doc = False | |
# napoleon_include_special_with_doc = True | |
# napoleon_use_admonition_for_examples = False | |
# napoleon_use_admonition_for_notes = False | |
# napoleon_use_admonition_for_references = False | |
# napoleon_use_ivar = False | |
# napoleon_use_param = True | |
# napoleon_use_rtype = True | |
# napoleon_preprocess_types = False | |
# napoleon_type_aliases = None | |
# napoleon_attr_annotations = True | |
# | |
typehints_defaults = "comma" | |
templates_path = ['_templates'] | |
exclude_patterns = [ | |
'_build', 'Thumbs.db', '.DS_Store', 'build/*', 'machine_learning_models', 'machine_learning_models/*' | |
] | |
source_suffix = { | |
'.rst': 'restructuredtext', | |
'.txt': 'restructuredtext', | |
'.md': 'markdown', | |
} | |
# default args values | |
rst_prolog = """ | |
.. |default| raw:: html | |
<div class="default-value-section">""" + \ | |
' <span class="default-value-label">Default:</span>' | |
# -- Options for HTML output ------------------------------------------------- | |
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | |
html_theme = 'alabaster' | |
html_sidebars = { | |
'**': [ | |
'about.html', | |
'navigation.html', | |
'relations.html', | |
'searchbox.html', | |
'donate.html', | |
] | |
} | |
html_static_path = ['_static'] | |
html_theme_options = { | |
"description": "Segment Anything applied to geodata", | |
"fixed_sidebar": "true", | |
"sidebar_collapse": "false" | |
} | |