ktongue commited on
Commit
db392f5
·
verified ·
1 Parent(s): 83e1004

Upload hf_env/lib/python3.14/site-packages/pip/__init__.py with huggingface_hub

Browse files
hf_env/lib/python3.14/site-packages/pip/__init__.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ __version__ = "25.3"
4
+
5
+
6
+ def main(args: list[str] | None = None) -> int:
7
+ """This is an internal API only meant for use by pip's own console scripts.
8
+
9
+ For additional details, see https://github.com/pypa/pip/issues/7498.
10
+ """
11
+ from pip._internal.utils.entrypoints import _wrapper
12
+
13
+ return _wrapper(args)