|
18 | 18 | # -- Project information ----------------------------------------------------- |
19 | 19 |
|
20 | 20 | project = "vetiver" |
21 | | -copyright = "2022, Isabel Zimmerman" |
| 21 | +copyright = "2022, RStudio" |
22 | 22 | author = "Isabel Zimmerman" |
23 | 23 |
|
24 | 24 | # The full version, including alpha/beta/rc tags |
25 | | -release = "0.1.0" |
| 25 | +release = "0.1.3" |
26 | 26 |
|
27 | 27 |
|
28 | 28 | # -- General configuration --------------------------------------------------- |
|
36 | 36 | "sphinx.ext.autosummary", |
37 | 37 | "sphinx.ext.napoleon", |
38 | 38 | "sphinx.ext.githubpages", |
39 | | - "sphinx.ext.autodoc" |
| 39 | + "sphinx.ext.autodoc", |
| 40 | + "myst_parser" |
40 | 41 | ] |
41 | 42 | # Add any paths that contain templates here, relative to this directory. |
42 | 43 | templates_path = ["_templates"] |
|
52 | 53 | # The theme to use for HTML and HTML Help pages. See the documentation for |
53 | 54 | # a list of builtin themes. |
54 | 55 | # |
55 | | -html_theme = "alabaster" |
| 56 | +html_theme = "sphinx_book_theme" |
| 57 | + |
| 58 | +html_theme_options = { |
| 59 | + "repository_url": "https://github.com/tidymodels/vetiver-python", |
| 60 | + "use_repository_button": True, |
| 61 | + "use_issues_button": True, |
| 62 | + "use_edit_page_button": True, |
| 63 | + "home_page_in_toc": True |
| 64 | + |
| 65 | +} |
| 66 | + |
| 67 | +html_logo = "../figures/logo.png" |
| 68 | +html_favicon = "../figures/logo.png" |
| 69 | + |
56 | 70 |
|
57 | 71 | # Add any paths that contain custom static files (such as style sheets) here, |
58 | 72 | # relative to this directory. They are copied after the builtin static files, |
|
0 commit comments