__init__.py 357 B

12345678910111213
  1. from typing import List, Optional
  2. __version__ = "22.0.4"
  3. def main(args: Optional[List[str]] = None) -> int:
  4. """This is an internal API only meant for use by pip's own console scripts.
  5. For additional details, see https://github.com/pypa/pip/issues/7498.
  6. """
  7. from pip._internal.utils.entrypoints import _wrapper
  8. return _wrapper(args)