diff --git a/README.md b/README.md index 36059ae..c105ce7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![codecov](https://codecov.io/gh/buettnerlab/pytometry/branch/main/graph/badge.svg?token=AEG5ra92HV)](https://codecov.io/gh/buettnerlab/pytometry) [![Stars](https://img.shields.io/github/stars/buettnerlab/pytometry?logo=GitHub&color=yellow)](https://github.com/buettnerlab/pytometry/stargazers) Gitmoji diff --git a/docs/_static/logo.ico b/docs/_static/logo.ico new file mode 100644 index 0000000..e6298ce Binary files /dev/null and b/docs/_static/logo.ico differ diff --git a/docs/conf.py b/docs/conf.py index c122b4a..4df9ff1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ # We're actually using this for the link behind the brand of the page! html_theme_options["logo"] = {"link": "pytometry"} # noqa -ogp_site_url = "https://lamin.ai/docs/pytometry" +ogp_site_url = "https://pytometry.netlify.app" author = "pytometry developers" copyright = f"{datetime.now():%Y}, {author}" @@ -31,5 +31,7 @@ html_logo = ( "https://raw.githubusercontent.com/buettnerlab/pytometry/main/docs/_static/logo.svg" ) -html_favicon = "../lamin_sphinx/_static/img/favicon.ico" +html_favicon = ( + "https://raw.githubusercontent.com/buettnerlab/pytometry/main/docs/_static/logo.ico" +) templates_path = ["_templates", "../lamin_sphinx/_templates"]