Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@
"notfound.extension",
"sphinx_design",
"sphinx_gallery.gen_gallery",
"sphinx_sitemap",
"sphinx.ext.autosectionlabel",
]

# Only enable sphinx_sitemap if not running linkcheck
if "linkcheck" not in sys.argv:
extensions.append("sphinx_sitemap")

# Configure the myst parser to enable cool markdown features
# See https://sphinx-design.readthedocs.io
myst_enable_extensions = [
Expand Down
10 changes: 10 additions & 0 deletions ethology/io/annotations/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""Load and export annotations datasets."""

from . import load_bboxes, load_keypoints, save_bboxes, save_keypoints

__all__ = [
"load_bboxes",
"save_bboxes",
"load_keypoints",
"save_keypoints",
]
Loading