Skip to content

Commit

Permalink
Deploy documentation in github.io
Browse files Browse the repository at this point in the history
  • Loading branch information
jlgarridol committed Apr 24, 2024
1 parent a978145 commit 0baee2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

favicon=f"data:image/svg+xml;base64,{favicon}",
logo=f"data:image/svg+xml;base64,{logo}",
logo_link="/",
logo_link="/sslearn",
footer_text=f"pdoc {pdoc.__version__}",
search=True,
math=True,
Expand Down
3 changes: 3 additions & 0 deletions sslearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
if os.path.exists("../README.md"):
with open("../README.md", "r") as f:
__doc__ = f.read()
elif os.path.exists("README.md"):
with open("README.md", "r") as f:
__doc__ = f.read()
else:
__doc__ = "Semi-Supervised Learning (SSL) is a Python package that provides tools to train and evaluate semi-supervised learning models."

Expand Down

0 comments on commit 0baee2d

Please sign in to comment.