Duncan Tourolle 131d39080e
All checks were successful
Python CI / test (push) Successful in 3m24s
first application elements
2025-11-07 20:00:05 +01:00

14 lines
467 B
Python

"""
pyWebLayout-ereader: A complete ebook reader application built with pyWebLayout.
This package provides a high-level, user-friendly ebook reader implementation
with all essential features for building ereader applications.
"""
from dreader.application import EbookReader, create_ebook_reader
from dreader import html_generator
from dreader import book_utils
__version__ = "0.1.0"
__all__ = ["EbookReader", "create_ebook_reader", "html_generator", "book_utils"]