1from importlib.metadata import version 2 3__version__ = version("plain.pages") 4 5from .views import PageView 6 7__all__ = [ 8 "PageView", 9]