|
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 | 1 | import os |
14 | 2 | import sys |
15 | | -sys.path.insert(0, os.path.abspath('.')) |
16 | 3 | from vetiver import __version__ |
17 | 4 |
|
| 5 | +sys.path.insert(0, os.path.abspath(".")) |
| 6 | + |
18 | 7 |
|
19 | 8 | # -- Project information ----------------------------------------------------- |
20 | 9 |
|
|
38 | 27 | "sphinx.ext.napoleon", |
39 | 28 | "sphinx.ext.githubpages", |
40 | 29 | "sphinx.ext.autodoc", |
41 | | - "myst_parser" |
| 30 | + "myst_parser", |
42 | 31 | ] |
43 | 32 | # Add any paths that contain templates here, relative to this directory. |
44 | 33 | templates_path = ["_templates"] |
|
61 | 50 | "use_repository_button": True, |
62 | 51 | "use_issues_button": True, |
63 | 52 | "use_edit_page_button": True, |
64 | | - "home_page_in_toc": True |
65 | | - |
| 53 | + "home_page_in_toc": True, |
66 | 54 | } |
67 | 55 |
|
68 | 56 | source_suffix = { |
69 | | - '.rst': 'restructuredtext', |
70 | | - '.txt': 'markdown', |
71 | | - '.md': 'markdown', |
| 57 | + ".rst": "restructuredtext", |
| 58 | + ".txt": "markdown", |
| 59 | + ".md": "markdown", |
72 | 60 | } |
73 | 61 | myst_heading_anchors = 2 |
74 | 62 |
|
|
0 commit comments