|
12 | 12 | # |
13 | 13 | import os |
14 | 14 | import sys |
15 | | -sys.path.append(os.path.abspath('../..')) |
| 15 | + |
| 16 | +sys.path.append(os.path.abspath("../..")) |
16 | 17 |
|
17 | 18 |
|
18 | 19 | # -- Project information ----------------------------------------------------- |
19 | 20 |
|
20 | | -project = 'Cornac' |
21 | | -copyright = '2023, Preferred.AI' |
22 | | -author = 'Preferred.AI' |
| 21 | +project = "Cornac" |
| 22 | +copyright = "2023, Preferred.AI" |
| 23 | +author = "Preferred.AI" |
23 | 24 |
|
24 | 25 | # The short X.Y version |
25 | | -version = '2.3' |
| 26 | +version = "2.3" |
26 | 27 | # The full version, including alpha/beta/rc tags |
27 | | -release = '2.3.2' |
| 28 | +release = "2.3.3" |
28 | 29 |
|
29 | 30 |
|
30 | 31 | # -- General configuration --------------------------------------------------- |
|
33 | 34 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
34 | 35 | # ones. |
35 | 36 | extensions = [ |
36 | | - 'sphinx.ext.autodoc', |
37 | | - 'sphinx.ext.intersphinx', |
38 | | - 'sphinx.ext.ifconfig', |
39 | | - 'sphinx.ext.viewcode', |
40 | | - 'sphinx.ext.autosummary', |
41 | | - 'sphinx.ext.doctest', |
42 | | - 'sphinx.ext.todo', |
43 | | - 'sphinx.ext.coverage', |
44 | | - 'sphinx.ext.mathjax', |
45 | | - 'sphinx.ext.napoleon', |
46 | | - 'sphinx_design', |
47 | | - 'myst_parser', |
48 | | - 'sphinx_copybutton' |
| 37 | + "sphinx.ext.autodoc", |
| 38 | + "sphinx.ext.intersphinx", |
| 39 | + "sphinx.ext.ifconfig", |
| 40 | + "sphinx.ext.viewcode", |
| 41 | + "sphinx.ext.autosummary", |
| 42 | + "sphinx.ext.doctest", |
| 43 | + "sphinx.ext.todo", |
| 44 | + "sphinx.ext.coverage", |
| 45 | + "sphinx.ext.mathjax", |
| 46 | + "sphinx.ext.napoleon", |
| 47 | + "sphinx_design", |
| 48 | + "myst_parser", |
| 49 | + "sphinx_copybutton", |
49 | 50 | ] |
50 | 51 |
|
51 | 52 | # Add any paths that contain templates here, relative to this directory. |
52 | | -templates_path = ['_templates'] |
| 53 | +templates_path = ["_templates"] |
53 | 54 |
|
54 | 55 | # List of patterns, relative to source directory, that match files and |
55 | 56 | # directories to ignore when looking for source files. |
56 | 57 | # This pattern also affects html_static_path and html_extra_path. |
57 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 58 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
58 | 59 |
|
59 | 60 |
|
60 | 61 | # -- Options for HTML output ------------------------------------------------- |
61 | 62 |
|
62 | 63 | # The theme to use for HTML and HTML Help pages. See the documentation for |
63 | 64 | # a list of builtin themes. |
64 | 65 | # |
65 | | -html_theme = 'pydata_sphinx_theme' |
| 66 | +html_theme = "pydata_sphinx_theme" |
66 | 67 |
|
67 | 68 | # Add any paths that contain custom static files (such as style sheets) here, |
68 | 69 | # relative to this directory. They are copied after the builtin static files, |
|
104 | 105 | "**": ["page-toc", "sourcelink"], |
105 | 106 | "index": [], |
106 | 107 | "models/index": [], |
107 | | - } |
| 108 | + }, |
108 | 109 | } |
109 | 110 |
|
110 | 111 | html_sidebars = { |
|
115 | 116 | # -- Options for intersphinx extension --------------------------------------- |
116 | 117 |
|
117 | 118 | # Example configuration for intersphinx: refer to the Python standard library. |
118 | | -intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} |
| 119 | +intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} |
0 commit comments