31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# This file only contains a selection of the most common options. For a full
|
|
# list see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
# -- Path setup --------------------------------------------------------------
|
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
#
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.abspath('../../src/caimira/calculator'))
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
project = 'CAiMIRA'
|
|
author = 'Andre Henriques et al.'
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
extensions = ['sphinx.ext.autodoc', 'sphinx_markdown_builder']
|
|
|
|
# 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']
|
|
|
|
add_module_names = False
|