diff --git a/.gitignore b/.gitignore index 003667a4..76bd6733 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ dist/* *.prof doc/build/* .coverage +.hypothesis/ .idea/ .ipynb_checkpoints/ montepy/_version.py diff --git a/doc/source/_static/monty-192.png b/doc/source/_static/monty-192.png new file mode 120000 index 00000000..aa9b65c3 --- /dev/null +++ b/doc/source/_static/monty-192.png @@ -0,0 +1 @@ +../../../graphics/monty-192.png \ No newline at end of file diff --git a/doc/source/_static/monty-32.ico b/doc/source/_static/monty-32.ico new file mode 120000 index 00000000..cad0a6bc --- /dev/null +++ b/doc/source/_static/monty-32.ico @@ -0,0 +1 @@ +../../../graphics/monty-32.ico \ No newline at end of file diff --git a/doc/source/_static/monty-32.png b/doc/source/_static/monty-32.png new file mode 120000 index 00000000..55cdc09d --- /dev/null +++ b/doc/source/_static/monty-32.png @@ -0,0 +1 @@ +../../../graphics/monty-32.png \ No newline at end of file diff --git a/doc/source/_static/monty.svg b/doc/source/_static/monty.svg new file mode 120000 index 00000000..a47274f9 --- /dev/null +++ b/doc/source/_static/monty.svg @@ -0,0 +1 @@ +../../../graphics/monty.svg \ No newline at end of file diff --git a/doc/source/_static/placeholder b/doc/source/_static/placeholder deleted file mode 100644 index e69de29b..00000000 diff --git a/doc/source/conf.py b/doc/source/conf.py index 1cb549fb..f69ac13c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -37,11 +37,17 @@ "sphinx.ext.intersphinx", "sphinx.ext.extlinks", "sphinx_sitemap", + "sphinx_favicon", ] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] -html_favicon = "monty.svg" +favicons = [ + "monty.svg", + "monty-192.png", + "monty-32.png", + "monty-32.ico", +] html_logo = "monty.svg" html_baseurl = "https://www.montepy.org/" diff --git a/graphics/monty-192.png b/graphics/monty-192.png new file mode 100755 index 00000000..57d54a3b Binary files /dev/null and b/graphics/monty-192.png differ diff --git a/graphics/monty-32.ico b/graphics/monty-32.ico new file mode 100755 index 00000000..3b4ba7d8 Binary files /dev/null and b/graphics/monty-32.ico differ diff --git a/graphics/monty-32.png b/graphics/monty-32.png new file mode 100755 index 00000000..3aac43b5 Binary files /dev/null and b/graphics/monty-32.png differ diff --git a/pyproject.toml b/pyproject.toml index 8a3aa1f2..d507d0e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,8 @@ doc = [ "sphinx>=7.4.0", "sphinxcontrib-apidoc", "sphinx_rtd_theme", - "sphinx-sitemap" + "sphinx-sitemap", + "sphinx-favicon", ] format = ["black>=23.3.0"] build = [