conf   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 78
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 25
dl 0
loc 78
rs 10
c 0
b 0
f 0
1
# Configuration file for the Sphinx documentation builder.
2
#
3
# This file only contains a selection of the most common options. For a full
4
# list see the documentation:
5
# https://www.sphinx-doc.org/en/master/usage/configuration.html
6
7
# -- Path setup --------------------------------------------------------------
8
9
# If extensions (or modules to document with autodoc) are in another directory,
10
# add these directories to sys.path here. If the directory is relative to the
11
# documentation root, use os.path.abspath to make it absolute, like shown here.
12
#
13
# import os
14
# import sys
15
# sys.path.insert(0, os.path.abspath('.'))
16
17
18
# -- Project information -----------------------------------------------------
19
20
project = 'apoor'
21
copyright = '2020, Austin Poor'
22
author = 'Austin Poor'
23
24
# The full version, including alpha/beta/rc tags
25
release = '1.3.2'
26
27
28
# -- General configuration ---------------------------------------------------
29
30
# Add any Sphinx extension module names here, as strings. They can be
31
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32
# ones.
33
extensions = [
34
    "sphinx.ext.napoleon",
35
    'sphinx.ext.autodoc',
36
]
37
38
39
# Napoleon settings
40
napoleon_google_docstring = True
41
napoleon_numpy_docstring = True
42
napoleon_include_init_with_doc = False
43
napoleon_include_private_with_doc = False
44
napoleon_include_special_with_doc = True
45
napoleon_use_admonition_for_examples = False
46
napoleon_use_admonition_for_notes = False
47
napoleon_use_admonition_for_references = False
48
napoleon_use_ivar = False
49
napoleon_use_param = True
50
napoleon_use_rtype = True
51
napoleon_type_aliases = None
52
53
54
master_doc = 'index'
55
56
57
# Add any paths that contain templates here, relative to this directory.
58
templates_path = ['_templates']
59
60
# List of patterns, relative to source directory, that match files and
61
# directories to ignore when looking for source files.
62
# This pattern also affects html_static_path and html_extra_path.
63
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
64
65
66
# -- Options for HTML output -------------------------------------------------
67
68
# The theme to use for HTML and HTML Help pages.  See the documentation for
69
# a list of builtin themes.
70
#
71
html_theme = 'alabaster'
72
# html_theme = 'flask'
73
74
# Add any paths that contain custom static files (such as style sheets) here,
75
# relative to this directory. They are copied after the builtin static files,
76
# so a file named "default.css" will overwrite the builtin "default.css".
77
html_static_path = ['_static']