forked from jupyter-widgets-contrib/ipycanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
32 lines (23 loc) · 773 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "jupyterlite_sphinx"]
jupyterlite_dir = "."
jupyterlite_silence = False
master_doc = "index"
source_suffix = ".rst"
# General information about the project.
project = "ipycanvas"
author = "Martin Renou"
exclude_patterns = []
highlight_language = "python"
pygments_style = "sphinx"
# Output file base name for HTML help builder.
html_logo = "./images/ipycanvas_logo.svg"
html_favicon = "./images/ipycanvas_logo.ico"
html_theme = "pydata_sphinx_theme"
htmlhelp_basename = "ipycanvasdoc"
html_theme_options = dict(
github_url="https://github.com/jupyter-widgets-contrib/ipycanvas"
)
html_static_path = ["_static"]
html_css_files = ["custom.css"]
autodoc_member_order = "bysource"