mirror of
https://github.com/python/cpython.git
synced 2026-04-30 15:51:15 +00:00
17 lines
371 B
Python
17 lines
371 B
Python
from .api import distribution, Distribution, PackageNotFoundError # noqa: F401
|
|
from .api import (
|
|
metadata, entry_points, version, files, requires, distributions,
|
|
)
|
|
|
|
# Import for installation side-effects.
|
|
from . import _hooks # noqa: F401
|
|
|
|
|
|
__all__ = [
|
|
'entry_points',
|
|
'files',
|
|
'metadata',
|
|
'requires',
|
|
'version',
|
|
'distributions',
|
|
]
|