HIEHEU's picture
Upload 10 files
5ed11a1 verified
raw
history blame contribute delete
709 Bytes
# Package initializer for the `py` package used by the Gradio app.
# Keep this file minimal to avoid importing heavy dependencies at package import time.
# You can add package-level metadata or lightweight helpers here.
"""
py — lightweight package wrapper for summarizers
This package exists so imports like `import py.extractive` or
`from py import extractive` work reliably when the summarizer modules
are placed in the `py/` directory.
"""
__all__ = []
# Optional package metadata
__version__ = "0.1.0"
def info():
return {
"package": "py",
"version": __version__,
"note": "This package holds extractive.py and abstractive.py summarizer modules."
}