__init__.py 368 B

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