Revert "Remove importlib-metadata and importlib-resources"

This reverts commit 38435ae81c.
This commit is contained in:
JonnyWong16 2023-08-24 13:49:16 -07:00
commit 1b26775ec6
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
53 changed files with 3678 additions and 0 deletions

View file

@ -0,0 +1,17 @@
"""Read resources contained within a package."""
from ._common import (
as_file,
files,
Package,
)
from .abc import ResourceReader
__all__ = [
'Package',
'ResourceReader',
'as_file',
'files',
]