diff --git a/html_text/__init__.py b/html_text/__init__.py
index a940a99..e4bcce2 100644
--- a/html_text/__init__.py
+++ b/html_text/__init__.py
@@ -10,3 +10,14 @@
parse_html,
selector_to_text,
)
+
+__all__ = (
+ "DOUBLE_NEWLINE_TAGS",
+ "NEWLINE_TAGS",
+ "cleaned_selector",
+ "cleaner",
+ "etree_to_text",
+ "extract_text",
+ "parse_html",
+ "selector_to_text",
+)
diff --git a/tox.ini b/tox.ini
index 78f6af6..c0234db 100644
--- a/tox.ini
+++ b/tox.ini
@@ -37,4 +37,4 @@ deps =
pytest
types-lxml==2024.12.13
commands =
- mypy --strict --implicit-reexport {posargs: html_text tests}
+ mypy --strict {posargs: html_text tests}