diff --git a/pixelmatch/__init__.py b/pixelmatch/__init__.py index a3fc811..2020665 100644 --- a/pixelmatch/__init__.py +++ b/pixelmatch/__init__.py @@ -1,2 +1,16 @@ -from .core import * -from .utils import * +from .core import pixelmatch +from .utils import antialiased, has_many_siblings, color_delta, rgb2y, rgb2i, rgb2q, blendRGB, blend, draw_pixel, draw_gray_pixel + +__all__ = [ + "pixelmatch", + "antialiased", + "has_many_siblings", + "color_delta", + "rgb2y", + "rgb2i", + "rgb2q", + "blendRGB", + "blend", + "draw_pixel", + "draw_gray_pixel", +]