File tree Expand file tree Collapse file tree 4 files changed +24
-3
lines changed
Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ sphinx-material==0.0.30
33myst-parser
44sphinx_markdown_tables
55sphinx_copybutton
6+ sphinx_favicon
67docutils<0.18
78sphinx-math-dollar
Original file line number Diff line number Diff line change @@ -14,6 +14,18 @@ Source = "https://github.com/data-apis/array-api/"
1414Documentation = " https://data-apis.org/array-api/"
1515Homepage = " https://data-apis.org/"
1616
17+ [project .optional-dependencies ]
18+ doc = [
19+ " sphinx==4.3.0" ,
20+ " sphinx-material==0.0.30" ,
21+ " myst-parser" ,
22+ " sphinx_markdown_tables" ,
23+ " sphinx_copybutton" ,
24+ " docutils<0.18" ,
25+ " sphinx-math-dollar" ,
26+ " sphinx-favicon" ,
27+ ]
28+
1729[build-system ]
1830requires = [" setuptools" ]
1931build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 3030 'sphinx.ext.extlinks' ,
3131 'sphinx.ext.intersphinx' ,
3232 'sphinx.ext.todo' ,
33- 'sphinx_markdown_tables' ,
34- 'sphinx_copybutton' ,
3533 'sphinx.ext.autosummary' ,
3634 'sphinx.ext.napoleon' ,
3735 'sphinx.ext.autodoc' ,
36+ 'sphinx_copybutton' ,
37+ 'sphinx_favicon' ,
38+ 'sphinx_markdown_tables' ,
3839]
3940
4041autosummary_generate = True
176177
177178
178179todo_include_todos = True
179- #html_favicon = "images/favicon.ico"
180+
181+ favicons = [
182+ {
183+ "rel" : "icon" ,
184+ "sizes" : "196x195" ,
185+ "href" : "images/favicon.png" ,
186+ },
187+ ]
180188
181189html_use_index = True
182190html_domain_indices = True
You can’t perform that action at this time.
0 commit comments