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
+ import divio_docs_theme
16
+
17
+ sys .path .insert (0 , os .path .abspath ('..' ))
18
+
19
+ # import sphinx_gallery
20
+
21
+ # -- Project information -----------------------------------------------------
22
+
23
+ project = 'NoiseFiltersPy'
24
+ copyright = '2021, Juliana Hosoume and Luís Paulo Faina Garcia'
25
+ author = 'Juliana Hosoume and Luís Paulo Faina Garcia'
26
+
27
+ # The full version, including alpha/beta/rc tags
28
+ release = '0.0.1'
29
+
30
+
31
+ # -- General configuration ---------------------------------------------------
32
+
33
+ # Add any Sphinx extension module names here, as strings. They can be
34
+ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
35
+ # ones.
36
+ extensions = [
37
+ 'sphinx.ext.autodoc' ,
38
+ 'sphinx.ext.autosummary' ,
39
+ 'sphinx.ext.intersphinx' ,
40
+ # 'sphinx_gallery.gen_gallery',
41
+ 'sphinx.ext.mathjax' ,
42
+ 'sphinx.ext.viewcode' ,
43
+ 'numpydoc' ,
44
+ ]
45
+
46
+ # Add any paths that contain templates here, relative to this directory.
47
+ templates_path = ['_templates' ]
48
+
49
+ # List of patterns, relative to source directory, that match files and
50
+ # directories to ignore when looking for source files.
51
+ # This pattern also affects html_static_path and html_extra_path.
52
+ exclude_patterns = []
53
+
54
+
55
+ # -- Options for HTML output -------------------------------------------------
56
+
57
+ # The theme to use for HTML and HTML Help pages. See the documentation for
58
+ # a list of builtin themes.
59
+ #
60
+ html_theme = 'divio_docs_theme'
61
+
62
+ # Add any paths that contain custom static files (such as style sheets) here,
63
+ # relative to this directory. They are copied after the builtin static files,
64
+ # so a file named "default.css" will overwrite the builtin "default.css".
65
+ html_static_path = ['_static' ]
0 commit comments