Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/RECORD +879 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/direct_url.json +1 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/locations/_distutils.py +173 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/locations/base.py +82 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/__init__.py +169 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/_json.py +87 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/base.py +685 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/__init__.py +1 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/candidate.py +25 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/direct_url.py +227 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/format_control.py +78 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/index.py +28 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/installation_report.py +57 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/link.py +617 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/release_control.py +92 -0
- miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/scheme.py +25 -0
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/INSTALLER
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
conda
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/METADATA
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Metadata-Version: 2.4
|
| 2 |
+
Name: pip
|
| 3 |
+
Version: 26.0.1
|
| 4 |
+
Summary: The PyPA recommended tool for installing Python packages.
|
| 5 |
+
Author-email: The pip developers <distutils-sig@python.org>
|
| 6 |
+
Requires-Python: >=3.9
|
| 7 |
+
Description-Content-Type: text/x-rst
|
| 8 |
+
License-Expression: MIT
|
| 9 |
+
Classifier: Development Status :: 5 - Production/Stable
|
| 10 |
+
Classifier: Intended Audience :: Developers
|
| 11 |
+
Classifier: Topic :: Software Development :: Build Tools
|
| 12 |
+
Classifier: Programming Language :: Python
|
| 13 |
+
Classifier: Programming Language :: Python :: 3
|
| 14 |
+
Classifier: Programming Language :: Python :: 3 :: Only
|
| 15 |
+
Classifier: Programming Language :: Python :: 3.9
|
| 16 |
+
Classifier: Programming Language :: Python :: 3.10
|
| 17 |
+
Classifier: Programming Language :: Python :: 3.11
|
| 18 |
+
Classifier: Programming Language :: Python :: 3.12
|
| 19 |
+
Classifier: Programming Language :: Python :: 3.13
|
| 20 |
+
Classifier: Programming Language :: Python :: 3.14
|
| 21 |
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
| 22 |
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
| 23 |
+
License-File: AUTHORS.txt
|
| 24 |
+
License-File: LICENSE.txt
|
| 25 |
+
License-File: src/pip/_vendor/cachecontrol/LICENSE.txt
|
| 26 |
+
License-File: src/pip/_vendor/certifi/LICENSE
|
| 27 |
+
License-File: src/pip/_vendor/dependency_groups/LICENSE.txt
|
| 28 |
+
License-File: src/pip/_vendor/distlib/LICENSE.txt
|
| 29 |
+
License-File: src/pip/_vendor/distro/LICENSE
|
| 30 |
+
License-File: src/pip/_vendor/idna/LICENSE.md
|
| 31 |
+
License-File: src/pip/_vendor/msgpack/COPYING
|
| 32 |
+
License-File: src/pip/_vendor/packaging/LICENSE
|
| 33 |
+
License-File: src/pip/_vendor/packaging/LICENSE.APACHE
|
| 34 |
+
License-File: src/pip/_vendor/packaging/LICENSE.BSD
|
| 35 |
+
License-File: src/pip/_vendor/pkg_resources/LICENSE
|
| 36 |
+
License-File: src/pip/_vendor/platformdirs/LICENSE
|
| 37 |
+
License-File: src/pip/_vendor/pygments/LICENSE
|
| 38 |
+
License-File: src/pip/_vendor/pyproject_hooks/LICENSE
|
| 39 |
+
License-File: src/pip/_vendor/requests/LICENSE
|
| 40 |
+
License-File: src/pip/_vendor/resolvelib/LICENSE
|
| 41 |
+
License-File: src/pip/_vendor/rich/LICENSE
|
| 42 |
+
License-File: src/pip/_vendor/tomli/LICENSE
|
| 43 |
+
License-File: src/pip/_vendor/tomli_w/LICENSE
|
| 44 |
+
License-File: src/pip/_vendor/truststore/LICENSE
|
| 45 |
+
License-File: src/pip/_vendor/urllib3/LICENSE.txt
|
| 46 |
+
Project-URL: Changelog, https://pip.pypa.io/en/stable/news/
|
| 47 |
+
Project-URL: Documentation, https://pip.pypa.io
|
| 48 |
+
Project-URL: Homepage, https://pip.pypa.io/
|
| 49 |
+
Project-URL: Source, https://github.com/pypa/pip
|
| 50 |
+
|
| 51 |
+
pip - The Python Package Installer
|
| 52 |
+
==================================
|
| 53 |
+
|
| 54 |
+
.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg
|
| 55 |
+
:target: https://pypi.org/project/pip/
|
| 56 |
+
:alt: PyPI
|
| 57 |
+
|
| 58 |
+
.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip
|
| 59 |
+
:target: https://pypi.org/project/pip
|
| 60 |
+
:alt: PyPI - Python Version
|
| 61 |
+
|
| 62 |
+
.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest
|
| 63 |
+
:target: https://pip.pypa.io/en/latest
|
| 64 |
+
:alt: Documentation
|
| 65 |
+
|
| 66 |
+
|pypi-version| |python-versions| |docs-badge|
|
| 67 |
+
|
| 68 |
+
pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
|
| 69 |
+
|
| 70 |
+
Please take a look at our documentation for how to install and use pip:
|
| 71 |
+
|
| 72 |
+
* `Installation`_
|
| 73 |
+
* `Usage`_
|
| 74 |
+
|
| 75 |
+
We release updates regularly, with a new version every 3 months. Find more details in our documentation:
|
| 76 |
+
|
| 77 |
+
* `Release notes`_
|
| 78 |
+
* `Release process`_
|
| 79 |
+
|
| 80 |
+
If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
|
| 81 |
+
|
| 82 |
+
* `Issue tracking`_
|
| 83 |
+
* `Discourse channel`_
|
| 84 |
+
* `User IRC`_
|
| 85 |
+
|
| 86 |
+
If you want to get involved, head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:
|
| 87 |
+
|
| 88 |
+
* `GitHub page`_
|
| 89 |
+
* `Development documentation`_
|
| 90 |
+
* `Development IRC`_
|
| 91 |
+
|
| 92 |
+
Code of Conduct
|
| 93 |
+
---------------
|
| 94 |
+
|
| 95 |
+
Everyone interacting in the pip project's codebases, issue trackers, chat
|
| 96 |
+
rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
|
| 97 |
+
|
| 98 |
+
.. _package installer: https://packaging.python.org/guides/tool-recommendations/
|
| 99 |
+
.. _Python Package Index: https://pypi.org
|
| 100 |
+
.. _Installation: https://pip.pypa.io/en/stable/installation/
|
| 101 |
+
.. _Usage: https://pip.pypa.io/en/stable/
|
| 102 |
+
.. _Release notes: https://pip.pypa.io/en/stable/news.html
|
| 103 |
+
.. _Release process: https://pip.pypa.io/en/latest/development/release-process/
|
| 104 |
+
.. _GitHub page: https://github.com/pypa/pip
|
| 105 |
+
.. _Development documentation: https://pip.pypa.io/en/latest/development
|
| 106 |
+
.. _Issue tracking: https://github.com/pypa/pip/issues
|
| 107 |
+
.. _Discourse channel: https://discuss.python.org/c/packaging
|
| 108 |
+
.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa
|
| 109 |
+
.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev
|
| 110 |
+
.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
|
| 111 |
+
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/RECORD
ADDED
|
@@ -0,0 +1,879 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
../../../bin/pip,sha256=MvKETmUGeoi_0-TT9qYZvQGfY6HadtDctusGe1nIlis,452
|
| 2 |
+
../../../bin/pip3,sha256=MvKETmUGeoi_0-TT9qYZvQGfY6HadtDctusGe1nIlis,452
|
| 3 |
+
../../../bin/pip3.14,sha256=MvKETmUGeoi_0-TT9qYZvQGfY6HadtDctusGe1nIlis,452
|
| 4 |
+
pip-26.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 5 |
+
pip-26.0.1.dist-info/METADATA,sha256=ZqIZuNGsG6l2gHiKlQjVQghFQhgSWfhEDHuCVPW3aN8,4675
|
| 6 |
+
pip-26.0.1.dist-info/RECORD,,
|
| 7 |
+
pip-26.0.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 8 |
+
pip-26.0.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
| 9 |
+
pip-26.0.1.dist-info/direct_url.json,sha256=_O_Uz3DTKmUItFu3Hr0AfvnehDtMBHFCGmqwW1MPbGQ,89
|
| 10 |
+
pip-26.0.1.dist-info/entry_points.txt,sha256=Vhf8s0IYgX37mtd4vGL73BPcxdKnqeCFPzB5-d30x8o,84
|
| 11 |
+
pip-26.0.1.dist-info/licenses/AUTHORS.txt,sha256=grSl9YDNOpOFFJTX8ZYKSdgfouXi_DzlRyYGE2-u5aI,11731
|
| 12 |
+
pip-26.0.1.dist-info/licenses/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093
|
| 13 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt,sha256=hu7uh74qQ_P_H1ZJb0UfaSQ5JvAl_tuwM2ZsMExMFhs,558
|
| 14 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989
|
| 15 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt,sha256=GrNuPipLqGMWJThPh-ngkdsfrtA0xbIzJbMjmr8sxSU,1099
|
| 16 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt,sha256=gI4QyKarjesUn_mz-xn0R6gICUYG1xKpylf-rTVSWZ0,14531
|
| 17 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
| 18 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md,sha256=t6M2q_OwThgOwGXN0W5wXQeeHMehT5EKpukYfza5zYc,1541
|
| 19 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING,sha256=SS3tuoXaWHL3jmCRvNH-pHTWYNNay03ulkuKqz8AdCc,614
|
| 20 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197
|
| 21 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
| 22 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344
|
| 23 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023
|
| 24 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE,sha256=KeD9YukphQ6G6yjD_czwzv30-pSHkBHP-z0NS-1tTbY,1089
|
| 25 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE,sha256=qdZvHVJt8C4p3Oc0NtNOVuhjL0bCdbvf_HBWnogvnxc,1331
|
| 26 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE,sha256=GyKwSbUmfW38I6Z79KhNjsBLn9-xpR02DkK0NCyLQVQ,1081
|
| 27 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
| 28 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE,sha256=84j9OMrRMRLB3A9mm76A5_hFQe26-3LzAw0sp2QsPJ0,751
|
| 29 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE,sha256=3u18F6QxgVgZCj6iOcyHmlpQJxzruYrnAl9I--WNyhU,1056
|
| 30 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 31 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 32 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE,sha256=M757fo-k_Rmxdg4ajtimaL2rhSyRtpLdQUJLy3Jan8o,1086
|
| 33 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt,sha256=w3vxhuJ8-dvpYZ5V7f486nswCRzrPaY8fay-Dm13kHs,1115
|
| 34 |
+
pip/__init__.py,sha256=3EhKF2588Ab15tmBszgD3Bp0N26sJx7VhS2Akn_qY38,355
|
| 35 |
+
pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854
|
| 36 |
+
pip/__pip-runner__.py,sha256=JOoEZTwrtv7jRaXBkgSQKAE04yNyfFmGHxqpHiGHvL0,1450
|
| 37 |
+
pip/__pycache__/__init__.cpython-314.pyc,,
|
| 38 |
+
pip/__pycache__/__main__.cpython-314.pyc,,
|
| 39 |
+
pip/__pycache__/__pip-runner__.cpython-314.pyc,,
|
| 40 |
+
pip/_internal/__init__.py,sha256=S7i9Dn9aSZS0MG-2Wrve3dV9TImPzvQn5jjhp9t_uf0,511
|
| 41 |
+
pip/_internal/__pycache__/__init__.cpython-314.pyc,,
|
| 42 |
+
pip/_internal/__pycache__/build_env.cpython-314.pyc,,
|
| 43 |
+
pip/_internal/__pycache__/cache.cpython-314.pyc,,
|
| 44 |
+
pip/_internal/__pycache__/configuration.cpython-314.pyc,,
|
| 45 |
+
pip/_internal/__pycache__/exceptions.cpython-314.pyc,,
|
| 46 |
+
pip/_internal/__pycache__/main.cpython-314.pyc,,
|
| 47 |
+
pip/_internal/__pycache__/pyproject.cpython-314.pyc,,
|
| 48 |
+
pip/_internal/__pycache__/self_outdated_check.cpython-314.pyc,,
|
| 49 |
+
pip/_internal/__pycache__/wheel_builder.cpython-314.pyc,,
|
| 50 |
+
pip/_internal/build_env.py,sha256=XpgOIlTQLgz3PvDT2n7j2NzX_rVFZLCIG7t7b2ddhcM,21911
|
| 51 |
+
pip/_internal/cache.py,sha256=nMh48Yv3yu1HS1yCdscouu6B6B5zYBWdV6bhqs7gL-E,10345
|
| 52 |
+
pip/_internal/cli/__init__.py,sha256=Iqg_tKA771XuMO1P4t_sDHnSKPzkUb9D0DqunAmw_ko,131
|
| 53 |
+
pip/_internal/cli/__pycache__/__init__.cpython-314.pyc,,
|
| 54 |
+
pip/_internal/cli/__pycache__/autocompletion.cpython-314.pyc,,
|
| 55 |
+
pip/_internal/cli/__pycache__/base_command.cpython-314.pyc,,
|
| 56 |
+
pip/_internal/cli/__pycache__/cmdoptions.cpython-314.pyc,,
|
| 57 |
+
pip/_internal/cli/__pycache__/command_context.cpython-314.pyc,,
|
| 58 |
+
pip/_internal/cli/__pycache__/index_command.cpython-314.pyc,,
|
| 59 |
+
pip/_internal/cli/__pycache__/main.cpython-314.pyc,,
|
| 60 |
+
pip/_internal/cli/__pycache__/main_parser.cpython-314.pyc,,
|
| 61 |
+
pip/_internal/cli/__pycache__/parser.cpython-314.pyc,,
|
| 62 |
+
pip/_internal/cli/__pycache__/progress_bars.cpython-314.pyc,,
|
| 63 |
+
pip/_internal/cli/__pycache__/req_command.cpython-314.pyc,,
|
| 64 |
+
pip/_internal/cli/__pycache__/spinners.cpython-314.pyc,,
|
| 65 |
+
pip/_internal/cli/__pycache__/status_codes.cpython-314.pyc,,
|
| 66 |
+
pip/_internal/cli/autocompletion.py,sha256=ZG2cM03nlcNrs-WG_SFTW46isx9s2Go5lUD_8-iv70o,7193
|
| 67 |
+
pip/_internal/cli/base_command.py,sha256=6OW75PSGzkH8Fz761WZ3OSz1TsuO3-suc6iap-sQjTM,9168
|
| 68 |
+
pip/_internal/cli/cmdoptions.py,sha256=hfA9B29Nnq2vYMWhFVg7EcWjdlfdPBPU4WwWT2Lkq4A,36164
|
| 69 |
+
pip/_internal/cli/command_context.py,sha256=kmu3EWZbfBega1oDamnGJTA_UaejhIQNuMj2CVmMXu0,817
|
| 70 |
+
pip/_internal/cli/index_command.py,sha256=s3x75lpDXWJtCkBacTQ3qAAprldHMJCniEQ5qkQ0FiI,6484
|
| 71 |
+
pip/_internal/cli/main.py,sha256=ljDQBkvBtC8xTjOdb6rDJzJUNi1s-PnVR_W5C-Mq0Dk,3137
|
| 72 |
+
pip/_internal/cli/main_parser.py,sha256=YjzJAjqf78ARNsLlnJT9l6fNbpyDPJA-arOIXYsK5Ik,4403
|
| 73 |
+
pip/_internal/cli/parser.py,sha256=EIFExrWX_1nrl1Ib--GOor70WYqLtduHByenb1u9xH4,13827
|
| 74 |
+
pip/_internal/cli/progress_bars.py,sha256=IW1PH5n2FPqUBTP7ULQ5Yu-wyNNO9XGY3g1PT4RMu44,4706
|
| 75 |
+
pip/_internal/cli/req_command.py,sha256=QjDXId0hFdopwE8hNx2eustumxUNbnOCvG_ORmUC7vM,16482
|
| 76 |
+
pip/_internal/cli/spinners.py,sha256=EJzZIZNyUtJljp3-WjcsyIrqxW-HUsfWzhuW84n_Tqw,7362
|
| 77 |
+
pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116
|
| 78 |
+
pip/_internal/commands/__init__.py,sha256=aNeCbQurGWihfhQq7BqaLXHqWDQ0i3I04OS7kxK6plQ,4026
|
| 79 |
+
pip/_internal/commands/__pycache__/__init__.cpython-314.pyc,,
|
| 80 |
+
pip/_internal/commands/__pycache__/cache.cpython-314.pyc,,
|
| 81 |
+
pip/_internal/commands/__pycache__/check.cpython-314.pyc,,
|
| 82 |
+
pip/_internal/commands/__pycache__/completion.cpython-314.pyc,,
|
| 83 |
+
pip/_internal/commands/__pycache__/configuration.cpython-314.pyc,,
|
| 84 |
+
pip/_internal/commands/__pycache__/debug.cpython-314.pyc,,
|
| 85 |
+
pip/_internal/commands/__pycache__/download.cpython-314.pyc,,
|
| 86 |
+
pip/_internal/commands/__pycache__/freeze.cpython-314.pyc,,
|
| 87 |
+
pip/_internal/commands/__pycache__/hash.cpython-314.pyc,,
|
| 88 |
+
pip/_internal/commands/__pycache__/help.cpython-314.pyc,,
|
| 89 |
+
pip/_internal/commands/__pycache__/index.cpython-314.pyc,,
|
| 90 |
+
pip/_internal/commands/__pycache__/inspect.cpython-314.pyc,,
|
| 91 |
+
pip/_internal/commands/__pycache__/install.cpython-314.pyc,,
|
| 92 |
+
pip/_internal/commands/__pycache__/list.cpython-314.pyc,,
|
| 93 |
+
pip/_internal/commands/__pycache__/lock.cpython-314.pyc,,
|
| 94 |
+
pip/_internal/commands/__pycache__/search.cpython-314.pyc,,
|
| 95 |
+
pip/_internal/commands/__pycache__/show.cpython-314.pyc,,
|
| 96 |
+
pip/_internal/commands/__pycache__/uninstall.cpython-314.pyc,,
|
| 97 |
+
pip/_internal/commands/__pycache__/wheel.cpython-314.pyc,,
|
| 98 |
+
pip/_internal/commands/cache.py,sha256=XjT7kjY8GSISMksFHsLvjS9Ogfi5extNlUUv-dUoWCM,9142
|
| 99 |
+
pip/_internal/commands/check.py,sha256=hVFBQezQ3zj4EydoWbFQj_afPUppMt7r9JPAlY22U6Y,2244
|
| 100 |
+
pip/_internal/commands/completion.py,sha256=LjvRIZ6QUiDXJL3IOMFeD-_J97HfjMGgEk0j2tWGu1U,4565
|
| 101 |
+
pip/_internal/commands/configuration.py,sha256=6gNOGrVWnOLU15zUnAiNuOMhf76RRIZvCdVD0degPRk,10105
|
| 102 |
+
pip/_internal/commands/debug.py,sha256=_8IqM8Fx1_lY2STu_qspr63tufF7zyFJCyYAXtxz0N4,6805
|
| 103 |
+
pip/_internal/commands/download.py,sha256=LUNVobuvCdagjLBuPBaxHeBiHEiIe03fTO2m6ahC8qw,5178
|
| 104 |
+
pip/_internal/commands/freeze.py,sha256=fxoW8AAc-bAqB_fXdNq2VnZ3JfWkFMg-bR6LcdDVO7A,3099
|
| 105 |
+
pip/_internal/commands/hash.py,sha256=GO9pRN3wXC2kQaovK57TaLYBMc3IltOH92O6QEw6YE0,1679
|
| 106 |
+
pip/_internal/commands/help.py,sha256=Bz3LcjNQXkz4Cu__pL4CZ86o4-HNLZj1NZWdlJhjuu0,1108
|
| 107 |
+
pip/_internal/commands/index.py,sha256=kDpx2MO6ZxTt5PpeY4jqcssVbYhzxpkpreDe_6PPhks,5520
|
| 108 |
+
pip/_internal/commands/inspect.py,sha256=ogm4UT7LRo8bIQcWUS1IiA25QdD4VHLa7JaPAodDttM,3177
|
| 109 |
+
pip/_internal/commands/install.py,sha256=L6X1qi49ROVTGABhwwxDgBBTijlOpVn6XSDVZ7QW1Kc,30588
|
| 110 |
+
pip/_internal/commands/list.py,sha256=L5nWuwawqSrBNsuxfyHLAagfz7XJP86tC9nK3L9YiI8,13497
|
| 111 |
+
pip/_internal/commands/lock.py,sha256=145ihjUK_-7gP8O65XPDi_xMhlh5hne1ptkHdfnbAnQ,6027
|
| 112 |
+
pip/_internal/commands/search.py,sha256=zbMsX_YASj6kXA6XIBgTDv0bGK51xG-CV3IynZJcE-c,5782
|
| 113 |
+
pip/_internal/commands/show.py,sha256=oLVJIfKWmDKm0SsQGEi3pozNiqrXjTras_fbBSYKpBA,8066
|
| 114 |
+
pip/_internal/commands/uninstall.py,sha256=CsOihqvb6ZA6O67L70oXeoLHeOfNzMM88H9g-9aocgw,3868
|
| 115 |
+
pip/_internal/commands/wheel.py,sha256=L9vEzJ_E42scF_Hgh5X4Hk39nqJDKxGg4u7glDYbNWc,5880
|
| 116 |
+
pip/_internal/configuration.py,sha256=WxwwSwY_Bm6QzDgf32BsujEyO8dgRedegCpgbUfDvM8,14568
|
| 117 |
+
pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858
|
| 118 |
+
pip/_internal/distributions/__pycache__/__init__.cpython-314.pyc,,
|
| 119 |
+
pip/_internal/distributions/__pycache__/base.cpython-314.pyc,,
|
| 120 |
+
pip/_internal/distributions/__pycache__/installed.cpython-314.pyc,,
|
| 121 |
+
pip/_internal/distributions/__pycache__/sdist.cpython-314.pyc,,
|
| 122 |
+
pip/_internal/distributions/__pycache__/wheel.cpython-314.pyc,,
|
| 123 |
+
pip/_internal/distributions/base.py,sha256=l-OTCAIs25lsapejA6IYpPZxSM5-BET4sdZDkql8jiY,1830
|
| 124 |
+
pip/_internal/distributions/installed.py,sha256=kgIEE_1NzjZxLBSC-v5s64uOFZlVEt3aPrjTtL6x2XY,929
|
| 125 |
+
pip/_internal/distributions/sdist.py,sha256=RYwQIbuxpKy6OjlBZCAefxpMDaoocUQ4dFtheGsiTOQ,6627
|
| 126 |
+
pip/_internal/distributions/wheel.py,sha256=_HbG0OehF8dwj4UX-xV__tXLwgPus9OjMEf2NTRqBbE,1364
|
| 127 |
+
pip/_internal/exceptions.py,sha256=JdPCrQ9iTLvE-GBebzBEeGP3hoTffWEKqbYEsa6cEZc,32165
|
| 128 |
+
pip/_internal/index/__init__.py,sha256=tzwMH_fhQeubwMqHdSivasg1cRgTSbNg2CiMVnzMmyU,29
|
| 129 |
+
pip/_internal/index/__pycache__/__init__.cpython-314.pyc,,
|
| 130 |
+
pip/_internal/index/__pycache__/collector.cpython-314.pyc,,
|
| 131 |
+
pip/_internal/index/__pycache__/package_finder.cpython-314.pyc,,
|
| 132 |
+
pip/_internal/index/__pycache__/sources.cpython-314.pyc,,
|
| 133 |
+
pip/_internal/index/collector.py,sha256=R7Gcx_4GEoSEI-iazfAZVEPG3Lp6mbZT4lbAD6NjAc0,16144
|
| 134 |
+
pip/_internal/index/package_finder.py,sha256=a3_L4FDNsuDf3y8Af9J7sfsHR1ahs8o13Ths-WYwFh0,41776
|
| 135 |
+
pip/_internal/index/sources.py,sha256=nXJkOjhLy-O2FsrKU9RIqCOqgY2PsoKWybtZjjRgqU0,8639
|
| 136 |
+
pip/_internal/locations/__init__.py,sha256=Sd67ap1LIemvXArUDFqm8U-HuZvj9i3ApEuiIwUc9UE,14157
|
| 137 |
+
pip/_internal/locations/__pycache__/__init__.cpython-314.pyc,,
|
| 138 |
+
pip/_internal/locations/__pycache__/_distutils.cpython-314.pyc,,
|
| 139 |
+
pip/_internal/locations/__pycache__/_sysconfig.cpython-314.pyc,,
|
| 140 |
+
pip/_internal/locations/__pycache__/base.cpython-314.pyc,,
|
| 141 |
+
pip/_internal/locations/_distutils.py,sha256=jpFj4V00rD9IR3vA9TqrGkwcdNVFc58LsChZavge9JY,5975
|
| 142 |
+
pip/_internal/locations/_sysconfig.py,sha256=8CpTjtxaCzHSCrKpaxWnHE7aKcJrRJRmntR1ZLVysLk,7779
|
| 143 |
+
pip/_internal/locations/base.py,sha256=AImjYJWxOtDkc0KKc6Y4Gz677cg91caMA4L94B9FZEg,2550
|
| 144 |
+
pip/_internal/main.py,sha256=1cHqjsfFCrMFf3B5twzocxTJUdHMLoXUpy5lJoFqUi8,338
|
| 145 |
+
pip/_internal/metadata/__init__.py,sha256=vp-JAxiWg_-l5F8AT0Jcey72uUnh8CDwwol9-KktHZ8,5824
|
| 146 |
+
pip/_internal/metadata/__pycache__/__init__.cpython-314.pyc,,
|
| 147 |
+
pip/_internal/metadata/__pycache__/_json.cpython-314.pyc,,
|
| 148 |
+
pip/_internal/metadata/__pycache__/base.cpython-314.pyc,,
|
| 149 |
+
pip/_internal/metadata/__pycache__/pkg_resources.cpython-314.pyc,,
|
| 150 |
+
pip/_internal/metadata/_json.py,sha256=hNvnMHOXLAyNlzirWhPL9Nx2CvCqa1iRma6Osq1YfV8,2711
|
| 151 |
+
pip/_internal/metadata/base.py,sha256=BGuMenlcQT8i7j9iclrfdC3vSwgvhr8gjn955cCy16s,25420
|
| 152 |
+
pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135
|
| 153 |
+
pip/_internal/metadata/importlib/__pycache__/__init__.cpython-314.pyc,,
|
| 154 |
+
pip/_internal/metadata/importlib/__pycache__/_compat.cpython-314.pyc,,
|
| 155 |
+
pip/_internal/metadata/importlib/__pycache__/_dists.cpython-314.pyc,,
|
| 156 |
+
pip/_internal/metadata/importlib/__pycache__/_envs.cpython-314.pyc,,
|
| 157 |
+
pip/_internal/metadata/importlib/_compat.py,sha256=sneVh4_6WxQZK4ljdl3ylVuP-q0ttSqbgl9mWt0HnOg,2804
|
| 158 |
+
pip/_internal/metadata/importlib/_dists.py,sha256=znZD7MN4RC73-87KXAn6tKZv9lAQRI0AxxK2bubDvPw,8420
|
| 159 |
+
pip/_internal/metadata/importlib/_envs.py,sha256=H3qVLXVh4LWvrPvu_ekXf3dfbtwnlhNJQP2pxXpccfU,5333
|
| 160 |
+
pip/_internal/metadata/pkg_resources.py,sha256=NO76ZrfR2-LKJTyaXrmQoGhmJMArALvacrlZHViSDT8,10544
|
| 161 |
+
pip/_internal/models/__init__.py,sha256=AjmCEBxX_MH9f_jVjIGNCFJKYCYeSEe18yyvNx4uRKQ,62
|
| 162 |
+
pip/_internal/models/__pycache__/__init__.cpython-314.pyc,,
|
| 163 |
+
pip/_internal/models/__pycache__/candidate.cpython-314.pyc,,
|
| 164 |
+
pip/_internal/models/__pycache__/direct_url.cpython-314.pyc,,
|
| 165 |
+
pip/_internal/models/__pycache__/format_control.cpython-314.pyc,,
|
| 166 |
+
pip/_internal/models/__pycache__/index.cpython-314.pyc,,
|
| 167 |
+
pip/_internal/models/__pycache__/installation_report.cpython-314.pyc,,
|
| 168 |
+
pip/_internal/models/__pycache__/link.cpython-314.pyc,,
|
| 169 |
+
pip/_internal/models/__pycache__/release_control.cpython-314.pyc,,
|
| 170 |
+
pip/_internal/models/__pycache__/scheme.cpython-314.pyc,,
|
| 171 |
+
pip/_internal/models/__pycache__/search_scope.cpython-314.pyc,,
|
| 172 |
+
pip/_internal/models/__pycache__/selection_prefs.cpython-314.pyc,,
|
| 173 |
+
pip/_internal/models/__pycache__/target_python.cpython-314.pyc,,
|
| 174 |
+
pip/_internal/models/__pycache__/wheel.cpython-314.pyc,,
|
| 175 |
+
pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753
|
| 176 |
+
pip/_internal/models/direct_url.py,sha256=4NMWacu_QzPPWREC1te7v6Wfv-2HkI4tvSJF-CBgLh4,6555
|
| 177 |
+
pip/_internal/models/format_control.py,sha256=PwemYG1L27BM0f1KP61rm24wShENFyxqlD1TWu34alc,2471
|
| 178 |
+
pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030
|
| 179 |
+
pip/_internal/models/installation_report.py,sha256=cqfWJ93ThCxjcacqSWryOCD2XtIn1CZrgzZxAv5FQZ0,2839
|
| 180 |
+
pip/_internal/models/link.py,sha256=zti5UCx1hT03etYqm6MCqFd714clmTgX8rTZT9CKZDQ,21992
|
| 181 |
+
pip/_internal/models/release_control.py,sha256=XD14Hy_XLh9xWR1p7JHqPZPEv3Nnb1BZGMpClk76sLs,3403
|
| 182 |
+
pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575
|
| 183 |
+
pip/_internal/models/search_scope.py,sha256=1hxU2IVsAaLZVjp0CbzJbYaYzCxv72_Qbg3JL0qhXo0,4507
|
| 184 |
+
pip/_internal/models/selection_prefs.py,sha256=IDOA3euRtyqWUyIK7lX2bzIZasYiEvunKA6H3Mngk-M,2221
|
| 185 |
+
pip/_internal/models/target_python.py,sha256=I0eFS-eia3kwhrOvgsphFZtNAB2IwXZ9Sr9fp6IjBP4,4243
|
| 186 |
+
pip/_internal/models/wheel.py,sha256=1SdfDvN7ALTsbyZ9EOsNy1GPirP1n6EjHyzPrZyLSh8,2920
|
| 187 |
+
pip/_internal/network/__init__.py,sha256=FMy06P__y6jMjUc8z3ZcQdKF-pmZ2zM14_vBeHPGhUI,49
|
| 188 |
+
pip/_internal/network/__pycache__/__init__.cpython-314.pyc,,
|
| 189 |
+
pip/_internal/network/__pycache__/auth.cpython-314.pyc,,
|
| 190 |
+
pip/_internal/network/__pycache__/cache.cpython-314.pyc,,
|
| 191 |
+
pip/_internal/network/__pycache__/download.cpython-314.pyc,,
|
| 192 |
+
pip/_internal/network/__pycache__/lazy_wheel.cpython-314.pyc,,
|
| 193 |
+
pip/_internal/network/__pycache__/session.cpython-314.pyc,,
|
| 194 |
+
pip/_internal/network/__pycache__/utils.cpython-314.pyc,,
|
| 195 |
+
pip/_internal/network/__pycache__/xmlrpc.cpython-314.pyc,,
|
| 196 |
+
pip/_internal/network/auth.py,sha256=azFp14I9cyWAAzkxF2VM0Q_xtHnbNz3_NQXszy87KQo,20806
|
| 197 |
+
pip/_internal/network/cache.py,sha256=kmRXKQrG9E26xQRj211LHeEGpDg_SlYU9Dn1fJ-AMeI,4862
|
| 198 |
+
pip/_internal/network/download.py,sha256=8sVwIc9MWwpGlMPYCkO1S9U-FD8TA2utw42tj00skjM,12667
|
| 199 |
+
pip/_internal/network/lazy_wheel.py,sha256=y9gVksdJCSjnLfYzs_m3DYUAtl3hc_k-xFPDBd9DgOs,7646
|
| 200 |
+
pip/_internal/network/session.py,sha256=7zK7EeQCSRFipu4ZzcWl1V3AMKkiXdtGqFr7GvU2LrY,19555
|
| 201 |
+
pip/_internal/network/utils.py,sha256=ACsXd1msqNCidHVXsu7LHUSr8NgaypcOKQ4KG-Z_wJM,4091
|
| 202 |
+
pip/_internal/network/xmlrpc.py,sha256=_-Rnk3vOff8uF9hAGmT6SLALflY1gMBcbGwS12fb_Y4,1830
|
| 203 |
+
pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 204 |
+
pip/_internal/operations/__pycache__/__init__.cpython-314.pyc,,
|
| 205 |
+
pip/_internal/operations/__pycache__/check.cpython-314.pyc,,
|
| 206 |
+
pip/_internal/operations/__pycache__/freeze.cpython-314.pyc,,
|
| 207 |
+
pip/_internal/operations/__pycache__/prepare.cpython-314.pyc,,
|
| 208 |
+
pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 209 |
+
pip/_internal/operations/build/__pycache__/__init__.cpython-314.pyc,,
|
| 210 |
+
pip/_internal/operations/build/__pycache__/build_tracker.cpython-314.pyc,,
|
| 211 |
+
pip/_internal/operations/build/__pycache__/metadata.cpython-314.pyc,,
|
| 212 |
+
pip/_internal/operations/build/__pycache__/metadata_editable.cpython-314.pyc,,
|
| 213 |
+
pip/_internal/operations/build/__pycache__/wheel.cpython-314.pyc,,
|
| 214 |
+
pip/_internal/operations/build/__pycache__/wheel_editable.cpython-314.pyc,,
|
| 215 |
+
pip/_internal/operations/build/build_tracker.py,sha256=W3b5cmkMWPaE6QIwfzsTayJo7-OlxFHWDxfPuax1KcE,4771
|
| 216 |
+
pip/_internal/operations/build/metadata.py,sha256=INHaeiRfOiLYCXApfDNRo9Cw2xI4VwTc0KItvfdfOjk,1421
|
| 217 |
+
pip/_internal/operations/build/metadata_editable.py,sha256=oWudMsnjy4loO_Jy7g4N9nxsnaEX_iDlVRgCy7pu1rs,1509
|
| 218 |
+
pip/_internal/operations/build/wheel.py,sha256=3bP-nNiJ4S8JvMaBnyessXQUBhxTqt1GBx6DQ1iPJDY,1136
|
| 219 |
+
pip/_internal/operations/build/wheel_editable.py,sha256=q3kfElclM6FutVbFwE87JOTpVWt5ixDf3_UkHAIVfz4,1478
|
| 220 |
+
pip/_internal/operations/check.py,sha256=yC2XWth6iehGGE_fj7XRJLjVKBsTIG3ZoWRkFi3rOwc,5894
|
| 221 |
+
pip/_internal/operations/freeze.py,sha256=PDdY-y_ZtZZJLAKcaWPIGRKAGW7DXR48f0aMRU0j7BA,9854
|
| 222 |
+
pip/_internal/operations/install/__init__.py,sha256=ak-UETcQPKlFZaWoYKWu5QVXbpFBvg0sXc3i0O4vSYY,50
|
| 223 |
+
pip/_internal/operations/install/__pycache__/__init__.cpython-314.pyc,,
|
| 224 |
+
pip/_internal/operations/install/__pycache__/wheel.cpython-314.pyc,,
|
| 225 |
+
pip/_internal/operations/install/wheel.py,sha256=FQIl2AnNadHV5YGGOVEmOHtUUNO8lpzj3Icoo4S2xis,27923
|
| 226 |
+
pip/_internal/operations/prepare.py,sha256=ptVsmQf0Mo6jirk1Q5Djdse_wJw5Zdh1Fla2iL9HAJM,28830
|
| 227 |
+
pip/_internal/pyproject.py,sha256=J-sTWqC-XfsKQgz9m1bypMWZPHItsSHzIN_NWeIRmhM,4555
|
| 228 |
+
pip/_internal/req/__init__.py,sha256=WcY9z7D3rlIKX1QY8_tRnAsS_poebiGGdtQ7EJ5JQQo,3041
|
| 229 |
+
pip/_internal/req/__pycache__/__init__.cpython-314.pyc,,
|
| 230 |
+
pip/_internal/req/__pycache__/constructors.cpython-314.pyc,,
|
| 231 |
+
pip/_internal/req/__pycache__/pep723.cpython-314.pyc,,
|
| 232 |
+
pip/_internal/req/__pycache__/req_dependency_group.cpython-314.pyc,,
|
| 233 |
+
pip/_internal/req/__pycache__/req_file.cpython-314.pyc,,
|
| 234 |
+
pip/_internal/req/__pycache__/req_install.cpython-314.pyc,,
|
| 235 |
+
pip/_internal/req/__pycache__/req_set.cpython-314.pyc,,
|
| 236 |
+
pip/_internal/req/__pycache__/req_uninstall.cpython-314.pyc,,
|
| 237 |
+
pip/_internal/req/constructors.py,sha256=R-6n8irjnaa2DMMXlR4YMouXzykFBlzUFjhOZ1NcUUg,18688
|
| 238 |
+
pip/_internal/req/pep723.py,sha256=olZL3tLmHWJhyLNfbD6U9UuikuzTcLDB06qd9WavTjs,1225
|
| 239 |
+
pip/_internal/req/req_dependency_group.py,sha256=0yEQCUaO5Bza66Y3D5o9JRf0qII5QgCRugn1x5aRivA,2618
|
| 240 |
+
pip/_internal/req/req_file.py,sha256=e32ZQ3kJaL_Sdtf32twGKqIau_AqR43MeSycl0iS2Mw,20685
|
| 241 |
+
pip/_internal/req/req_install.py,sha256=vv5cbs3P5gf43e_1v72gwSQ2N_D_qpsfuXOyerMhDuI,31273
|
| 242 |
+
pip/_internal/req/req_set.py,sha256=awkqIXnYA4Prmsj0Qb3zhqdbYUmXd-1o0P-KZ3mvRQs,2828
|
| 243 |
+
pip/_internal/req/req_uninstall.py,sha256=dCmOHt-9RaJBq921L4tMH3PmIBDetGplnbjRKXmGt00,24099
|
| 244 |
+
pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 245 |
+
pip/_internal/resolution/__pycache__/__init__.cpython-314.pyc,,
|
| 246 |
+
pip/_internal/resolution/__pycache__/base.cpython-314.pyc,,
|
| 247 |
+
pip/_internal/resolution/base.py,sha256=RIsqSP79olPdOgtPKW-oOQ364ICVopehA6RfGkRfe2s,577
|
| 248 |
+
pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 249 |
+
pip/_internal/resolution/legacy/__pycache__/__init__.cpython-314.pyc,,
|
| 250 |
+
pip/_internal/resolution/legacy/__pycache__/resolver.cpython-314.pyc,,
|
| 251 |
+
pip/_internal/resolution/legacy/resolver.py,sha256=bwUqE66etz2bcPabqxed18-iyqqb-kx3Er2aT6GeUJY,24060
|
| 252 |
+
pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 253 |
+
pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-314.pyc,,
|
| 254 |
+
pip/_internal/resolution/resolvelib/__pycache__/base.cpython-314.pyc,,
|
| 255 |
+
pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-314.pyc,,
|
| 256 |
+
pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-314.pyc,,
|
| 257 |
+
pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-314.pyc,,
|
| 258 |
+
pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-314.pyc,,
|
| 259 |
+
pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-314.pyc,,
|
| 260 |
+
pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-314.pyc,,
|
| 261 |
+
pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-314.pyc,,
|
| 262 |
+
pip/_internal/resolution/resolvelib/base.py,sha256=_AoP0ZWlaSct8CRDn2ol3CbNn4zDtnh_0zQGjXASDKI,5047
|
| 263 |
+
pip/_internal/resolution/resolvelib/candidates.py,sha256=50AN7BfB-pCfEmbKNlFZSXtdC0C8ms1waJrF2arknQE,20454
|
| 264 |
+
pip/_internal/resolution/resolvelib/factory.py,sha256=82mLwnPlig37mMrDwcgKHJTE9mPczVuJIxeaUb7CQ0Y,34028
|
| 265 |
+
pip/_internal/resolution/resolvelib/found_candidates.py,sha256=8bZYDCZLXSdLHy_s1o5f4r15HmKvqFUhzBUQOF21Lr4,6018
|
| 266 |
+
pip/_internal/resolution/resolvelib/provider.py,sha256=tbVPfFv4Vg780yZ2_XGoGFP5LVo0U2bFnZov3jpSAIk,11441
|
| 267 |
+
pip/_internal/resolution/resolvelib/reporter.py,sha256=faSgjqme0k_uzv1fvM5T0ZatPQ2eEktNvKBqfvXeGjc,3909
|
| 268 |
+
pip/_internal/resolution/resolvelib/requirements.py,sha256=Izl9n8nc188lA1BSPS8QxfudfDQPHgngw-ij6hXt0nQ,8239
|
| 269 |
+
pip/_internal/resolution/resolvelib/resolver.py,sha256=wQ94Hkep-7kWEHAc-NbMJhmzeEzgEAtxeBxyKVzZoeo,13437
|
| 270 |
+
pip/_internal/self_outdated_check.py,sha256=zDKsyLMufFHuEZY16WRu129FBbBp-ADuxyWMIN4ihPE,8284
|
| 271 |
+
pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 272 |
+
pip/_internal/utils/__pycache__/__init__.cpython-314.pyc,,
|
| 273 |
+
pip/_internal/utils/__pycache__/_jaraco_text.cpython-314.pyc,,
|
| 274 |
+
pip/_internal/utils/__pycache__/_log.cpython-314.pyc,,
|
| 275 |
+
pip/_internal/utils/__pycache__/appdirs.cpython-314.pyc,,
|
| 276 |
+
pip/_internal/utils/__pycache__/compat.cpython-314.pyc,,
|
| 277 |
+
pip/_internal/utils/__pycache__/compatibility_tags.cpython-314.pyc,,
|
| 278 |
+
pip/_internal/utils/__pycache__/datetime.cpython-314.pyc,,
|
| 279 |
+
pip/_internal/utils/__pycache__/deprecation.cpython-314.pyc,,
|
| 280 |
+
pip/_internal/utils/__pycache__/direct_url_helpers.cpython-314.pyc,,
|
| 281 |
+
pip/_internal/utils/__pycache__/egg_link.cpython-314.pyc,,
|
| 282 |
+
pip/_internal/utils/__pycache__/entrypoints.cpython-314.pyc,,
|
| 283 |
+
pip/_internal/utils/__pycache__/filesystem.cpython-314.pyc,,
|
| 284 |
+
pip/_internal/utils/__pycache__/filetypes.cpython-314.pyc,,
|
| 285 |
+
pip/_internal/utils/__pycache__/glibc.cpython-314.pyc,,
|
| 286 |
+
pip/_internal/utils/__pycache__/hashes.cpython-314.pyc,,
|
| 287 |
+
pip/_internal/utils/__pycache__/logging.cpython-314.pyc,,
|
| 288 |
+
pip/_internal/utils/__pycache__/misc.cpython-314.pyc,,
|
| 289 |
+
pip/_internal/utils/__pycache__/packaging.cpython-314.pyc,,
|
| 290 |
+
pip/_internal/utils/__pycache__/pylock.cpython-314.pyc,,
|
| 291 |
+
pip/_internal/utils/__pycache__/retry.cpython-314.pyc,,
|
| 292 |
+
pip/_internal/utils/__pycache__/subprocess.cpython-314.pyc,,
|
| 293 |
+
pip/_internal/utils/__pycache__/temp_dir.cpython-314.pyc,,
|
| 294 |
+
pip/_internal/utils/__pycache__/unpacking.cpython-314.pyc,,
|
| 295 |
+
pip/_internal/utils/__pycache__/urls.cpython-314.pyc,,
|
| 296 |
+
pip/_internal/utils/__pycache__/virtualenv.cpython-314.pyc,,
|
| 297 |
+
pip/_internal/utils/__pycache__/wheel.cpython-314.pyc,,
|
| 298 |
+
pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350
|
| 299 |
+
pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015
|
| 300 |
+
pip/_internal/utils/appdirs.py,sha256=LrzDPZMKVh0rubtCx9vu3XlZbLCSug6VSj4Qsvt66BA,1681
|
| 301 |
+
pip/_internal/utils/compat.py,sha256=C9LHXJAKkwAH8Hn3nPkz9EYK3rqPBeO_IXkOG2zzsdQ,2514
|
| 302 |
+
pip/_internal/utils/compatibility_tags.py,sha256=DiNSLqpuruXUamGQwOJ2WZByDGLTGaXi9O-Xf8fOi34,6630
|
| 303 |
+
pip/_internal/utils/datetime.py,sha256=kuJOf1mW8G5tRFN6jWardddS-9qSaR53lK1jmx3NTZY,868
|
| 304 |
+
pip/_internal/utils/deprecation.py,sha256=HVhvyO5qiRFcG88PhZlp_87qdKQNwPTUIIHWtsTR2yI,3696
|
| 305 |
+
pip/_internal/utils/direct_url_helpers.py,sha256=ttKv4GMUqlRwPPog9_CUopy6SDgoxVILzeBJzgfn2tg,3200
|
| 306 |
+
pip/_internal/utils/egg_link.py,sha256=YWfsrbmfcrfWgqQYy6OuIjsyb9IfL1q_2v4zsms1WjI,2459
|
| 307 |
+
pip/_internal/utils/entrypoints.py,sha256=uPjAyShKObdotjQjJUzprQ6r3xQvDIZwUYfHHqZ7Dok,3324
|
| 308 |
+
pip/_internal/utils/filesystem.py,sha256=mJ_PP8z1V1x4HMhydWIWDyEmWikLX0f-NXPCXEcjiLo,6892
|
| 309 |
+
pip/_internal/utils/filetypes.py,sha256=sEMa38qaqjvx1Zid3OCAUja31BOBU-USuSMPBvU3yjo,689
|
| 310 |
+
pip/_internal/utils/glibc.py,sha256=sEh8RJJLYSdRvTqAO4THVPPA-YSDVLD4SI9So-bxX1U,3726
|
| 311 |
+
pip/_internal/utils/hashes.py,sha256=d32UI1en8nyqZzdZQvxUVdfeBoe4ADWx7HtrIM4-XQ4,4998
|
| 312 |
+
pip/_internal/utils/logging.py,sha256=6lJWMC6c7_aD_i4sdgaaeb-Tm3kWpYg0hba_V1-OLnE,13414
|
| 313 |
+
pip/_internal/utils/misc.py,sha256=phFIbHm2kmliHDXJ0eNPxgGP423ZpvZoMKKtJ1_Zvjs,23722
|
| 314 |
+
pip/_internal/utils/packaging.py,sha256=s5tpUmFumwV0H9JSTzryrIY4JwQM8paGt7Sm7eNwt2Y,1601
|
| 315 |
+
pip/_internal/utils/pylock.py,sha256=nKQknZgyswWgzi--hRQX_DLUYQ3g5wGTCwVNQNdoJ54,3817
|
| 316 |
+
pip/_internal/utils/retry.py,sha256=83wReEB2rcntMZ5VLd7ascaYSjn_kLdlQCqxILxWkPM,1461
|
| 317 |
+
pip/_internal/utils/subprocess.py,sha256=r4-Ba_Yc3uZXQpi0K4pZFsCT_QqdSvtF3XJ-204QWaA,8983
|
| 318 |
+
pip/_internal/utils/temp_dir.py,sha256=D9c8D7WOProOO8GGDqpBeVSj10NGFmunG0o2TodjjIU,9307
|
| 319 |
+
pip/_internal/utils/unpacking.py,sha256=4hNg6dqHOn_KzGCzSC76nChG97d_UjtF9AnLSof672o,12972
|
| 320 |
+
pip/_internal/utils/urls.py,sha256=aF_eg9ul5d8bMCxfSSSxQcfs-OpJdbStYqZHoy2K1RE,1601
|
| 321 |
+
pip/_internal/utils/virtualenv.py,sha256=mX-UPyw1MPxhwUxKhbqWWX70J6PHXAJjVVrRnG0h9mc,3455
|
| 322 |
+
pip/_internal/utils/wheel.py,sha256=YdRuj6MicG-Q9Mg03FbUv1WTLam6Lc7AgijY4voVyis,4468
|
| 323 |
+
pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596
|
| 324 |
+
pip/_internal/vcs/__pycache__/__init__.cpython-314.pyc,,
|
| 325 |
+
pip/_internal/vcs/__pycache__/bazaar.cpython-314.pyc,,
|
| 326 |
+
pip/_internal/vcs/__pycache__/git.cpython-314.pyc,,
|
| 327 |
+
pip/_internal/vcs/__pycache__/mercurial.cpython-314.pyc,,
|
| 328 |
+
pip/_internal/vcs/__pycache__/subversion.cpython-314.pyc,,
|
| 329 |
+
pip/_internal/vcs/__pycache__/versioncontrol.cpython-314.pyc,,
|
| 330 |
+
pip/_internal/vcs/bazaar.py,sha256=3W1eHjkYx2vc6boeb2NBh4I_rlGAXM-vrzfNhLm1Rxg,3734
|
| 331 |
+
pip/_internal/vcs/git.py,sha256=TTeqDuzS-_BFSNuUStVWmE2nGDpKuvUhBBJk_CCQXV0,19144
|
| 332 |
+
pip/_internal/vcs/mercurial.py,sha256=w1ZJWLKqNP1onEjkfjlwBVnMqPZNSIER8ayjQcnTq4w,5575
|
| 333 |
+
pip/_internal/vcs/subversion.py,sha256=uUgdPvxmvEB8Qwtjr0Hc0XgFjbiNi5cbvI4vARLOJXo,11787
|
| 334 |
+
pip/_internal/vcs/versioncontrol.py,sha256=Ma_HMZBVveSkeYvxacvqeujnkSIaF1XjxTsS3BwcJ8E,22599
|
| 335 |
+
pip/_internal/wheel_builder.py,sha256=yvEULStZtty9Kplp89tDis3hGdyKQ-2BUbFLmJ_5ink,9010
|
| 336 |
+
pip/_vendor/README.rst,sha256=pKKBwCWhu3M3qQ9dDnsmxb3KdsRr-nWmMq2srbH_Bi0,9394
|
| 337 |
+
pip/_vendor/__init__.py,sha256=WzusPTGWIMeQQWSVJ0h2rafGkVTa9WKJ2HT-2-EoZrU,4907
|
| 338 |
+
pip/_vendor/__pycache__/__init__.cpython-314.pyc,,
|
| 339 |
+
pip/_vendor/cachecontrol/LICENSE.txt,sha256=hu7uh74qQ_P_H1ZJb0UfaSQ5JvAl_tuwM2ZsMExMFhs,558
|
| 340 |
+
pip/_vendor/cachecontrol/__init__.py,sha256=GxwRkm_TQBtPZpfpVK9r6S9dAy2DVnVgDVHJKTiPZ1k,820
|
| 341 |
+
pip/_vendor/cachecontrol/__pycache__/__init__.cpython-314.pyc,,
|
| 342 |
+
pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-314.pyc,,
|
| 343 |
+
pip/_vendor/cachecontrol/__pycache__/adapter.cpython-314.pyc,,
|
| 344 |
+
pip/_vendor/cachecontrol/__pycache__/cache.cpython-314.pyc,,
|
| 345 |
+
pip/_vendor/cachecontrol/__pycache__/controller.cpython-314.pyc,,
|
| 346 |
+
pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-314.pyc,,
|
| 347 |
+
pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-314.pyc,,
|
| 348 |
+
pip/_vendor/cachecontrol/__pycache__/serialize.cpython-314.pyc,,
|
| 349 |
+
pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-314.pyc,,
|
| 350 |
+
pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737
|
| 351 |
+
pip/_vendor/cachecontrol/adapter.py,sha256=W-HW-l01gyCsnxkOyCbqx7sxrWYoBbKrDsKkVVQN6NE,6586
|
| 352 |
+
pip/_vendor/cachecontrol/cache.py,sha256=OXwv7Fn2AwnKNiahJHnjtvaKLndvVLv_-zO-ltlV9qI,1953
|
| 353 |
+
pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303
|
| 354 |
+
pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-314.pyc,,
|
| 355 |
+
pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-314.pyc,,
|
| 356 |
+
pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-314.pyc,,
|
| 357 |
+
pip/_vendor/cachecontrol/caches/file_cache.py,sha256=d8upFmy_zwaCmlbWEVBlLXFddt8Zw8c5SFpxeOZsdfw,4117
|
| 358 |
+
pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386
|
| 359 |
+
pip/_vendor/cachecontrol/controller.py,sha256=xBauC-vUSu5GsJsxD4-W-JaKqqbBz0MN6Zv8PA2N8hI,19102
|
| 360 |
+
pip/_vendor/cachecontrol/filewrapper.py,sha256=DhxC_rSk-beKdbsYhfvBUDovQHX9r3gHH_jP9-q_mKk,4354
|
| 361 |
+
pip/_vendor/cachecontrol/heuristics.py,sha256=gqMXU8w0gQuEQiSdu3Yg-0vd9kW7nrWKbLca75rheGE,4881
|
| 362 |
+
pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 363 |
+
pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163
|
| 364 |
+
pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417
|
| 365 |
+
pip/_vendor/certifi/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989
|
| 366 |
+
pip/_vendor/certifi/__init__.py,sha256=969deMMS7Uchipr0oO4dbRBUvRi0uNYCn07VmG1aTrg,94
|
| 367 |
+
pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255
|
| 368 |
+
pip/_vendor/certifi/__pycache__/__init__.cpython-314.pyc,,
|
| 369 |
+
pip/_vendor/certifi/__pycache__/__main__.cpython-314.pyc,,
|
| 370 |
+
pip/_vendor/certifi/__pycache__/core.cpython-314.pyc,,
|
| 371 |
+
pip/_vendor/certifi/cacert.pem,sha256=Tzl1_zCrvzVEO0hgZK6Ly0Hf9wf_31dsdtKS-0WKoKk,270954
|
| 372 |
+
pip/_vendor/certifi/core.py,sha256=gu_ECVI1m3Rq0ytpsNE61hgQGcKaOAt9Rs9G8KsTCOI,3442
|
| 373 |
+
pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 374 |
+
pip/_vendor/dependency_groups/LICENSE.txt,sha256=GrNuPipLqGMWJThPh-ngkdsfrtA0xbIzJbMjmr8sxSU,1099
|
| 375 |
+
pip/_vendor/dependency_groups/__init__.py,sha256=C3OFu0NGwDzQ4LOmmSOFPsRSvkbBn-mdd4j_5YqJw-s,250
|
| 376 |
+
pip/_vendor/dependency_groups/__main__.py,sha256=UNTM7P5mfVtT7wDi9kOTXWgV3fu3e8bTrt1Qp1jvjKo,1709
|
| 377 |
+
pip/_vendor/dependency_groups/__pycache__/__init__.cpython-314.pyc,,
|
| 378 |
+
pip/_vendor/dependency_groups/__pycache__/__main__.cpython-314.pyc,,
|
| 379 |
+
pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-314.pyc,,
|
| 380 |
+
pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-314.pyc,,
|
| 381 |
+
pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-314.pyc,,
|
| 382 |
+
pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-314.pyc,,
|
| 383 |
+
pip/_vendor/dependency_groups/_implementation.py,sha256=Gqb2DlQELRakeHlKf6QtQSW0M-bcEomxHw4JsvID1ls,8041
|
| 384 |
+
pip/_vendor/dependency_groups/_lint_dependency_groups.py,sha256=yp-DDqKXtbkDTNa0ifa-FmOA8ra24lPZEXftW-R5AuI,1710
|
| 385 |
+
pip/_vendor/dependency_groups/_pip_wrapper.py,sha256=nuVW_w_ntVxpE26ELEvngMY0N04sFLsijXRyZZROFG8,1865
|
| 386 |
+
pip/_vendor/dependency_groups/_toml_compat.py,sha256=BHnXnFacm3DeolsA35GjI6qkDApvua-1F20kv3BfZWE,285
|
| 387 |
+
pip/_vendor/dependency_groups/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 388 |
+
pip/_vendor/distlib/LICENSE.txt,sha256=gI4QyKarjesUn_mz-xn0R6gICUYG1xKpylf-rTVSWZ0,14531
|
| 389 |
+
pip/_vendor/distlib/__init__.py,sha256=Deo3uo98aUyIfdKJNqofeSEFWwDzrV2QeGLXLsgq0Ag,625
|
| 390 |
+
pip/_vendor/distlib/__pycache__/__init__.cpython-314.pyc,,
|
| 391 |
+
pip/_vendor/distlib/__pycache__/compat.cpython-314.pyc,,
|
| 392 |
+
pip/_vendor/distlib/__pycache__/resources.cpython-314.pyc,,
|
| 393 |
+
pip/_vendor/distlib/__pycache__/scripts.cpython-314.pyc,,
|
| 394 |
+
pip/_vendor/distlib/__pycache__/util.cpython-314.pyc,,
|
| 395 |
+
pip/_vendor/distlib/compat.py,sha256=2jRSjRI4o-vlXeTK2BCGIUhkc6e9ZGhSsacRM5oseTw,41467
|
| 396 |
+
pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820
|
| 397 |
+
pip/_vendor/distlib/scripts.py,sha256=Qvp76E9Jc3IgyYubnpqI9fS7eseGOe4FjpeVKqKt9Iw,18612
|
| 398 |
+
pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792
|
| 399 |
+
pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784
|
| 400 |
+
pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032
|
| 401 |
+
pip/_vendor/distlib/util.py,sha256=vMPGvsS4j9hF6Y9k3Tyom1aaHLb0rFmZAEyzeAdel9w,66682
|
| 402 |
+
pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648
|
| 403 |
+
pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448
|
| 404 |
+
pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888
|
| 405 |
+
pip/_vendor/distro/LICENSE,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
| 406 |
+
pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981
|
| 407 |
+
pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64
|
| 408 |
+
pip/_vendor/distro/__pycache__/__init__.cpython-314.pyc,,
|
| 409 |
+
pip/_vendor/distro/__pycache__/__main__.cpython-314.pyc,,
|
| 410 |
+
pip/_vendor/distro/__pycache__/distro.cpython-314.pyc,,
|
| 411 |
+
pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430
|
| 412 |
+
pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 413 |
+
pip/_vendor/idna/LICENSE.md,sha256=t6M2q_OwThgOwGXN0W5wXQeeHMehT5EKpukYfza5zYc,1541
|
| 414 |
+
pip/_vendor/idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868
|
| 415 |
+
pip/_vendor/idna/__pycache__/__init__.cpython-314.pyc,,
|
| 416 |
+
pip/_vendor/idna/__pycache__/codec.cpython-314.pyc,,
|
| 417 |
+
pip/_vendor/idna/__pycache__/compat.cpython-314.pyc,,
|
| 418 |
+
pip/_vendor/idna/__pycache__/core.cpython-314.pyc,,
|
| 419 |
+
pip/_vendor/idna/__pycache__/idnadata.cpython-314.pyc,,
|
| 420 |
+
pip/_vendor/idna/__pycache__/intranges.cpython-314.pyc,,
|
| 421 |
+
pip/_vendor/idna/__pycache__/package_data.cpython-314.pyc,,
|
| 422 |
+
pip/_vendor/idna/__pycache__/uts46data.cpython-314.pyc,,
|
| 423 |
+
pip/_vendor/idna/codec.py,sha256=M2SGWN7cs_6B32QmKTyTN6xQGZeYQgQ2wiX3_DR6loE,3438
|
| 424 |
+
pip/_vendor/idna/compat.py,sha256=RzLy6QQCdl9784aFhb2EX9EKGCJjg0P3PilGdeXXcx8,316
|
| 425 |
+
pip/_vendor/idna/core.py,sha256=P26_XVycuMTZ1R2mNK1ZREVzM5mvTzdabBXfyZVU1Lc,13246
|
| 426 |
+
pip/_vendor/idna/idnadata.py,sha256=SG8jhaGE53iiD6B49pt2pwTv_UvClciWE-N54oR2p4U,79623
|
| 427 |
+
pip/_vendor/idna/intranges.py,sha256=amUtkdhYcQG8Zr-CoMM_kVRacxkivC1WgxN1b63KKdU,1898
|
| 428 |
+
pip/_vendor/idna/package_data.py,sha256=_CUavOxobnbyNG2FLyHoN8QHP3QM9W1tKuw7eq9QwBk,21
|
| 429 |
+
pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 430 |
+
pip/_vendor/idna/uts46data.py,sha256=H9J35VkD0F9L9mKOqjeNGd2A-Va6FlPoz6Jz4K7h-ps,243725
|
| 431 |
+
pip/_vendor/msgpack/COPYING,sha256=SS3tuoXaWHL3jmCRvNH-pHTWYNNay03ulkuKqz8AdCc,614
|
| 432 |
+
pip/_vendor/msgpack/__init__.py,sha256=RA8gcqK17YpkxBnNwXJVa1oa2LygWDgfF1nA1NPw3mo,1109
|
| 433 |
+
pip/_vendor/msgpack/__pycache__/__init__.cpython-314.pyc,,
|
| 434 |
+
pip/_vendor/msgpack/__pycache__/exceptions.cpython-314.pyc,,
|
| 435 |
+
pip/_vendor/msgpack/__pycache__/ext.cpython-314.pyc,,
|
| 436 |
+
pip/_vendor/msgpack/__pycache__/fallback.cpython-314.pyc,,
|
| 437 |
+
pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
|
| 438 |
+
pip/_vendor/msgpack/ext.py,sha256=kteJv03n9tYzd5oo3xYopVTo4vRaAxonBQQJhXohZZo,5726
|
| 439 |
+
pip/_vendor/msgpack/fallback.py,sha256=0g1Pzp0vtmBEmJ5w9F3s_-JMVURP8RS4G1cc5TRaAsI,32390
|
| 440 |
+
pip/_vendor/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197
|
| 441 |
+
pip/_vendor/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
| 442 |
+
pip/_vendor/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344
|
| 443 |
+
pip/_vendor/packaging/__init__.py,sha256=y4lVbpeBzCGk-IPDw5BGBZ_b0P3ukEEJZAbGYc6Ey8c,494
|
| 444 |
+
pip/_vendor/packaging/__pycache__/__init__.cpython-314.pyc,,
|
| 445 |
+
pip/_vendor/packaging/__pycache__/_elffile.cpython-314.pyc,,
|
| 446 |
+
pip/_vendor/packaging/__pycache__/_manylinux.cpython-314.pyc,,
|
| 447 |
+
pip/_vendor/packaging/__pycache__/_musllinux.cpython-314.pyc,,
|
| 448 |
+
pip/_vendor/packaging/__pycache__/_parser.cpython-314.pyc,,
|
| 449 |
+
pip/_vendor/packaging/__pycache__/_structures.cpython-314.pyc,,
|
| 450 |
+
pip/_vendor/packaging/__pycache__/_tokenizer.cpython-314.pyc,,
|
| 451 |
+
pip/_vendor/packaging/__pycache__/markers.cpython-314.pyc,,
|
| 452 |
+
pip/_vendor/packaging/__pycache__/metadata.cpython-314.pyc,,
|
| 453 |
+
pip/_vendor/packaging/__pycache__/pylock.cpython-314.pyc,,
|
| 454 |
+
pip/_vendor/packaging/__pycache__/requirements.cpython-314.pyc,,
|
| 455 |
+
pip/_vendor/packaging/__pycache__/specifiers.cpython-314.pyc,,
|
| 456 |
+
pip/_vendor/packaging/__pycache__/tags.cpython-314.pyc,,
|
| 457 |
+
pip/_vendor/packaging/__pycache__/utils.cpython-314.pyc,,
|
| 458 |
+
pip/_vendor/packaging/__pycache__/version.cpython-314.pyc,,
|
| 459 |
+
pip/_vendor/packaging/_elffile.py,sha256=-sKkptYqzYw2-x3QByJa5mB4rfPWu1pxkZHRx1WAFCY,3211
|
| 460 |
+
pip/_vendor/packaging/_manylinux.py,sha256=Hf6nB0cOrayEs96-p3oIXAgGnFquv20DO5l-o2_Xnv0,9559
|
| 461 |
+
pip/_vendor/packaging/_musllinux.py,sha256=Z6swjH3MA7XS3qXnmMN7QPhqP3fnoYI0eQ18e9-HgAE,2707
|
| 462 |
+
pip/_vendor/packaging/_parser.py,sha256=U_DajsEx2VoC_F46fSVV3hDKNCWoQYkPkasO3dld0ig,10518
|
| 463 |
+
pip/_vendor/packaging/_structures.py,sha256=Hn49Ta8zV9Wo8GiCL8Nl2ARZY983Un3pruZGVNldPwE,1514
|
| 464 |
+
pip/_vendor/packaging/_tokenizer.py,sha256=M8EwNIdXeL9NMFuFrQtiOKwjka_xFx8KjRQnfE8O_z8,5421
|
| 465 |
+
pip/_vendor/packaging/licenses/__init__.py,sha256=TwXLHZCXwSgdFwRLPxW602T6mSieunSFHM6fp8pgW78,5819
|
| 466 |
+
pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-314.pyc,,
|
| 467 |
+
pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-314.pyc,,
|
| 468 |
+
pip/_vendor/packaging/licenses/_spdx.py,sha256=WW7DXiyg68up_YND_wpRYlr1SHhiV4FfJLQffghhMxQ,51122
|
| 469 |
+
pip/_vendor/packaging/markers.py,sha256=ZX-cLvW1S3cZcEc0fHI4z7zSx5U2T19yMpDP_mE-CYw,12771
|
| 470 |
+
pip/_vendor/packaging/metadata.py,sha256=CWVZpN_HfoYMSSDuCP7igOvGgqA9AOmpW8f3qTisfnc,39360
|
| 471 |
+
pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 472 |
+
pip/_vendor/packaging/pylock.py,sha256=-R1uNfJ4PaLto7Mg62YsGOHgvskuiIEqPwxOywl42Jk,22537
|
| 473 |
+
pip/_vendor/packaging/requirements.py,sha256=PMCAWD8aNMnVD-6uZMedhBuAVX2573eZ4yPBLXmz04I,2870
|
| 474 |
+
pip/_vendor/packaging/specifiers.py,sha256=tF2nC-jwW94FYe6So9dNGenQx1Hdif7ErmWlVp1QiXE,40821
|
| 475 |
+
pip/_vendor/packaging/tags.py,sha256=cXLV1pJD3UtJlDg7Wz3zrfdQhRZqr8jumSAKKAAd2xE,22856
|
| 476 |
+
pip/_vendor/packaging/utils.py,sha256=N4c6oZzFJy6klTZ3AnkNz7sSkJesuFWPp68LA3B5dAo,5040
|
| 477 |
+
pip/_vendor/packaging/version.py,sha256=RVRKq8_GD5Bcak6E1kGG8K7siNZYW9n_XK8M2ZLl0H8,23284
|
| 478 |
+
pip/_vendor/pkg_resources/LICENSE,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023
|
| 479 |
+
pip/_vendor/pkg_resources/__init__.py,sha256=vbTJ0_ruUgGxQjlEqsruFmiNPVyh2t9q-zyTDT053xI,124451
|
| 480 |
+
pip/_vendor/pkg_resources/__pycache__/__init__.cpython-314.pyc,,
|
| 481 |
+
pip/_vendor/platformdirs/LICENSE,sha256=KeD9YukphQ6G6yjD_czwzv30-pSHkBHP-z0NS-1tTbY,1089
|
| 482 |
+
pip/_vendor/platformdirs/__init__.py,sha256=UfeSHWl8AeTtbOBOoHAxK4dODOWkZtfy-m_i7cWdJ8c,22344
|
| 483 |
+
pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505
|
| 484 |
+
pip/_vendor/platformdirs/__pycache__/__init__.cpython-314.pyc,,
|
| 485 |
+
pip/_vendor/platformdirs/__pycache__/__main__.cpython-314.pyc,,
|
| 486 |
+
pip/_vendor/platformdirs/__pycache__/android.cpython-314.pyc,,
|
| 487 |
+
pip/_vendor/platformdirs/__pycache__/api.cpython-314.pyc,,
|
| 488 |
+
pip/_vendor/platformdirs/__pycache__/macos.cpython-314.pyc,,
|
| 489 |
+
pip/_vendor/platformdirs/__pycache__/unix.cpython-314.pyc,,
|
| 490 |
+
pip/_vendor/platformdirs/__pycache__/version.cpython-314.pyc,,
|
| 491 |
+
pip/_vendor/platformdirs/__pycache__/windows.cpython-314.pyc,,
|
| 492 |
+
pip/_vendor/platformdirs/android.py,sha256=r0DshVBf-RO1jXJGX8C4Til7F1XWt-bkdWMgmvEiaYg,9013
|
| 493 |
+
pip/_vendor/platformdirs/api.py,sha256=wPHOlwOsfz2oqQZ6A2FcCu5kEAj-JondzoNOHYFQ0h8,9281
|
| 494 |
+
pip/_vendor/platformdirs/macos.py,sha256=0XoOgin1NK7Qki7iskD-oS8xKxw6bXgoKEgdqpCRAFQ,6322
|
| 495 |
+
pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 496 |
+
pip/_vendor/platformdirs/unix.py,sha256=WZmkUA--L3JNRGmz32s35YfoD3ica6xKIPdCV_HhLcs,10458
|
| 497 |
+
pip/_vendor/platformdirs/version.py,sha256=BI_dKLSMwlkl57vlxZnT8oVjPiUC2W_sdx_8_h99HeQ,704
|
| 498 |
+
pip/_vendor/platformdirs/windows.py,sha256=XvCfklGUMVxJbXit51jpYMN-lNeScPB82qS1CAeplL0,10362
|
| 499 |
+
pip/_vendor/pygments/LICENSE,sha256=qdZvHVJt8C4p3Oc0NtNOVuhjL0bCdbvf_HBWnogvnxc,1331
|
| 500 |
+
pip/_vendor/pygments/__init__.py,sha256=8uNqJCCwXqbEx5aSsBr0FykUQOBDKBihO5mPqiw1aqo,2983
|
| 501 |
+
pip/_vendor/pygments/__main__.py,sha256=WrndpSe6i1ckX_SQ1KaxD9CTKGzD0EuCOFxcbwFpoLU,353
|
| 502 |
+
pip/_vendor/pygments/__pycache__/__init__.cpython-314.pyc,,
|
| 503 |
+
pip/_vendor/pygments/__pycache__/__main__.cpython-314.pyc,,
|
| 504 |
+
pip/_vendor/pygments/__pycache__/console.cpython-314.pyc,,
|
| 505 |
+
pip/_vendor/pygments/__pycache__/filter.cpython-314.pyc,,
|
| 506 |
+
pip/_vendor/pygments/__pycache__/formatter.cpython-314.pyc,,
|
| 507 |
+
pip/_vendor/pygments/__pycache__/lexer.cpython-314.pyc,,
|
| 508 |
+
pip/_vendor/pygments/__pycache__/modeline.cpython-314.pyc,,
|
| 509 |
+
pip/_vendor/pygments/__pycache__/plugin.cpython-314.pyc,,
|
| 510 |
+
pip/_vendor/pygments/__pycache__/regexopt.cpython-314.pyc,,
|
| 511 |
+
pip/_vendor/pygments/__pycache__/scanner.cpython-314.pyc,,
|
| 512 |
+
pip/_vendor/pygments/__pycache__/sphinxext.cpython-314.pyc,,
|
| 513 |
+
pip/_vendor/pygments/__pycache__/style.cpython-314.pyc,,
|
| 514 |
+
pip/_vendor/pygments/__pycache__/token.cpython-314.pyc,,
|
| 515 |
+
pip/_vendor/pygments/__pycache__/unistring.cpython-314.pyc,,
|
| 516 |
+
pip/_vendor/pygments/__pycache__/util.cpython-314.pyc,,
|
| 517 |
+
pip/_vendor/pygments/console.py,sha256=AagDWqwea2yBWf10KC9ptBgMpMjxKp8yABAmh-NQOVk,1718
|
| 518 |
+
pip/_vendor/pygments/filter.py,sha256=YLtpTnZiu07nY3oK9nfR6E9Y1FBHhP5PX8gvkJWcfag,1910
|
| 519 |
+
pip/_vendor/pygments/filters/__init__.py,sha256=4U4jtA0X3iP83uQnB9-TI-HDSw8E8y8zMYHa0UjbbaI,40392
|
| 520 |
+
pip/_vendor/pygments/filters/__pycache__/__init__.cpython-314.pyc,,
|
| 521 |
+
pip/_vendor/pygments/formatter.py,sha256=KZQMmyo_xkOIkQG8g66LYEkBh1bx7a0HyGCBcvhI9Ew,4390
|
| 522 |
+
pip/_vendor/pygments/formatters/__init__.py,sha256=KTwBmnXlaopJhQDOemVHYHskiDghuq-08YtP6xPNJPg,5385
|
| 523 |
+
pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-314.pyc,,
|
| 524 |
+
pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-314.pyc,,
|
| 525 |
+
pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176
|
| 526 |
+
pip/_vendor/pygments/lexer.py,sha256=_kBrOJ_NT5Tl0IVM0rA9c8eysP6_yrlGzEQI0eVYB-A,35349
|
| 527 |
+
pip/_vendor/pygments/lexers/__init__.py,sha256=wbIME35GH7bI1B9rNPJFqWT-ij_RApZDYPUlZycaLzA,12115
|
| 528 |
+
pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-314.pyc,,
|
| 529 |
+
pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-314.pyc,,
|
| 530 |
+
pip/_vendor/pygments/lexers/__pycache__/python.cpython-314.pyc,,
|
| 531 |
+
pip/_vendor/pygments/lexers/_mapping.py,sha256=l4tCXM8e9aPC2BD6sjIr0deT-J-z5tHgCwL-p1fS0PE,77602
|
| 532 |
+
pip/_vendor/pygments/lexers/python.py,sha256=vxjn1cOHclIKJKxoyiBsQTY65GHbkZtZRuKQ2AVCKaw,53853
|
| 533 |
+
pip/_vendor/pygments/modeline.py,sha256=K5eSkR8GS1r5OkXXTHOcV0aM_6xpk9eWNEIAW-OOJ2g,1005
|
| 534 |
+
pip/_vendor/pygments/plugin.py,sha256=tPx0rJCTIZ9ioRgLNYG4pifCbAwTRUZddvLw-NfAk2w,1891
|
| 535 |
+
pip/_vendor/pygments/regexopt.py,sha256=wXaP9Gjp_hKAdnICqoDkRxAOQJSc4v3X6mcxx3z-TNs,3072
|
| 536 |
+
pip/_vendor/pygments/scanner.py,sha256=nNcETRR1tRuiTaHmHSTTECVYFPcLf6mDZu1e4u91A9E,3092
|
| 537 |
+
pip/_vendor/pygments/sphinxext.py,sha256=5x7Zh9YlU6ISJ31dMwduiaanb5dWZnKg3MyEQsseNnQ,7981
|
| 538 |
+
pip/_vendor/pygments/style.py,sha256=PlOZqlsnTVd58RGy50vkA2cXQ_lP5bF5EGMEBTno6DA,6420
|
| 539 |
+
pip/_vendor/pygments/styles/__init__.py,sha256=x9ebctfyvCAFpMTlMJ5YxwcNYBzjgq6zJaKkNm78r4M,2042
|
| 540 |
+
pip/_vendor/pygments/styles/__pycache__/__init__.cpython-314.pyc,,
|
| 541 |
+
pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-314.pyc,,
|
| 542 |
+
pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312
|
| 543 |
+
pip/_vendor/pygments/token.py,sha256=WbdWGhYm_Vosb0DDxW9lHNPgITXfWTsQmHt6cy9RbcM,6226
|
| 544 |
+
pip/_vendor/pygments/unistring.py,sha256=al-_rBemRuGvinsrM6atNsHTmJ6DUbw24q2O2Ru1cBc,63208
|
| 545 |
+
pip/_vendor/pygments/util.py,sha256=oRtSpiAo5jM9ulntkvVbgXUdiAW57jnuYGB7t9fYuhc,10031
|
| 546 |
+
pip/_vendor/pyproject_hooks/LICENSE,sha256=GyKwSbUmfW38I6Z79KhNjsBLn9-xpR02DkK0NCyLQVQ,1081
|
| 547 |
+
pip/_vendor/pyproject_hooks/__init__.py,sha256=cPB_a9LXz5xvsRbX1o2qyAdjLatZJdQ_Lc5McNX-X7Y,691
|
| 548 |
+
pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-314.pyc,,
|
| 549 |
+
pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-314.pyc,,
|
| 550 |
+
pip/_vendor/pyproject_hooks/_impl.py,sha256=jY-raxnmyRyB57ruAitrJRUzEexuAhGTpgMygqx67Z4,14936
|
| 551 |
+
pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=MJNPpfIxcO-FghxpBbxkG1rFiQf6HOUbV4U5mq0HFns,557
|
| 552 |
+
pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-314.pyc,,
|
| 553 |
+
pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-314.pyc,,
|
| 554 |
+
pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=qcXMhmx__MIJq10gGHW3mA4Tl8dy8YzHMccwnNoKlw0,12216
|
| 555 |
+
pip/_vendor/pyproject_hooks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 556 |
+
pip/_vendor/requests/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
| 557 |
+
pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057
|
| 558 |
+
pip/_vendor/requests/__pycache__/__init__.cpython-314.pyc,,
|
| 559 |
+
pip/_vendor/requests/__pycache__/__version__.cpython-314.pyc,,
|
| 560 |
+
pip/_vendor/requests/__pycache__/_internal_utils.cpython-314.pyc,,
|
| 561 |
+
pip/_vendor/requests/__pycache__/adapters.cpython-314.pyc,,
|
| 562 |
+
pip/_vendor/requests/__pycache__/api.cpython-314.pyc,,
|
| 563 |
+
pip/_vendor/requests/__pycache__/auth.cpython-314.pyc,,
|
| 564 |
+
pip/_vendor/requests/__pycache__/certs.cpython-314.pyc,,
|
| 565 |
+
pip/_vendor/requests/__pycache__/compat.cpython-314.pyc,,
|
| 566 |
+
pip/_vendor/requests/__pycache__/cookies.cpython-314.pyc,,
|
| 567 |
+
pip/_vendor/requests/__pycache__/exceptions.cpython-314.pyc,,
|
| 568 |
+
pip/_vendor/requests/__pycache__/help.cpython-314.pyc,,
|
| 569 |
+
pip/_vendor/requests/__pycache__/hooks.cpython-314.pyc,,
|
| 570 |
+
pip/_vendor/requests/__pycache__/models.cpython-314.pyc,,
|
| 571 |
+
pip/_vendor/requests/__pycache__/packages.cpython-314.pyc,,
|
| 572 |
+
pip/_vendor/requests/__pycache__/sessions.cpython-314.pyc,,
|
| 573 |
+
pip/_vendor/requests/__pycache__/status_codes.cpython-314.pyc,,
|
| 574 |
+
pip/_vendor/requests/__pycache__/structures.cpython-314.pyc,,
|
| 575 |
+
pip/_vendor/requests/__pycache__/utils.cpython-314.pyc,,
|
| 576 |
+
pip/_vendor/requests/__version__.py,sha256=QKDceK8K_ujqwDDc3oYrR0odOBYgKVOQQ5vFap_G_cg,435
|
| 577 |
+
pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495
|
| 578 |
+
pip/_vendor/requests/adapters.py,sha256=2MLFOK9GpYNhiTd6zLDUrAgSkIB-76i6pmSuUJjHC2w,26429
|
| 579 |
+
pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449
|
| 580 |
+
pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186
|
| 581 |
+
pip/_vendor/requests/certs.py,sha256=kHDlkK_beuHXeMPc5jta2wgl8gdKeUWt5f2nTDVrvt8,441
|
| 582 |
+
pip/_vendor/requests/compat.py,sha256=QfbmdTFiZzjSHMXiMrd4joCRU6RabtQ9zIcPoVaHIus,1822
|
| 583 |
+
pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590
|
| 584 |
+
pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272
|
| 585 |
+
pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813
|
| 586 |
+
pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733
|
| 587 |
+
pip/_vendor/requests/models.py,sha256=taljlg6vJ4b-xMu2TaMNFFkaiwMex_VsEQ6qUTN3wzY,35575
|
| 588 |
+
pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057
|
| 589 |
+
pip/_vendor/requests/sessions.py,sha256=Cl1dpEnOfwrzzPbku-emepNeN4Rt_0_58Iy2x-JGTm8,30503
|
| 590 |
+
pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322
|
| 591 |
+
pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912
|
| 592 |
+
pip/_vendor/requests/utils.py,sha256=WS3wHSQaaEfceu1syiFo5jf4e_CWKUTep_IabOVI_J0,33225
|
| 593 |
+
pip/_vendor/resolvelib/LICENSE,sha256=84j9OMrRMRLB3A9mm76A5_hFQe26-3LzAw0sp2QsPJ0,751
|
| 594 |
+
pip/_vendor/resolvelib/__init__.py,sha256=yoX-d4STvwGGCiQRE5cJC9Cter69SgVgqClxOCvSP7M,541
|
| 595 |
+
pip/_vendor/resolvelib/__pycache__/__init__.cpython-314.pyc,,
|
| 596 |
+
pip/_vendor/resolvelib/__pycache__/providers.cpython-314.pyc,,
|
| 597 |
+
pip/_vendor/resolvelib/__pycache__/reporters.cpython-314.pyc,,
|
| 598 |
+
pip/_vendor/resolvelib/__pycache__/structs.cpython-314.pyc,,
|
| 599 |
+
pip/_vendor/resolvelib/providers.py,sha256=pIWJbIdJJ9GFtNbtwTH0Ia43Vj6hYCEJj2DOLue15FM,8914
|
| 600 |
+
pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 601 |
+
pip/_vendor/resolvelib/reporters.py,sha256=pNJf4nFxLpAeKxlBUi2GEj0a2Ij1nikY0UabTKXesT4,2037
|
| 602 |
+
pip/_vendor/resolvelib/resolvers/__init__.py,sha256=728M3EvmnPbVXS7ExXlv2kMu6b7wEsoPutEfl-uVk_I,640
|
| 603 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-314.pyc,,
|
| 604 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-314.pyc,,
|
| 605 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-314.pyc,,
|
| 606 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-314.pyc,,
|
| 607 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-314.pyc,,
|
| 608 |
+
pip/_vendor/resolvelib/resolvers/abstract.py,sha256=CNeQPnpAudY77nmzOkONSmAgRlzIf06X-X9mvRYODms,1543
|
| 609 |
+
pip/_vendor/resolvelib/resolvers/criterion.py,sha256=lcmZGv5sKHOnFD_RzZwvlGSj19MeA-5rCMpdf2Sgw7Y,1768
|
| 610 |
+
pip/_vendor/resolvelib/resolvers/exceptions.py,sha256=ln_jaQtgLlRUSFY627yiHG2gD7AgaXzRKaElFVh7fDQ,1768
|
| 611 |
+
pip/_vendor/resolvelib/resolvers/resolution.py,sha256=3J_zkW-sD3EY-BlNXjyln__njpyH5n0UZJT6uV7CheA,24212
|
| 612 |
+
pip/_vendor/resolvelib/structs.py,sha256=pu-EJiR2IBITr2SQeNPRa0rXhjlStfmO_GEgAhr3004,6420
|
| 613 |
+
pip/_vendor/rich/LICENSE,sha256=3u18F6QxgVgZCj6iOcyHmlpQJxzruYrnAl9I--WNyhU,1056
|
| 614 |
+
pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090
|
| 615 |
+
pip/_vendor/rich/__main__.py,sha256=e_aVC-tDzarWQW9SuZMuCgBr6ODV_iDNV2Wh2xkxOlw,7896
|
| 616 |
+
pip/_vendor/rich/__pycache__/__init__.cpython-314.pyc,,
|
| 617 |
+
pip/_vendor/rich/__pycache__/__main__.cpython-314.pyc,,
|
| 618 |
+
pip/_vendor/rich/__pycache__/_cell_widths.cpython-314.pyc,,
|
| 619 |
+
pip/_vendor/rich/__pycache__/_emoji_codes.cpython-314.pyc,,
|
| 620 |
+
pip/_vendor/rich/__pycache__/_emoji_replace.cpython-314.pyc,,
|
| 621 |
+
pip/_vendor/rich/__pycache__/_export_format.cpython-314.pyc,,
|
| 622 |
+
pip/_vendor/rich/__pycache__/_extension.cpython-314.pyc,,
|
| 623 |
+
pip/_vendor/rich/__pycache__/_fileno.cpython-314.pyc,,
|
| 624 |
+
pip/_vendor/rich/__pycache__/_inspect.cpython-314.pyc,,
|
| 625 |
+
pip/_vendor/rich/__pycache__/_log_render.cpython-314.pyc,,
|
| 626 |
+
pip/_vendor/rich/__pycache__/_loop.cpython-314.pyc,,
|
| 627 |
+
pip/_vendor/rich/__pycache__/_null_file.cpython-314.pyc,,
|
| 628 |
+
pip/_vendor/rich/__pycache__/_palettes.cpython-314.pyc,,
|
| 629 |
+
pip/_vendor/rich/__pycache__/_pick.cpython-314.pyc,,
|
| 630 |
+
pip/_vendor/rich/__pycache__/_ratio.cpython-314.pyc,,
|
| 631 |
+
pip/_vendor/rich/__pycache__/_spinners.cpython-314.pyc,,
|
| 632 |
+
pip/_vendor/rich/__pycache__/_stack.cpython-314.pyc,,
|
| 633 |
+
pip/_vendor/rich/__pycache__/_timer.cpython-314.pyc,,
|
| 634 |
+
pip/_vendor/rich/__pycache__/_win32_console.cpython-314.pyc,,
|
| 635 |
+
pip/_vendor/rich/__pycache__/_windows.cpython-314.pyc,,
|
| 636 |
+
pip/_vendor/rich/__pycache__/_windows_renderer.cpython-314.pyc,,
|
| 637 |
+
pip/_vendor/rich/__pycache__/_wrap.cpython-314.pyc,,
|
| 638 |
+
pip/_vendor/rich/__pycache__/abc.cpython-314.pyc,,
|
| 639 |
+
pip/_vendor/rich/__pycache__/align.cpython-314.pyc,,
|
| 640 |
+
pip/_vendor/rich/__pycache__/ansi.cpython-314.pyc,,
|
| 641 |
+
pip/_vendor/rich/__pycache__/bar.cpython-314.pyc,,
|
| 642 |
+
pip/_vendor/rich/__pycache__/box.cpython-314.pyc,,
|
| 643 |
+
pip/_vendor/rich/__pycache__/cells.cpython-314.pyc,,
|
| 644 |
+
pip/_vendor/rich/__pycache__/color.cpython-314.pyc,,
|
| 645 |
+
pip/_vendor/rich/__pycache__/color_triplet.cpython-314.pyc,,
|
| 646 |
+
pip/_vendor/rich/__pycache__/columns.cpython-314.pyc,,
|
| 647 |
+
pip/_vendor/rich/__pycache__/console.cpython-314.pyc,,
|
| 648 |
+
pip/_vendor/rich/__pycache__/constrain.cpython-314.pyc,,
|
| 649 |
+
pip/_vendor/rich/__pycache__/containers.cpython-314.pyc,,
|
| 650 |
+
pip/_vendor/rich/__pycache__/control.cpython-314.pyc,,
|
| 651 |
+
pip/_vendor/rich/__pycache__/default_styles.cpython-314.pyc,,
|
| 652 |
+
pip/_vendor/rich/__pycache__/diagnose.cpython-314.pyc,,
|
| 653 |
+
pip/_vendor/rich/__pycache__/emoji.cpython-314.pyc,,
|
| 654 |
+
pip/_vendor/rich/__pycache__/errors.cpython-314.pyc,,
|
| 655 |
+
pip/_vendor/rich/__pycache__/file_proxy.cpython-314.pyc,,
|
| 656 |
+
pip/_vendor/rich/__pycache__/filesize.cpython-314.pyc,,
|
| 657 |
+
pip/_vendor/rich/__pycache__/highlighter.cpython-314.pyc,,
|
| 658 |
+
pip/_vendor/rich/__pycache__/json.cpython-314.pyc,,
|
| 659 |
+
pip/_vendor/rich/__pycache__/jupyter.cpython-314.pyc,,
|
| 660 |
+
pip/_vendor/rich/__pycache__/layout.cpython-314.pyc,,
|
| 661 |
+
pip/_vendor/rich/__pycache__/live.cpython-314.pyc,,
|
| 662 |
+
pip/_vendor/rich/__pycache__/live_render.cpython-314.pyc,,
|
| 663 |
+
pip/_vendor/rich/__pycache__/logging.cpython-314.pyc,,
|
| 664 |
+
pip/_vendor/rich/__pycache__/markup.cpython-314.pyc,,
|
| 665 |
+
pip/_vendor/rich/__pycache__/measure.cpython-314.pyc,,
|
| 666 |
+
pip/_vendor/rich/__pycache__/padding.cpython-314.pyc,,
|
| 667 |
+
pip/_vendor/rich/__pycache__/pager.cpython-314.pyc,,
|
| 668 |
+
pip/_vendor/rich/__pycache__/palette.cpython-314.pyc,,
|
| 669 |
+
pip/_vendor/rich/__pycache__/panel.cpython-314.pyc,,
|
| 670 |
+
pip/_vendor/rich/__pycache__/pretty.cpython-314.pyc,,
|
| 671 |
+
pip/_vendor/rich/__pycache__/progress.cpython-314.pyc,,
|
| 672 |
+
pip/_vendor/rich/__pycache__/progress_bar.cpython-314.pyc,,
|
| 673 |
+
pip/_vendor/rich/__pycache__/prompt.cpython-314.pyc,,
|
| 674 |
+
pip/_vendor/rich/__pycache__/protocol.cpython-314.pyc,,
|
| 675 |
+
pip/_vendor/rich/__pycache__/region.cpython-314.pyc,,
|
| 676 |
+
pip/_vendor/rich/__pycache__/repr.cpython-314.pyc,,
|
| 677 |
+
pip/_vendor/rich/__pycache__/rule.cpython-314.pyc,,
|
| 678 |
+
pip/_vendor/rich/__pycache__/scope.cpython-314.pyc,,
|
| 679 |
+
pip/_vendor/rich/__pycache__/screen.cpython-314.pyc,,
|
| 680 |
+
pip/_vendor/rich/__pycache__/segment.cpython-314.pyc,,
|
| 681 |
+
pip/_vendor/rich/__pycache__/spinner.cpython-314.pyc,,
|
| 682 |
+
pip/_vendor/rich/__pycache__/status.cpython-314.pyc,,
|
| 683 |
+
pip/_vendor/rich/__pycache__/style.cpython-314.pyc,,
|
| 684 |
+
pip/_vendor/rich/__pycache__/styled.cpython-314.pyc,,
|
| 685 |
+
pip/_vendor/rich/__pycache__/syntax.cpython-314.pyc,,
|
| 686 |
+
pip/_vendor/rich/__pycache__/table.cpython-314.pyc,,
|
| 687 |
+
pip/_vendor/rich/__pycache__/terminal_theme.cpython-314.pyc,,
|
| 688 |
+
pip/_vendor/rich/__pycache__/text.cpython-314.pyc,,
|
| 689 |
+
pip/_vendor/rich/__pycache__/theme.cpython-314.pyc,,
|
| 690 |
+
pip/_vendor/rich/__pycache__/themes.cpython-314.pyc,,
|
| 691 |
+
pip/_vendor/rich/__pycache__/traceback.cpython-314.pyc,,
|
| 692 |
+
pip/_vendor/rich/__pycache__/tree.cpython-314.pyc,,
|
| 693 |
+
pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209
|
| 694 |
+
pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235
|
| 695 |
+
pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064
|
| 696 |
+
pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128
|
| 697 |
+
pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265
|
| 698 |
+
pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799
|
| 699 |
+
pip/_vendor/rich/_inspect.py,sha256=ROT0PLC2GMWialWZkqJIjmYq7INRijQQkoSokWTaAiI,9656
|
| 700 |
+
pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225
|
| 701 |
+
pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236
|
| 702 |
+
pip/_vendor/rich/_null_file.py,sha256=ADGKp1yt-k70FMKV6tnqCqecB-rSJzp-WQsD7LPL-kg,1394
|
| 703 |
+
pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063
|
| 704 |
+
pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423
|
| 705 |
+
pip/_vendor/rich/_ratio.py,sha256=IOtl78sQCYZsmHyxhe45krkb68u9xVz7zFsXVJD-b2Y,5325
|
| 706 |
+
pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919
|
| 707 |
+
pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351
|
| 708 |
+
pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417
|
| 709 |
+
pip/_vendor/rich/_win32_console.py,sha256=BSaDRIMwBLITn_m0mTRLPqME5q-quGdSMuYMpYeYJwc,22755
|
| 710 |
+
pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925
|
| 711 |
+
pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783
|
| 712 |
+
pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404
|
| 713 |
+
pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890
|
| 714 |
+
pip/_vendor/rich/align.py,sha256=dg-7uY0ukMLLlUEsBDRLva22_sQgIJD4BK0dmZHFHug,10324
|
| 715 |
+
pip/_vendor/rich/ansi.py,sha256=Avs1LHbSdcyOvDOdpELZUoULcBiYewY76eNBp6uFBhs,6921
|
| 716 |
+
pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263
|
| 717 |
+
pip/_vendor/rich/box.py,sha256=kmavBc_dn73L_g_8vxWSwYJD2uzBXOUFTtJOfpbczcM,10686
|
| 718 |
+
pip/_vendor/rich/cells.py,sha256=KrQkj5-LghCCpJLSNQIyAZjndc4bnEqOEmi5YuZ9UCY,5130
|
| 719 |
+
pip/_vendor/rich/color.py,sha256=3HSULVDj7qQkXUdFWv78JOiSZzfy5y1nkcYhna296V0,18211
|
| 720 |
+
pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054
|
| 721 |
+
pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131
|
| 722 |
+
pip/_vendor/rich/console.py,sha256=t9azZpmRMVU5cphVBZSShNsmBxd2-IAWcTTlhor-E1s,100849
|
| 723 |
+
pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288
|
| 724 |
+
pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502
|
| 725 |
+
pip/_vendor/rich/control.py,sha256=EUTSUFLQbxY6Zmo_sdM-5Ls323vIHTBfN8TPulqeHUY,6487
|
| 726 |
+
pip/_vendor/rich/default_styles.py,sha256=khQFqqaoDs3bprMqWpHw8nO5UpG2DN6QtuTd6LzZwYc,8257
|
| 727 |
+
pip/_vendor/rich/diagnose.py,sha256=fJl1TItRn19gGwouqTg-8zPUW3YqQBqGltrfPQs1H9w,1025
|
| 728 |
+
pip/_vendor/rich/emoji.py,sha256=Wd4bQubZdSy6-PyrRQNuMHtn2VkljK9uPZPVlu2cmx0,2367
|
| 729 |
+
pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642
|
| 730 |
+
pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683
|
| 731 |
+
pip/_vendor/rich/filesize.py,sha256=_iz9lIpRgvW7MNSeCZnLg-HwzbP4GETg543WqD8SFs0,2484
|
| 732 |
+
pip/_vendor/rich/highlighter.py,sha256=G_sn-8DKjM1sEjLG_oc4ovkWmiUpWvj8bXi0yed2LnY,9586
|
| 733 |
+
pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031
|
| 734 |
+
pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252
|
| 735 |
+
pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004
|
| 736 |
+
pip/_vendor/rich/live.py,sha256=tF3ukAAJZ_N2ZbGclqZ-iwLoIoZ8f0HHUz79jAyJqj8,15180
|
| 737 |
+
pip/_vendor/rich/live_render.py,sha256=It_39YdzrBm8o3LL0kaGorPFg-BfZWAcrBjLjFokbx4,3521
|
| 738 |
+
pip/_vendor/rich/logging.py,sha256=5KaPPSMP9FxcXPBcKM4cGd_zW78PMgf-YbMVnvfSw0o,12468
|
| 739 |
+
pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451
|
| 740 |
+
pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305
|
| 741 |
+
pip/_vendor/rich/padding.py,sha256=KVEI3tOwo9sgK1YNSuH__M1_jUWmLZwRVV_KmOtVzyM,4908
|
| 742 |
+
pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828
|
| 743 |
+
pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396
|
| 744 |
+
pip/_vendor/rich/panel.py,sha256=9sQl00hPIqH5G2gALQo4NepFwpP0k9wT-s_gOms5pIc,11157
|
| 745 |
+
pip/_vendor/rich/pretty.py,sha256=gy3S72u4FRg2ytoo7N1ZDWDIvB4unbzd5iUGdgm-8fc,36391
|
| 746 |
+
pip/_vendor/rich/progress.py,sha256=CUc2lkU-X59mVdGfjMCBkZeiGPL3uxdONjhNJF2T7wY,60408
|
| 747 |
+
pip/_vendor/rich/progress_bar.py,sha256=mZTPpJUwcfcdgQCTTz3kyY-fc79ddLwtx6Ghhxfo064,8162
|
| 748 |
+
pip/_vendor/rich/prompt.py,sha256=l0RhQU-0UVTV9e08xW1BbIj0Jq2IXyChX4lC0lFNzt4,12447
|
| 749 |
+
pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391
|
| 750 |
+
pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 751 |
+
pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166
|
| 752 |
+
pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431
|
| 753 |
+
pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602
|
| 754 |
+
pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843
|
| 755 |
+
pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591
|
| 756 |
+
pip/_vendor/rich/segment.py,sha256=otnKeKGEV-WRlQVosfJVeFDcDxAKHpvJ_hLzSu5lumM,24743
|
| 757 |
+
pip/_vendor/rich/spinner.py,sha256=onIhpKlljRHppTZasxO8kXgtYyCHUkpSgKglRJ3o51g,4214
|
| 758 |
+
pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424
|
| 759 |
+
pip/_vendor/rich/style.py,sha256=W9Ccy8Py8lNICtlfcp-ryzMTuQaGxAU3av7-g5fHu0s,26990
|
| 760 |
+
pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258
|
| 761 |
+
pip/_vendor/rich/syntax.py,sha256=eDKIRwl--eZ0Lwo2da2RRtfutXGavrJO61Cl5OkS59U,36371
|
| 762 |
+
pip/_vendor/rich/table.py,sha256=ZmT7V7MMCOYKw7TGY9SZLyYDf6JdM-WVf07FdVuVhTI,40049
|
| 763 |
+
pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370
|
| 764 |
+
pip/_vendor/rich/text.py,sha256=AO7JPCz6-gaN1thVLXMBntEmDPVYFgFNG1oM61_sanU,47552
|
| 765 |
+
pip/_vendor/rich/theme.py,sha256=oNyhXhGagtDlbDye3tVu3esWOWk0vNkuxFw-_unlaK0,3771
|
| 766 |
+
pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102
|
| 767 |
+
pip/_vendor/rich/traceback.py,sha256=c0WmB_L04_UfZbLaoH982_U_s7eosxKMUiAVmDPdRYU,35861
|
| 768 |
+
pip/_vendor/rich/tree.py,sha256=yWnQ6rAvRGJ3qZGqBrxS2SW2TKBTNrP0SdY8QxOFPuw,9451
|
| 769 |
+
pip/_vendor/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 770 |
+
pip/_vendor/tomli/__init__.py,sha256=qzEGl8QHhqgQPCuLzfKyPIuH3KKPspf-UVPbZ0ppBD4,314
|
| 771 |
+
pip/_vendor/tomli/__pycache__/__init__.cpython-314.pyc,,
|
| 772 |
+
pip/_vendor/tomli/__pycache__/_parser.cpython-314.pyc,,
|
| 773 |
+
pip/_vendor/tomli/__pycache__/_re.cpython-314.pyc,,
|
| 774 |
+
pip/_vendor/tomli/__pycache__/_types.cpython-314.pyc,,
|
| 775 |
+
pip/_vendor/tomli/_parser.py,sha256=bO8tUYmnyA2K6m4TnbQbfUqmIFcDv7mG1KuC9gqRVmA,25778
|
| 776 |
+
pip/_vendor/tomli/_re.py,sha256=n8-Io8ZK1U-F6jzlg7Pabc40hLFJsawE2uNLKH9w7iU,3235
|
| 777 |
+
pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254
|
| 778 |
+
pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26
|
| 779 |
+
pip/_vendor/tomli_w/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 780 |
+
pip/_vendor/tomli_w/__init__.py,sha256=0F8yDtXx3Uunhm874KrAcP76srsM98y7WyHQwCulZbo,169
|
| 781 |
+
pip/_vendor/tomli_w/__pycache__/__init__.cpython-314.pyc,,
|
| 782 |
+
pip/_vendor/tomli_w/__pycache__/_writer.cpython-314.pyc,,
|
| 783 |
+
pip/_vendor/tomli_w/_writer.py,sha256=dsifFS2xYf1i76mmRyfz9y125xC7Z_HQ845ZKhJsYXs,6961
|
| 784 |
+
pip/_vendor/tomli_w/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26
|
| 785 |
+
pip/_vendor/truststore/LICENSE,sha256=M757fo-k_Rmxdg4ajtimaL2rhSyRtpLdQUJLy3Jan8o,1086
|
| 786 |
+
pip/_vendor/truststore/__init__.py,sha256=Bu7kqkmpunhLsj5xCu8gT_25ktoPXcSnwe8VHk1GmJo,1320
|
| 787 |
+
pip/_vendor/truststore/__pycache__/__init__.cpython-314.pyc,,
|
| 788 |
+
pip/_vendor/truststore/__pycache__/_api.cpython-314.pyc,,
|
| 789 |
+
pip/_vendor/truststore/__pycache__/_macos.cpython-314.pyc,,
|
| 790 |
+
pip/_vendor/truststore/__pycache__/_openssl.cpython-314.pyc,,
|
| 791 |
+
pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-314.pyc,,
|
| 792 |
+
pip/_vendor/truststore/__pycache__/_windows.cpython-314.pyc,,
|
| 793 |
+
pip/_vendor/truststore/_api.py,sha256=CYJCV5BTfttZYfqY3movdMBE-8az7uhET_LYbKT2Nn4,11413
|
| 794 |
+
pip/_vendor/truststore/_macos.py,sha256=nZlLkOmszUE0g6ryRwBVGY5COzPyudcsiJtDWarM5LQ,20503
|
| 795 |
+
pip/_vendor/truststore/_openssl.py,sha256=zB-SQvJydks7tQ0yIwrP6GD3fQNSSaPiq7zw4yF5T40,2412
|
| 796 |
+
pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130
|
| 797 |
+
pip/_vendor/truststore/_windows.py,sha256=rAHyKYD8M7t-bXfG8VgOVa3TpfhVhbt4rZQlO45YuP8,17993
|
| 798 |
+
pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 799 |
+
pip/_vendor/urllib3/LICENSE.txt,sha256=w3vxhuJ8-dvpYZ5V7f486nswCRzrPaY8fay-Dm13kHs,1115
|
| 800 |
+
pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333
|
| 801 |
+
pip/_vendor/urllib3/__pycache__/__init__.cpython-314.pyc,,
|
| 802 |
+
pip/_vendor/urllib3/__pycache__/_collections.cpython-314.pyc,,
|
| 803 |
+
pip/_vendor/urllib3/__pycache__/_version.cpython-314.pyc,,
|
| 804 |
+
pip/_vendor/urllib3/__pycache__/connection.cpython-314.pyc,,
|
| 805 |
+
pip/_vendor/urllib3/__pycache__/connectionpool.cpython-314.pyc,,
|
| 806 |
+
pip/_vendor/urllib3/__pycache__/exceptions.cpython-314.pyc,,
|
| 807 |
+
pip/_vendor/urllib3/__pycache__/fields.cpython-314.pyc,,
|
| 808 |
+
pip/_vendor/urllib3/__pycache__/filepost.cpython-314.pyc,,
|
| 809 |
+
pip/_vendor/urllib3/__pycache__/poolmanager.cpython-314.pyc,,
|
| 810 |
+
pip/_vendor/urllib3/__pycache__/request.cpython-314.pyc,,
|
| 811 |
+
pip/_vendor/urllib3/__pycache__/response.cpython-314.pyc,,
|
| 812 |
+
pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372
|
| 813 |
+
pip/_vendor/urllib3/_version.py,sha256=t9wGB6ooOTXXgiY66K1m6BZS1CJyXHAU8EoWDTe6Shk,64
|
| 814 |
+
pip/_vendor/urllib3/connection.py,sha256=ttIA909BrbTUzwkqEe_TzZVh4JOOj7g61Ysei2mrwGg,20314
|
| 815 |
+
pip/_vendor/urllib3/connectionpool.py,sha256=e2eiAwNbFNCKxj4bwDKNK-w7HIdSz3OmMxU_TIt-evQ,40408
|
| 816 |
+
pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 817 |
+
pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-314.pyc,,
|
| 818 |
+
pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-314.pyc,,
|
| 819 |
+
pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-314.pyc,,
|
| 820 |
+
pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-314.pyc,,
|
| 821 |
+
pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-314.pyc,,
|
| 822 |
+
pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-314.pyc,,
|
| 823 |
+
pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-314.pyc,,
|
| 824 |
+
pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957
|
| 825 |
+
pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 826 |
+
pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-314.pyc,,
|
| 827 |
+
pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-314.pyc,,
|
| 828 |
+
pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-314.pyc,,
|
| 829 |
+
pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632
|
| 830 |
+
pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922
|
| 831 |
+
pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036
|
| 832 |
+
pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528
|
| 833 |
+
pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081
|
| 834 |
+
pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446
|
| 835 |
+
pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097
|
| 836 |
+
pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217
|
| 837 |
+
pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579
|
| 838 |
+
pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440
|
| 839 |
+
pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 840 |
+
pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-314.pyc,,
|
| 841 |
+
pip/_vendor/urllib3/packages/__pycache__/six.cpython-314.pyc,,
|
| 842 |
+
pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 843 |
+
pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-314.pyc,,
|
| 844 |
+
pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-314.pyc,,
|
| 845 |
+
pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-314.pyc,,
|
| 846 |
+
pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417
|
| 847 |
+
pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343
|
| 848 |
+
pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665
|
| 849 |
+
pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990
|
| 850 |
+
pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691
|
| 851 |
+
pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641
|
| 852 |
+
pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155
|
| 853 |
+
pip/_vendor/urllib3/util/__pycache__/__init__.cpython-314.pyc,,
|
| 854 |
+
pip/_vendor/urllib3/util/__pycache__/connection.cpython-314.pyc,,
|
| 855 |
+
pip/_vendor/urllib3/util/__pycache__/proxy.cpython-314.pyc,,
|
| 856 |
+
pip/_vendor/urllib3/util/__pycache__/queue.cpython-314.pyc,,
|
| 857 |
+
pip/_vendor/urllib3/util/__pycache__/request.cpython-314.pyc,,
|
| 858 |
+
pip/_vendor/urllib3/util/__pycache__/response.cpython-314.pyc,,
|
| 859 |
+
pip/_vendor/urllib3/util/__pycache__/retry.cpython-314.pyc,,
|
| 860 |
+
pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-314.pyc,,
|
| 861 |
+
pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-314.pyc,,
|
| 862 |
+
pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-314.pyc,,
|
| 863 |
+
pip/_vendor/urllib3/util/__pycache__/timeout.cpython-314.pyc,,
|
| 864 |
+
pip/_vendor/urllib3/util/__pycache__/url.cpython-314.pyc,,
|
| 865 |
+
pip/_vendor/urllib3/util/__pycache__/wait.cpython-314.pyc,,
|
| 866 |
+
pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901
|
| 867 |
+
pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605
|
| 868 |
+
pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498
|
| 869 |
+
pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997
|
| 870 |
+
pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510
|
| 871 |
+
pip/_vendor/urllib3/util/retry.py,sha256=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050
|
| 872 |
+
pip/_vendor/urllib3/util/ssl_.py,sha256=QDuuTxPSCj1rYtZ4xpD7Ux-r20TD50aHyqKyhQ7Bq4A,17460
|
| 873 |
+
pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758
|
| 874 |
+
pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895
|
| 875 |
+
pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168
|
| 876 |
+
pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296
|
| 877 |
+
pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403
|
| 878 |
+
pip/_vendor/vendor.txt,sha256=f2msFLZ-chXWIZSKW31NLGyMWmt_-Vfy7sY5dHYgmnw,342
|
| 879 |
+
pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/REQUESTED
ADDED
|
File without changes
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/WHEEL
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Wheel-Version: 1.0
|
| 2 |
+
Generator: flit 3.12.0
|
| 3 |
+
Root-Is-Purelib: true
|
| 4 |
+
Tag: py3-none-any
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/direct_url.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"dir_info": {}, "url": "file:///home/task_177071101768311/croot/pip_1770711076895/work"}
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/entry_points.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[console_scripts]
|
| 2 |
+
pip=pip._internal.cli.main:main
|
| 3 |
+
pip3=pip._internal.cli.main:main
|
| 4 |
+
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt
ADDED
|
@@ -0,0 +1,860 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@Switch01
|
| 2 |
+
A_Rog
|
| 3 |
+
Aakanksha Agrawal
|
| 4 |
+
Aarni Koskela
|
| 5 |
+
Abhinav Sagar
|
| 6 |
+
ABHYUDAY PRATAP SINGH
|
| 7 |
+
abs51295
|
| 8 |
+
AceGentile
|
| 9 |
+
Adam Chainz
|
| 10 |
+
Adam Tse
|
| 11 |
+
Adam Turner
|
| 12 |
+
Adam Wentz
|
| 13 |
+
admin
|
| 14 |
+
Adolfo Ochagavía
|
| 15 |
+
Adrien Morison
|
| 16 |
+
Agus
|
| 17 |
+
ahayrapetyan
|
| 18 |
+
Ahilya
|
| 19 |
+
AinsworthK
|
| 20 |
+
Akash Srivastava
|
| 21 |
+
Alan Yee
|
| 22 |
+
Albert Tugushev
|
| 23 |
+
Albert-Guan
|
| 24 |
+
albertg
|
| 25 |
+
Alberto Sottile
|
| 26 |
+
Aleks Bunin
|
| 27 |
+
Ales Erjavec
|
| 28 |
+
Alessandro Molina
|
| 29 |
+
Alethea Flowers
|
| 30 |
+
Alex Gaynor
|
| 31 |
+
Alex Grönholm
|
| 32 |
+
Alex Hedges
|
| 33 |
+
Alex Loosley
|
| 34 |
+
Alex Morega
|
| 35 |
+
Alex Stachowiak
|
| 36 |
+
Alexander Regueiro
|
| 37 |
+
Alexander Shtyrov
|
| 38 |
+
Alexandre Conrad
|
| 39 |
+
Alexey Popravka
|
| 40 |
+
Aleš Erjavec
|
| 41 |
+
Alli
|
| 42 |
+
Aman
|
| 43 |
+
Ami Fischman
|
| 44 |
+
Ananya Maiti
|
| 45 |
+
Anatoly Techtonik
|
| 46 |
+
Anders Kaseorg
|
| 47 |
+
Andre Aguiar
|
| 48 |
+
Andreas Lutro
|
| 49 |
+
Andrei Geacar
|
| 50 |
+
Andrew Gaul
|
| 51 |
+
Andrew Shymanel
|
| 52 |
+
Andrey Bienkowski
|
| 53 |
+
Andrey Bulgakov
|
| 54 |
+
Andrés Delfino
|
| 55 |
+
Andy Freeland
|
| 56 |
+
Andy Kluger
|
| 57 |
+
Ani Hayrapetyan
|
| 58 |
+
Aniruddha Basak
|
| 59 |
+
Anish Tambe
|
| 60 |
+
Anrs Hu
|
| 61 |
+
Anthony Sottile
|
| 62 |
+
Antoine Lambert
|
| 63 |
+
Antoine Musso
|
| 64 |
+
Anton Ovchinnikov
|
| 65 |
+
Anton Patrushev
|
| 66 |
+
Anton Zelenov
|
| 67 |
+
Antonio Alvarado Hernandez
|
| 68 |
+
Antony Lee
|
| 69 |
+
Antti Kaihola
|
| 70 |
+
Anubhav Patel
|
| 71 |
+
Anudit Nagar
|
| 72 |
+
Anuj Godase
|
| 73 |
+
AQNOUCH Mohammed
|
| 74 |
+
AraHaan
|
| 75 |
+
arena
|
| 76 |
+
arenasys
|
| 77 |
+
Arindam Choudhury
|
| 78 |
+
Armin Ronacher
|
| 79 |
+
Arnon Yaari
|
| 80 |
+
Artem
|
| 81 |
+
Arun Babu Neelicattu
|
| 82 |
+
Ashley Manton
|
| 83 |
+
Ashwin Ramaswami
|
| 84 |
+
atse
|
| 85 |
+
Atsushi Odagiri
|
| 86 |
+
Avinash Karhana
|
| 87 |
+
Avner Cohen
|
| 88 |
+
Awit (Ah-Wit) Ghirmai
|
| 89 |
+
Baptiste Mispelon
|
| 90 |
+
Barney Gale
|
| 91 |
+
barneygale
|
| 92 |
+
Bartek Ogryczak
|
| 93 |
+
Bastian Venthur
|
| 94 |
+
Ben Bodenmiller
|
| 95 |
+
Ben Darnell
|
| 96 |
+
Ben Hoyt
|
| 97 |
+
Ben Mares
|
| 98 |
+
Ben Rosser
|
| 99 |
+
Bence Nagy
|
| 100 |
+
Benjamin Peterson
|
| 101 |
+
Benjamin VanEvery
|
| 102 |
+
Benoit Pierre
|
| 103 |
+
Berker Peksag
|
| 104 |
+
Bernard
|
| 105 |
+
Bernard Tyers
|
| 106 |
+
Bernardo B. Marques
|
| 107 |
+
Bernhard M. Wiedemann
|
| 108 |
+
Bertil Hatt
|
| 109 |
+
Bhavam Vidyarthi
|
| 110 |
+
Blazej Michalik
|
| 111 |
+
Bogdan Opanchuk
|
| 112 |
+
BorisZZZ
|
| 113 |
+
Brad Erickson
|
| 114 |
+
Bradley Ayers
|
| 115 |
+
Bradley Reynolds
|
| 116 |
+
Branch Vincent
|
| 117 |
+
Brandon L. Reiss
|
| 118 |
+
Brandt Bucher
|
| 119 |
+
Brannon Dorsey
|
| 120 |
+
Brett Randall
|
| 121 |
+
Brett Rosen
|
| 122 |
+
Brian Cristante
|
| 123 |
+
Brian Rosner
|
| 124 |
+
briantracy
|
| 125 |
+
BrownTruck
|
| 126 |
+
Bruno Oliveira
|
| 127 |
+
Bruno Renié
|
| 128 |
+
Bruno S
|
| 129 |
+
Bstrdsmkr
|
| 130 |
+
Buck Golemon
|
| 131 |
+
burrows
|
| 132 |
+
Bussonnier Matthias
|
| 133 |
+
bwoodsend
|
| 134 |
+
c22
|
| 135 |
+
Caleb Brown
|
| 136 |
+
Caleb Martinez
|
| 137 |
+
Calvin Smith
|
| 138 |
+
Carl Meyer
|
| 139 |
+
Carlos Liam
|
| 140 |
+
Carol Willing
|
| 141 |
+
Carter Thayer
|
| 142 |
+
Cass
|
| 143 |
+
Chandrasekhar Atina
|
| 144 |
+
Charlie Marsh
|
| 145 |
+
charwick
|
| 146 |
+
Chih-Hsuan Yen
|
| 147 |
+
Chris Brinker
|
| 148 |
+
Chris Hunt
|
| 149 |
+
Chris Jerdonek
|
| 150 |
+
Chris Kuehl
|
| 151 |
+
Chris Markiewicz
|
| 152 |
+
Chris McDonough
|
| 153 |
+
Chris Pawley
|
| 154 |
+
Chris Pryer
|
| 155 |
+
Chris Wolfe
|
| 156 |
+
Christian Clauss
|
| 157 |
+
Christian Heimes
|
| 158 |
+
Christian Oudard
|
| 159 |
+
Christoph Reiter
|
| 160 |
+
Christopher Hunt
|
| 161 |
+
Christopher Snyder
|
| 162 |
+
chrysle
|
| 163 |
+
cjc7373
|
| 164 |
+
Clark Boylan
|
| 165 |
+
Claudio Jolowicz
|
| 166 |
+
Clay McClure
|
| 167 |
+
Cody
|
| 168 |
+
Cody Soyland
|
| 169 |
+
Colin Watson
|
| 170 |
+
Collin Anderson
|
| 171 |
+
Connor Osborn
|
| 172 |
+
Cooper Lees
|
| 173 |
+
Cooper Ry Lees
|
| 174 |
+
Cory Benfield
|
| 175 |
+
Cory Wright
|
| 176 |
+
Craig Kerstiens
|
| 177 |
+
Cristian Sorinel
|
| 178 |
+
Cristina
|
| 179 |
+
Cristina Muñoz
|
| 180 |
+
ctg123
|
| 181 |
+
Curtis Doty
|
| 182 |
+
cytolentino
|
| 183 |
+
Daan De Meyer
|
| 184 |
+
Dale
|
| 185 |
+
Damian
|
| 186 |
+
Damian Quiroga
|
| 187 |
+
Damian Shaw
|
| 188 |
+
Dan Black
|
| 189 |
+
Dan Savilonis
|
| 190 |
+
Dan Sully
|
| 191 |
+
Dane Hillard
|
| 192 |
+
daniel
|
| 193 |
+
Daniel Collins
|
| 194 |
+
Daniel Hahler
|
| 195 |
+
Daniel Hollas
|
| 196 |
+
Daniel Holth
|
| 197 |
+
Daniel Jost
|
| 198 |
+
Daniel Katz
|
| 199 |
+
Daniel Shaulov
|
| 200 |
+
Daniele Esposti
|
| 201 |
+
Daniele Nicolodi
|
| 202 |
+
Daniele Procida
|
| 203 |
+
Daniil Konovalenko
|
| 204 |
+
Danny Hermes
|
| 205 |
+
Danny McClanahan
|
| 206 |
+
Darren Kavanagh
|
| 207 |
+
Dav Clark
|
| 208 |
+
Dave Abrahams
|
| 209 |
+
Dave Jones
|
| 210 |
+
David Aguilar
|
| 211 |
+
David Black
|
| 212 |
+
David Bordeynik
|
| 213 |
+
David Caro
|
| 214 |
+
David D Lowe
|
| 215 |
+
David Evans
|
| 216 |
+
David Hewitt
|
| 217 |
+
David Linke
|
| 218 |
+
David Poggi
|
| 219 |
+
David Poznik
|
| 220 |
+
David Pursehouse
|
| 221 |
+
David Runge
|
| 222 |
+
David Tucker
|
| 223 |
+
David Wales
|
| 224 |
+
Davidovich
|
| 225 |
+
ddelange
|
| 226 |
+
Deepak Sharma
|
| 227 |
+
Deepyaman Datta
|
| 228 |
+
Denis Roussel (ACSONE)
|
| 229 |
+
Denise Yu
|
| 230 |
+
dependabot[bot]
|
| 231 |
+
derwolfe
|
| 232 |
+
Desetude
|
| 233 |
+
developer
|
| 234 |
+
Devesh Kumar
|
| 235 |
+
Devesh Kumar Singh
|
| 236 |
+
devsagul
|
| 237 |
+
Diego Caraballo
|
| 238 |
+
Diego Ramirez
|
| 239 |
+
DiegoCaraballo
|
| 240 |
+
Dimitri Merejkowsky
|
| 241 |
+
Dimitri Papadopoulos
|
| 242 |
+
Dimitri Papadopoulos Orfanos
|
| 243 |
+
Dirk Stolle
|
| 244 |
+
dkjsone
|
| 245 |
+
Dmitry Gladkov
|
| 246 |
+
Dmitry Volodin
|
| 247 |
+
Domen Kožar
|
| 248 |
+
Dominic Davis-Foster
|
| 249 |
+
Donald Stufft
|
| 250 |
+
Dongweiming
|
| 251 |
+
doron zarhi
|
| 252 |
+
Dos Moonen
|
| 253 |
+
Douglas Thor
|
| 254 |
+
DrFeathers
|
| 255 |
+
Dustin Ingram
|
| 256 |
+
Dustin Rodrigues
|
| 257 |
+
Dwayne Bailey
|
| 258 |
+
Ed Morley
|
| 259 |
+
Edgar Ramírez
|
| 260 |
+
Edgar Ramírez Mondragón
|
| 261 |
+
Ee Durbin
|
| 262 |
+
Efflam Lemaillet
|
| 263 |
+
efflamlemaillet
|
| 264 |
+
Eitan Adler
|
| 265 |
+
ekristina
|
| 266 |
+
elainechan
|
| 267 |
+
Eli Schwartz
|
| 268 |
+
Elisha Hollander
|
| 269 |
+
Ellen Marie Dash
|
| 270 |
+
Emil Burzo
|
| 271 |
+
Emil Styrke
|
| 272 |
+
Emmanuel Arias
|
| 273 |
+
Endoh Takanao
|
| 274 |
+
enoch
|
| 275 |
+
Erdinc Mutlu
|
| 276 |
+
Eric Cousineau
|
| 277 |
+
Eric Gillingham
|
| 278 |
+
Eric Hanchrow
|
| 279 |
+
Eric Hopper
|
| 280 |
+
Erik M. Bray
|
| 281 |
+
Erik Rose
|
| 282 |
+
Erwin Janssen
|
| 283 |
+
Eugene Vereshchagin
|
| 284 |
+
everdimension
|
| 285 |
+
Federico
|
| 286 |
+
Felipe Peter
|
| 287 |
+
Felix Yan
|
| 288 |
+
fiber-space
|
| 289 |
+
Filip Kokosiński
|
| 290 |
+
Filipe Laíns
|
| 291 |
+
Finn Womack
|
| 292 |
+
finnagin
|
| 293 |
+
Flavio Amurrio
|
| 294 |
+
Florian Briand
|
| 295 |
+
Florian Rathgeber
|
| 296 |
+
Francesco
|
| 297 |
+
Francesco Montesano
|
| 298 |
+
Fredrik Orderud
|
| 299 |
+
Fredrik Roubert
|
| 300 |
+
Frost Ming
|
| 301 |
+
Gabriel Curio
|
| 302 |
+
Gabriel de Perthuis
|
| 303 |
+
Garry Polley
|
| 304 |
+
gavin
|
| 305 |
+
gdanielson
|
| 306 |
+
Gene Wood
|
| 307 |
+
Geoffrey Sneddon
|
| 308 |
+
George Margaritis
|
| 309 |
+
George Song
|
| 310 |
+
Georgi Valkov
|
| 311 |
+
Georgy Pchelkin
|
| 312 |
+
ghost
|
| 313 |
+
Giftlin Rajaiah
|
| 314 |
+
gizmoguy1
|
| 315 |
+
gkdoc
|
| 316 |
+
Godefroid Chapelle
|
| 317 |
+
Gopinath M
|
| 318 |
+
GOTO Hayato
|
| 319 |
+
gousaiyang
|
| 320 |
+
gpiks
|
| 321 |
+
Greg Roodt
|
| 322 |
+
Greg Ward
|
| 323 |
+
Guido Diepen
|
| 324 |
+
Guilherme Espada
|
| 325 |
+
Guillaume Seguin
|
| 326 |
+
gutsytechster
|
| 327 |
+
Guy Rozendorn
|
| 328 |
+
Guy Tuval
|
| 329 |
+
gzpan123
|
| 330 |
+
Hanjun Kim
|
| 331 |
+
Hari Charan
|
| 332 |
+
Harsh Vardhan
|
| 333 |
+
Harsha Sai
|
| 334 |
+
harupy
|
| 335 |
+
Harutaka Kawamura
|
| 336 |
+
Hasan-8326
|
| 337 |
+
hauntsaninja
|
| 338 |
+
Henrich Hartzer
|
| 339 |
+
Henry Schreiner
|
| 340 |
+
Herbert Pfennig
|
| 341 |
+
Holly Stotelmyer
|
| 342 |
+
Honnix
|
| 343 |
+
Hsiaoming Yang
|
| 344 |
+
Hugo Lopes Tavares
|
| 345 |
+
Hugo van Kemenade
|
| 346 |
+
Hugues Bruant
|
| 347 |
+
Hynek Schlawack
|
| 348 |
+
iamsrp-deshaw
|
| 349 |
+
Ian Bicking
|
| 350 |
+
Ian Cordasco
|
| 351 |
+
Ian Lee
|
| 352 |
+
Ian Stapleton Cordasco
|
| 353 |
+
Ian Wienand
|
| 354 |
+
Igor Kuzmitshov
|
| 355 |
+
Igor Sobreira
|
| 356 |
+
Ikko Ashimine
|
| 357 |
+
Ilan Schnell
|
| 358 |
+
Illia Volochii
|
| 359 |
+
Ilya Abdolmanafi
|
| 360 |
+
Ilya Baryshev
|
| 361 |
+
Inada Naoki
|
| 362 |
+
Ionel Cristian Mărieș
|
| 363 |
+
Ionel Maries Cristian
|
| 364 |
+
Itamar Turner-Trauring
|
| 365 |
+
iTrooz
|
| 366 |
+
Ivan Pozdeev
|
| 367 |
+
J. Nick Koston
|
| 368 |
+
Jacob Kim
|
| 369 |
+
Jacob Walls
|
| 370 |
+
Jaime Sanz
|
| 371 |
+
Jake Lishman
|
| 372 |
+
jakirkham
|
| 373 |
+
Jakub Kuczys
|
| 374 |
+
Jakub Stasiak
|
| 375 |
+
Jakub Vysoky
|
| 376 |
+
Jakub Wilk
|
| 377 |
+
James
|
| 378 |
+
James Cleveland
|
| 379 |
+
James Curtin
|
| 380 |
+
James Firth
|
| 381 |
+
James Gerity
|
| 382 |
+
James Polley
|
| 383 |
+
Jan Pokorný
|
| 384 |
+
Jannis Leidel
|
| 385 |
+
Jarek Potiuk
|
| 386 |
+
jarondl
|
| 387 |
+
Jason Curtis
|
| 388 |
+
Jason R. Coombs
|
| 389 |
+
JasonMo
|
| 390 |
+
JasonMo1
|
| 391 |
+
Jay Graves
|
| 392 |
+
Jean Abou Samra
|
| 393 |
+
Jean-Christophe Fillion-Robin
|
| 394 |
+
Jeff Barber
|
| 395 |
+
Jeff Dairiki
|
| 396 |
+
Jeff Widman
|
| 397 |
+
Jelmer Vernooij
|
| 398 |
+
jenix21
|
| 399 |
+
Jeremy Fleischman
|
| 400 |
+
Jeremy Stanley
|
| 401 |
+
Jeremy Zafran
|
| 402 |
+
Jesse Rittner
|
| 403 |
+
Jiashuo Li
|
| 404 |
+
Jim Fisher
|
| 405 |
+
Jim Garrison
|
| 406 |
+
Jinzhe Zeng
|
| 407 |
+
Jiun Bae
|
| 408 |
+
Jivan Amara
|
| 409 |
+
Joa
|
| 410 |
+
Joe Bylund
|
| 411 |
+
Joe Michelini
|
| 412 |
+
Johannes Altmanninger
|
| 413 |
+
John Paton
|
| 414 |
+
John Sirois
|
| 415 |
+
John T. Wodder II
|
| 416 |
+
John-Scott Atlakson
|
| 417 |
+
johnthagen
|
| 418 |
+
Jon Banafato
|
| 419 |
+
Jon Dufresne
|
| 420 |
+
Jon Parise
|
| 421 |
+
Jonas Nockert
|
| 422 |
+
Jonathan Herbert
|
| 423 |
+
Joonatan Partanen
|
| 424 |
+
Joost Molenaar
|
| 425 |
+
Jorge Niedbalski
|
| 426 |
+
Joseph Bylund
|
| 427 |
+
Joseph Long
|
| 428 |
+
Josh Bronson
|
| 429 |
+
Josh Cannon
|
| 430 |
+
Josh Hansen
|
| 431 |
+
Josh Schneier
|
| 432 |
+
Joshua
|
| 433 |
+
JoshuaPerdue
|
| 434 |
+
Jost Migenda
|
| 435 |
+
Juan Luis Cano Rodríguez
|
| 436 |
+
Juanjo Bazán
|
| 437 |
+
Judah Rand
|
| 438 |
+
Julian Berman
|
| 439 |
+
Julian Gethmann
|
| 440 |
+
Julien Demoor
|
| 441 |
+
Julien Stephan
|
| 442 |
+
July Tikhonov
|
| 443 |
+
Jussi Kukkonen
|
| 444 |
+
Justin van Heek
|
| 445 |
+
jwg4
|
| 446 |
+
Jyrki Pulliainen
|
| 447 |
+
Kai Chen
|
| 448 |
+
Kai Mueller
|
| 449 |
+
Kamal Bin Mustafa
|
| 450 |
+
Karolina Surma
|
| 451 |
+
kasium
|
| 452 |
+
kaustav haldar
|
| 453 |
+
Kaz Nishimura
|
| 454 |
+
keanemind
|
| 455 |
+
Keith Maxwell
|
| 456 |
+
Kelsey Hightower
|
| 457 |
+
Kenneth Belitzky
|
| 458 |
+
Kenneth Reitz
|
| 459 |
+
Kevin Burke
|
| 460 |
+
Kevin Carter
|
| 461 |
+
Kevin Frommelt
|
| 462 |
+
Kevin R Patterson
|
| 463 |
+
Kexuan Sun
|
| 464 |
+
Kit Randel
|
| 465 |
+
Klaas van Schelven
|
| 466 |
+
KOLANICH
|
| 467 |
+
konstin
|
| 468 |
+
kpinc
|
| 469 |
+
Krishan Bhasin
|
| 470 |
+
Krishna Oza
|
| 471 |
+
Kumar McMillan
|
| 472 |
+
Kuntal Majumder
|
| 473 |
+
Kurt McKee
|
| 474 |
+
Kyle Persohn
|
| 475 |
+
lakshmanaram
|
| 476 |
+
Laszlo Kiss-Kollar
|
| 477 |
+
Laurent Bristiel
|
| 478 |
+
Laurent LAPORTE
|
| 479 |
+
Laurie O
|
| 480 |
+
Laurie Opperman
|
| 481 |
+
layday
|
| 482 |
+
Leon Sasson
|
| 483 |
+
Lev Givon
|
| 484 |
+
Lincoln de Sousa
|
| 485 |
+
Lipis
|
| 486 |
+
lorddavidiii
|
| 487 |
+
Loren Carvalho
|
| 488 |
+
Lucas Cimon
|
| 489 |
+
Ludovic Gasc
|
| 490 |
+
Luis Medel
|
| 491 |
+
Lukas Geiger
|
| 492 |
+
Lukas Juhrich
|
| 493 |
+
Luke Macken
|
| 494 |
+
Luo Jiebin
|
| 495 |
+
luojiebin
|
| 496 |
+
luz.paz
|
| 497 |
+
László Kiss Kollár
|
| 498 |
+
M00nL1ght
|
| 499 |
+
MajorTanya
|
| 500 |
+
Malcolm Smith
|
| 501 |
+
Marc Abramowitz
|
| 502 |
+
Marc Tamlyn
|
| 503 |
+
Marcus Smith
|
| 504 |
+
Mariatta
|
| 505 |
+
Mark Kohler
|
| 506 |
+
Mark McLoughlin
|
| 507 |
+
Mark Williams
|
| 508 |
+
Markus Hametner
|
| 509 |
+
Martey Dodoo
|
| 510 |
+
Martin Fischer
|
| 511 |
+
Martin Häcker
|
| 512 |
+
Martin Pavlasek
|
| 513 |
+
Masaki
|
| 514 |
+
Masklinn
|
| 515 |
+
Matej Stuchlik
|
| 516 |
+
Mateusz Sokół
|
| 517 |
+
Mathew Jennings
|
| 518 |
+
Mathieu Bridon
|
| 519 |
+
Mathieu Kniewallner
|
| 520 |
+
Matt Bacchi
|
| 521 |
+
Matt Good
|
| 522 |
+
Matt Maker
|
| 523 |
+
Matt Robenolt
|
| 524 |
+
Matt Wozniski
|
| 525 |
+
matthew
|
| 526 |
+
Matthew Einhorn
|
| 527 |
+
Matthew Feickert
|
| 528 |
+
Matthew Gilliard
|
| 529 |
+
Matthew Hughes
|
| 530 |
+
Matthew Iversen
|
| 531 |
+
Matthew Treinish
|
| 532 |
+
Matthew Trumbell
|
| 533 |
+
Matthew Willson
|
| 534 |
+
Matthias Bussonnier
|
| 535 |
+
mattip
|
| 536 |
+
Maurits van Rees
|
| 537 |
+
Max W Chase
|
| 538 |
+
Maxim Kurnikov
|
| 539 |
+
Maxime Rouyrre
|
| 540 |
+
mayeut
|
| 541 |
+
mbaluna
|
| 542 |
+
Md Sujauddin Sekh
|
| 543 |
+
mdebi
|
| 544 |
+
Meet Vasita
|
| 545 |
+
memoselyk
|
| 546 |
+
meowmeowcat
|
| 547 |
+
Michael
|
| 548 |
+
Michael Aquilina
|
| 549 |
+
Michael E. Karpeles
|
| 550 |
+
Michael Klich
|
| 551 |
+
Michael Mintz
|
| 552 |
+
Michael Williamson
|
| 553 |
+
michaelpacer
|
| 554 |
+
Michał Górny
|
| 555 |
+
Mickaël Schoentgen
|
| 556 |
+
Miguel Araujo Perez
|
| 557 |
+
Mihir Singh
|
| 558 |
+
Mike
|
| 559 |
+
Mike Hendricks
|
| 560 |
+
Min RK
|
| 561 |
+
MinRK
|
| 562 |
+
Miro Hrončok
|
| 563 |
+
Monica Baluna
|
| 564 |
+
montefra
|
| 565 |
+
Monty Taylor
|
| 566 |
+
morotti
|
| 567 |
+
mrKazzila
|
| 568 |
+
Muha Ajjan
|
| 569 |
+
MUTHUSRIHEMADHARSHINI S A
|
| 570 |
+
Nadav Wexler
|
| 571 |
+
Nahuel Ambrosini
|
| 572 |
+
Nate Coraor
|
| 573 |
+
Nate Prewitt
|
| 574 |
+
Nathan Houghton
|
| 575 |
+
Nathaniel J. Smith
|
| 576 |
+
Nehal J Wani
|
| 577 |
+
Neil Botelho
|
| 578 |
+
Nguyễn Gia Phong
|
| 579 |
+
Nicholas Serra
|
| 580 |
+
Nick Coghlan
|
| 581 |
+
Nick Stenning
|
| 582 |
+
Nick Timkovich
|
| 583 |
+
Nicolas Bock
|
| 584 |
+
Nicole Harris
|
| 585 |
+
Nikhil Benesch
|
| 586 |
+
Nikhil Ladha
|
| 587 |
+
Nikita Chepanov
|
| 588 |
+
Nikolay Korolev
|
| 589 |
+
Nipunn Koorapati
|
| 590 |
+
Nitesh Sharma
|
| 591 |
+
Niyas Sait
|
| 592 |
+
Noah
|
| 593 |
+
Noah Gorny
|
| 594 |
+
Nothing-991
|
| 595 |
+
Nowell Strite
|
| 596 |
+
NtaleGrey
|
| 597 |
+
nucccc
|
| 598 |
+
nvdv
|
| 599 |
+
OBITORASU
|
| 600 |
+
Ofek Lev
|
| 601 |
+
ofrinevo
|
| 602 |
+
Oleg Burnaev
|
| 603 |
+
Oliver Freund
|
| 604 |
+
Oliver Jeeves
|
| 605 |
+
Oliver Mannion
|
| 606 |
+
Oliver Tonnhofer
|
| 607 |
+
Olivier Girardot
|
| 608 |
+
Olivier Grisel
|
| 609 |
+
Ollie Rutherfurd
|
| 610 |
+
OMOTO Kenji
|
| 611 |
+
Omry Yadan
|
| 612 |
+
onlinejudge95
|
| 613 |
+
Oren Held
|
| 614 |
+
Oscar Benjamin
|
| 615 |
+
oxygen dioxide
|
| 616 |
+
Oz N Tiram
|
| 617 |
+
Pachwenko
|
| 618 |
+
Paresh Joshi
|
| 619 |
+
Patrick Dubroy
|
| 620 |
+
Patrick Jenkins
|
| 621 |
+
Patrick Lawson
|
| 622 |
+
patricktokeeffe
|
| 623 |
+
Patrik Kopkan
|
| 624 |
+
Paul Ganssle
|
| 625 |
+
Paul Kehrer
|
| 626 |
+
Paul Moore
|
| 627 |
+
Paul Nasrat
|
| 628 |
+
Paul Oswald
|
| 629 |
+
Paul van der Linden
|
| 630 |
+
Paulus Schoutsen
|
| 631 |
+
Pavel Safronov
|
| 632 |
+
Pavithra Eswaramoorthy
|
| 633 |
+
Pawel Jasinski
|
| 634 |
+
Paweł Szramowski
|
| 635 |
+
Pekka Klärck
|
| 636 |
+
Peter Gessler
|
| 637 |
+
Peter Lisák
|
| 638 |
+
Peter Shen
|
| 639 |
+
Peter Waller
|
| 640 |
+
Petr Viktorin
|
| 641 |
+
petr-tik
|
| 642 |
+
Phaneendra Chiruvella
|
| 643 |
+
Phil Elson
|
| 644 |
+
Phil Freo
|
| 645 |
+
Phil Pennock
|
| 646 |
+
Phil Whelan
|
| 647 |
+
Philip Jägenstedt
|
| 648 |
+
Philip Molloy
|
| 649 |
+
Philippe Ombredanne
|
| 650 |
+
Pi Delport
|
| 651 |
+
Pierre-Yves Rofes
|
| 652 |
+
Pieter Degroote
|
| 653 |
+
pip
|
| 654 |
+
Prabakaran Kumaresshan
|
| 655 |
+
Prabhjyotsing Surjit Singh Sodhi
|
| 656 |
+
Prabhu Marappan
|
| 657 |
+
Pradyun Gedam
|
| 658 |
+
Prashant Sharma
|
| 659 |
+
Pratik Mallya
|
| 660 |
+
pre-commit-ci[bot]
|
| 661 |
+
Preet Thakkar
|
| 662 |
+
Preston Holmes
|
| 663 |
+
Przemek Wrzos
|
| 664 |
+
Pulkit Goyal
|
| 665 |
+
q0w
|
| 666 |
+
Qiangning Hong
|
| 667 |
+
Qiming Xu
|
| 668 |
+
qraqras
|
| 669 |
+
Quentin Lee
|
| 670 |
+
Quentin Pradet
|
| 671 |
+
R. David Murray
|
| 672 |
+
Rafael Caricio
|
| 673 |
+
Ralf Schmitt
|
| 674 |
+
Ran Benita
|
| 675 |
+
Randy Döring
|
| 676 |
+
Razzi Abuissa
|
| 677 |
+
rdb
|
| 678 |
+
Reece Dunham
|
| 679 |
+
Remi Rampin
|
| 680 |
+
Rene Dudfield
|
| 681 |
+
Riccardo Magliocchetti
|
| 682 |
+
Riccardo Schirone
|
| 683 |
+
Richard Jones
|
| 684 |
+
Richard Si
|
| 685 |
+
Ricky Ng-Adam
|
| 686 |
+
Rishi
|
| 687 |
+
rmorotti
|
| 688 |
+
RobberPhex
|
| 689 |
+
Robert Collins
|
| 690 |
+
Robert McGibbon
|
| 691 |
+
Robert Pollak
|
| 692 |
+
Robert T. McGibbon
|
| 693 |
+
robin elisha robinson
|
| 694 |
+
Rodney, Tiara
|
| 695 |
+
Roey Berman
|
| 696 |
+
Rohan Jain
|
| 697 |
+
Roman Bogorodskiy
|
| 698 |
+
Roman Donchenko
|
| 699 |
+
Romuald Brunet
|
| 700 |
+
ronaudinho
|
| 701 |
+
Ronny Pfannschmidt
|
| 702 |
+
Rory McCann
|
| 703 |
+
Ross Brattain
|
| 704 |
+
Roy Wellington Ⅳ
|
| 705 |
+
Ruairidh MacLeod
|
| 706 |
+
Russell Keith-Magee
|
| 707 |
+
Ryan Shepherd
|
| 708 |
+
Ryan Wooden
|
| 709 |
+
ryneeverett
|
| 710 |
+
Ryuma Asai
|
| 711 |
+
S. Guliaev
|
| 712 |
+
Sachi King
|
| 713 |
+
Salvatore Rinchiera
|
| 714 |
+
sandeepkiran-js
|
| 715 |
+
Sander Van Balen
|
| 716 |
+
Savio Jomton
|
| 717 |
+
schlamar
|
| 718 |
+
Scott Kitterman
|
| 719 |
+
Sean
|
| 720 |
+
seanj
|
| 721 |
+
Sebastian Jordan
|
| 722 |
+
Sebastian Schaetz
|
| 723 |
+
Segev Finer
|
| 724 |
+
SeongSoo Cho
|
| 725 |
+
Sepehr Rasouli
|
| 726 |
+
sepehrrasooli
|
| 727 |
+
Sergey Vasilyev
|
| 728 |
+
Seth Michael Larson
|
| 729 |
+
Seth Woodworth
|
| 730 |
+
Shahar Epstein
|
| 731 |
+
Shantanu
|
| 732 |
+
shenxianpeng
|
| 733 |
+
shireenrao
|
| 734 |
+
Shivansh-007
|
| 735 |
+
Shixian Sheng
|
| 736 |
+
Shlomi Fish
|
| 737 |
+
Shovan Maity
|
| 738 |
+
Shubham Nagure
|
| 739 |
+
Simeon Visser
|
| 740 |
+
Simon Cross
|
| 741 |
+
Simon Pichugin
|
| 742 |
+
sinoroc
|
| 743 |
+
sinscary
|
| 744 |
+
snook92
|
| 745 |
+
socketubs
|
| 746 |
+
Sorin Sbarnea
|
| 747 |
+
Srinivas Nyayapati
|
| 748 |
+
Srishti Hegde
|
| 749 |
+
Stavros Korokithakis
|
| 750 |
+
Stefan Scherfke
|
| 751 |
+
Stefano Rivera
|
| 752 |
+
Stephan Erb
|
| 753 |
+
Stephane Chazelas
|
| 754 |
+
Stephen Payne
|
| 755 |
+
Stephen Rosen
|
| 756 |
+
stepshal
|
| 757 |
+
Steve (Gadget) Barnes
|
| 758 |
+
Steve Barnes
|
| 759 |
+
Steve Dower
|
| 760 |
+
Steve Kowalik
|
| 761 |
+
Steven Myint
|
| 762 |
+
Steven Silvester
|
| 763 |
+
stonebig
|
| 764 |
+
studioj
|
| 765 |
+
Stéphane Bidoul
|
| 766 |
+
Stéphane Bidoul (ACSONE)
|
| 767 |
+
Stéphane Klein
|
| 768 |
+
Sumana Harihareswara
|
| 769 |
+
Surbhi Sharma
|
| 770 |
+
Sviatoslav Sydorenko
|
| 771 |
+
Sviatoslav Sydorenko (Святослав Сидоренко)
|
| 772 |
+
Swat009
|
| 773 |
+
Sylvain
|
| 774 |
+
Takayuki SHIMIZUKAWA
|
| 775 |
+
Taneli Hukkinen
|
| 776 |
+
tbeswick
|
| 777 |
+
Terrance
|
| 778 |
+
Thiago
|
| 779 |
+
Thijs Triemstra
|
| 780 |
+
Thomas Fenzl
|
| 781 |
+
Thomas Grainger
|
| 782 |
+
Thomas Guettler
|
| 783 |
+
Thomas Johansson
|
| 784 |
+
Thomas Kluyver
|
| 785 |
+
Thomas Smith
|
| 786 |
+
Thomas VINCENT
|
| 787 |
+
Tim D. Smith
|
| 788 |
+
Tim Gates
|
| 789 |
+
Tim Harder
|
| 790 |
+
Tim Heap
|
| 791 |
+
tim smith
|
| 792 |
+
tinruufu
|
| 793 |
+
Tobias Hermann
|
| 794 |
+
Tom Forbes
|
| 795 |
+
Tom Freudenheim
|
| 796 |
+
Tom V
|
| 797 |
+
Tomas Hrnciar
|
| 798 |
+
Tomas Orsava
|
| 799 |
+
Tomer Chachamu
|
| 800 |
+
Tommi Enenkel | AnB
|
| 801 |
+
Tomáš Hrnčiar
|
| 802 |
+
Tony Beswick
|
| 803 |
+
Tony Narlock
|
| 804 |
+
Tony Zhaocheng Tan
|
| 805 |
+
TonyBeswick
|
| 806 |
+
toonarmycaptain
|
| 807 |
+
Toshio Kuratomi
|
| 808 |
+
toxinu
|
| 809 |
+
Travis Swicegood
|
| 810 |
+
Tushar Sadhwani
|
| 811 |
+
Tzu-ping Chung
|
| 812 |
+
Valentin Haenel
|
| 813 |
+
Victor Stinner
|
| 814 |
+
victorvpaulo
|
| 815 |
+
Vikram - Google
|
| 816 |
+
Viktor Szépe
|
| 817 |
+
Ville Skyttä
|
| 818 |
+
Vinay Sajip
|
| 819 |
+
Vincent Philippon
|
| 820 |
+
Vinicyus Macedo
|
| 821 |
+
Vipul Kumar
|
| 822 |
+
Vitaly Babiy
|
| 823 |
+
Vladimir Fokow
|
| 824 |
+
Vladimir Rutsky
|
| 825 |
+
W. Trevor King
|
| 826 |
+
Weida Hong
|
| 827 |
+
Wil Tan
|
| 828 |
+
Wilfred Hughes
|
| 829 |
+
William Edwards
|
| 830 |
+
William ML Leslie
|
| 831 |
+
William T Olson
|
| 832 |
+
William Woodruff
|
| 833 |
+
Wilson Mo
|
| 834 |
+
wim glenn
|
| 835 |
+
Winson Luk
|
| 836 |
+
Wolfgang Maier
|
| 837 |
+
Wu Zhenyu
|
| 838 |
+
XAMES3
|
| 839 |
+
Xavier Fernandez
|
| 840 |
+
Xianpeng Shen
|
| 841 |
+
xoviat
|
| 842 |
+
xtreak
|
| 843 |
+
YAMAMOTO Takashi
|
| 844 |
+
Yash
|
| 845 |
+
Yashraj
|
| 846 |
+
Yen Chi Hsuan
|
| 847 |
+
Yeray Diaz Diaz
|
| 848 |
+
Yoval P
|
| 849 |
+
Yu Jian
|
| 850 |
+
Yuan Jing Vincent Yan
|
| 851 |
+
Yuki Kobayashi
|
| 852 |
+
Yusuke Hayashi
|
| 853 |
+
zackzack38
|
| 854 |
+
Zearin
|
| 855 |
+
Zhiping Deng
|
| 856 |
+
ziebam
|
| 857 |
+
Zvezdan Petkovic
|
| 858 |
+
Łukasz Langa
|
| 859 |
+
Роман Донченко
|
| 860 |
+
Семён Марьясин
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2008-present The pip developers (see AUTHORS.txt file)
|
| 2 |
+
|
| 3 |
+
Permission is hereby granted, free of charge, to any person obtaining
|
| 4 |
+
a copy of this software and associated documentation files (the
|
| 5 |
+
"Software"), to deal in the Software without restriction, including
|
| 6 |
+
without limitation the rights to use, copy, modify, merge, publish,
|
| 7 |
+
distribute, sublicense, and/or sell copies of the Software, and to
|
| 8 |
+
permit persons to whom the Software is furnished to do so, subject to
|
| 9 |
+
the following conditions:
|
| 10 |
+
|
| 11 |
+
The above copyright notice and this permission notice shall be
|
| 12 |
+
included in all copies or substantial portions of the Software.
|
| 13 |
+
|
| 14 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
| 15 |
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
| 16 |
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
| 17 |
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
| 18 |
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
| 19 |
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
| 20 |
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright 2012-2021 Eric Larson
|
| 2 |
+
|
| 3 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
you may not use this file except in compliance with the License.
|
| 5 |
+
You may obtain a copy of the License at
|
| 6 |
+
|
| 7 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
|
| 9 |
+
Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
See the License for the specific language governing permissions and
|
| 13 |
+
limitations under the License.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This package contains a modified version of ca-bundle.crt:
|
| 2 |
+
|
| 3 |
+
ca-bundle.crt -- Bundle of CA Root Certificates
|
| 4 |
+
|
| 5 |
+
This is a bundle of X.509 certificates of public Certificate Authorities
|
| 6 |
+
(CA). These were automatically extracted from Mozilla's root certificates
|
| 7 |
+
file (certdata.txt). This file can be found in the mozilla source tree:
|
| 8 |
+
https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt
|
| 9 |
+
It contains the certificates in PEM format and therefore
|
| 10 |
+
can be directly used with curl / libcurl / php_curl, or with
|
| 11 |
+
an Apache+mod_ssl webserver for SSL client authentication.
|
| 12 |
+
Just configure this file as the SSLCACertificateFile.#
|
| 13 |
+
|
| 14 |
+
***** BEGIN LICENSE BLOCK *****
|
| 15 |
+
This Source Code Form is subject to the terms of the Mozilla Public License,
|
| 16 |
+
v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain
|
| 17 |
+
one at http://mozilla.org/MPL/2.0/.
|
| 18 |
+
|
| 19 |
+
***** END LICENSE BLOCK *****
|
| 20 |
+
@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2024-present Stephen Rosen <sirosen0@gmail.com>
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
| 6 |
+
|
| 7 |
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
| 8 |
+
|
| 9 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt
ADDED
|
@@ -0,0 +1,284 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
A. HISTORY OF THE SOFTWARE
|
| 2 |
+
==========================
|
| 3 |
+
|
| 4 |
+
Python was created in the early 1990s by Guido van Rossum at Stichting
|
| 5 |
+
Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
|
| 6 |
+
as a successor of a language called ABC. Guido remains Python's
|
| 7 |
+
principal author, although it includes many contributions from others.
|
| 8 |
+
|
| 9 |
+
In 1995, Guido continued his work on Python at the Corporation for
|
| 10 |
+
National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
|
| 11 |
+
in Reston, Virginia where he released several versions of the
|
| 12 |
+
software.
|
| 13 |
+
|
| 14 |
+
In May 2000, Guido and the Python core development team moved to
|
| 15 |
+
BeOpen.com to form the BeOpen PythonLabs team. In October of the same
|
| 16 |
+
year, the PythonLabs team moved to Digital Creations (now Zope
|
| 17 |
+
Corporation, see http://www.zope.com). In 2001, the Python Software
|
| 18 |
+
Foundation (PSF, see http://www.python.org/psf/) was formed, a
|
| 19 |
+
non-profit organization created specifically to own Python-related
|
| 20 |
+
Intellectual Property. Zope Corporation is a sponsoring member of
|
| 21 |
+
the PSF.
|
| 22 |
+
|
| 23 |
+
All Python releases are Open Source (see http://www.opensource.org for
|
| 24 |
+
the Open Source Definition). Historically, most, but not all, Python
|
| 25 |
+
releases have also been GPL-compatible; the table below summarizes
|
| 26 |
+
the various releases.
|
| 27 |
+
|
| 28 |
+
Release Derived Year Owner GPL-
|
| 29 |
+
from compatible? (1)
|
| 30 |
+
|
| 31 |
+
0.9.0 thru 1.2 1991-1995 CWI yes
|
| 32 |
+
1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
|
| 33 |
+
1.6 1.5.2 2000 CNRI no
|
| 34 |
+
2.0 1.6 2000 BeOpen.com no
|
| 35 |
+
1.6.1 1.6 2001 CNRI yes (2)
|
| 36 |
+
2.1 2.0+1.6.1 2001 PSF no
|
| 37 |
+
2.0.1 2.0+1.6.1 2001 PSF yes
|
| 38 |
+
2.1.1 2.1+2.0.1 2001 PSF yes
|
| 39 |
+
2.2 2.1.1 2001 PSF yes
|
| 40 |
+
2.1.2 2.1.1 2002 PSF yes
|
| 41 |
+
2.1.3 2.1.2 2002 PSF yes
|
| 42 |
+
2.2.1 2.2 2002 PSF yes
|
| 43 |
+
2.2.2 2.2.1 2002 PSF yes
|
| 44 |
+
2.2.3 2.2.2 2003 PSF yes
|
| 45 |
+
2.3 2.2.2 2002-2003 PSF yes
|
| 46 |
+
2.3.1 2.3 2002-2003 PSF yes
|
| 47 |
+
2.3.2 2.3.1 2002-2003 PSF yes
|
| 48 |
+
2.3.3 2.3.2 2002-2003 PSF yes
|
| 49 |
+
2.3.4 2.3.3 2004 PSF yes
|
| 50 |
+
2.3.5 2.3.4 2005 PSF yes
|
| 51 |
+
2.4 2.3 2004 PSF yes
|
| 52 |
+
2.4.1 2.4 2005 PSF yes
|
| 53 |
+
2.4.2 2.4.1 2005 PSF yes
|
| 54 |
+
2.4.3 2.4.2 2006 PSF yes
|
| 55 |
+
2.4.4 2.4.3 2006 PSF yes
|
| 56 |
+
2.5 2.4 2006 PSF yes
|
| 57 |
+
2.5.1 2.5 2007 PSF yes
|
| 58 |
+
2.5.2 2.5.1 2008 PSF yes
|
| 59 |
+
2.5.3 2.5.2 2008 PSF yes
|
| 60 |
+
2.6 2.5 2008 PSF yes
|
| 61 |
+
2.6.1 2.6 2008 PSF yes
|
| 62 |
+
2.6.2 2.6.1 2009 PSF yes
|
| 63 |
+
2.6.3 2.6.2 2009 PSF yes
|
| 64 |
+
2.6.4 2.6.3 2009 PSF yes
|
| 65 |
+
2.6.5 2.6.4 2010 PSF yes
|
| 66 |
+
3.0 2.6 2008 PSF yes
|
| 67 |
+
3.0.1 3.0 2009 PSF yes
|
| 68 |
+
3.1 3.0.1 2009 PSF yes
|
| 69 |
+
3.1.1 3.1 2009 PSF yes
|
| 70 |
+
3.1.2 3.1 2010 PSF yes
|
| 71 |
+
3.2 3.1 2010 PSF yes
|
| 72 |
+
|
| 73 |
+
Footnotes:
|
| 74 |
+
|
| 75 |
+
(1) GPL-compatible doesn't mean that we're distributing Python under
|
| 76 |
+
the GPL. All Python licenses, unlike the GPL, let you distribute
|
| 77 |
+
a modified version without making your changes open source. The
|
| 78 |
+
GPL-compatible licenses make it possible to combine Python with
|
| 79 |
+
other software that is released under the GPL; the others don't.
|
| 80 |
+
|
| 81 |
+
(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
|
| 82 |
+
because its license has a choice of law clause. According to
|
| 83 |
+
CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
|
| 84 |
+
is "not incompatible" with the GPL.
|
| 85 |
+
|
| 86 |
+
Thanks to the many outside volunteers who have worked under Guido's
|
| 87 |
+
direction to make these releases possible.
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
|
| 91 |
+
===============================================================
|
| 92 |
+
|
| 93 |
+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
|
| 94 |
+
--------------------------------------------
|
| 95 |
+
|
| 96 |
+
1. This LICENSE AGREEMENT is between the Python Software Foundation
|
| 97 |
+
("PSF"), and the Individual or Organization ("Licensee") accessing and
|
| 98 |
+
otherwise using this software ("Python") in source or binary form and
|
| 99 |
+
its associated documentation.
|
| 100 |
+
|
| 101 |
+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
|
| 102 |
+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
|
| 103 |
+
analyze, test, perform and/or display publicly, prepare derivative works,
|
| 104 |
+
distribute, and otherwise use Python alone or in any derivative version,
|
| 105 |
+
provided, however, that PSF's License Agreement and PSF's notice of copyright,
|
| 106 |
+
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
| 107 |
+
Python Software Foundation; All Rights Reserved" are retained in Python alone or
|
| 108 |
+
in any derivative version prepared by Licensee.
|
| 109 |
+
|
| 110 |
+
3. In the event Licensee prepares a derivative work that is based on
|
| 111 |
+
or incorporates Python or any part thereof, and wants to make
|
| 112 |
+
the derivative work available to others as provided herein, then
|
| 113 |
+
Licensee hereby agrees to include in any such work a brief summary of
|
| 114 |
+
the changes made to Python.
|
| 115 |
+
|
| 116 |
+
4. PSF is making Python available to Licensee on an "AS IS"
|
| 117 |
+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 118 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
|
| 119 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 120 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
|
| 121 |
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
| 122 |
+
|
| 123 |
+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
| 124 |
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
| 125 |
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
|
| 126 |
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
| 127 |
+
|
| 128 |
+
6. This License Agreement will automatically terminate upon a material
|
| 129 |
+
breach of its terms and conditions.
|
| 130 |
+
|
| 131 |
+
7. Nothing in this License Agreement shall be deemed to create any
|
| 132 |
+
relationship of agency, partnership, or joint venture between PSF and
|
| 133 |
+
Licensee. This License Agreement does not grant permission to use PSF
|
| 134 |
+
trademarks or trade name in a trademark sense to endorse or promote
|
| 135 |
+
products or services of Licensee, or any third party.
|
| 136 |
+
|
| 137 |
+
8. By copying, installing or otherwise using Python, Licensee
|
| 138 |
+
agrees to be bound by the terms and conditions of this License
|
| 139 |
+
Agreement.
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
|
| 143 |
+
-------------------------------------------
|
| 144 |
+
|
| 145 |
+
BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
|
| 146 |
+
|
| 147 |
+
1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
|
| 148 |
+
office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
|
| 149 |
+
Individual or Organization ("Licensee") accessing and otherwise using
|
| 150 |
+
this software in source or binary form and its associated
|
| 151 |
+
documentation ("the Software").
|
| 152 |
+
|
| 153 |
+
2. Subject to the terms and conditions of this BeOpen Python License
|
| 154 |
+
Agreement, BeOpen hereby grants Licensee a non-exclusive,
|
| 155 |
+
royalty-free, world-wide license to reproduce, analyze, test, perform
|
| 156 |
+
and/or display publicly, prepare derivative works, distribute, and
|
| 157 |
+
otherwise use the Software alone or in any derivative version,
|
| 158 |
+
provided, however, that the BeOpen Python License is retained in the
|
| 159 |
+
Software, alone or in any derivative version prepared by Licensee.
|
| 160 |
+
|
| 161 |
+
3. BeOpen is making the Software available to Licensee on an "AS IS"
|
| 162 |
+
basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 163 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
|
| 164 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 165 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
|
| 166 |
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
| 167 |
+
|
| 168 |
+
4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
|
| 169 |
+
SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
|
| 170 |
+
AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
|
| 171 |
+
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
| 172 |
+
|
| 173 |
+
5. This License Agreement will automatically terminate upon a material
|
| 174 |
+
breach of its terms and conditions.
|
| 175 |
+
|
| 176 |
+
6. This License Agreement shall be governed by and interpreted in all
|
| 177 |
+
respects by the law of the State of California, excluding conflict of
|
| 178 |
+
law provisions. Nothing in this License Agreement shall be deemed to
|
| 179 |
+
create any relationship of agency, partnership, or joint venture
|
| 180 |
+
between BeOpen and Licensee. This License Agreement does not grant
|
| 181 |
+
permission to use BeOpen trademarks or trade names in a trademark
|
| 182 |
+
sense to endorse or promote products or services of Licensee, or any
|
| 183 |
+
third party. As an exception, the "BeOpen Python" logos available at
|
| 184 |
+
http://www.pythonlabs.com/logos.html may be used according to the
|
| 185 |
+
permissions granted on that web page.
|
| 186 |
+
|
| 187 |
+
7. By copying, installing or otherwise using the software, Licensee
|
| 188 |
+
agrees to be bound by the terms and conditions of this License
|
| 189 |
+
Agreement.
|
| 190 |
+
|
| 191 |
+
|
| 192 |
+
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
|
| 193 |
+
---------------------------------------
|
| 194 |
+
|
| 195 |
+
1. This LICENSE AGREEMENT is between the Corporation for National
|
| 196 |
+
Research Initiatives, having an office at 1895 Preston White Drive,
|
| 197 |
+
Reston, VA 20191 ("CNRI"), and the Individual or Organization
|
| 198 |
+
("Licensee") accessing and otherwise using Python 1.6.1 software in
|
| 199 |
+
source or binary form and its associated documentation.
|
| 200 |
+
|
| 201 |
+
2. Subject to the terms and conditions of this License Agreement, CNRI
|
| 202 |
+
hereby grants Licensee a nonexclusive, royalty-free, world-wide
|
| 203 |
+
license to reproduce, analyze, test, perform and/or display publicly,
|
| 204 |
+
prepare derivative works, distribute, and otherwise use Python 1.6.1
|
| 205 |
+
alone or in any derivative version, provided, however, that CNRI's
|
| 206 |
+
License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
|
| 207 |
+
1995-2001 Corporation for National Research Initiatives; All Rights
|
| 208 |
+
Reserved" are retained in Python 1.6.1 alone or in any derivative
|
| 209 |
+
version prepared by Licensee. Alternately, in lieu of CNRI's License
|
| 210 |
+
Agreement, Licensee may substitute the following text (omitting the
|
| 211 |
+
quotes): "Python 1.6.1 is made available subject to the terms and
|
| 212 |
+
conditions in CNRI's License Agreement. This Agreement together with
|
| 213 |
+
Python 1.6.1 may be located on the Internet using the following
|
| 214 |
+
unique, persistent identifier (known as a handle): 1895.22/1013. This
|
| 215 |
+
Agreement may also be obtained from a proxy server on the Internet
|
| 216 |
+
using the following URL: http://hdl.handle.net/1895.22/1013".
|
| 217 |
+
|
| 218 |
+
3. In the event Licensee prepares a derivative work that is based on
|
| 219 |
+
or incorporates Python 1.6.1 or any part thereof, and wants to make
|
| 220 |
+
the derivative work available to others as provided herein, then
|
| 221 |
+
Licensee hereby agrees to include in any such work a brief summary of
|
| 222 |
+
the changes made to Python 1.6.1.
|
| 223 |
+
|
| 224 |
+
4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
|
| 225 |
+
basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 226 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
|
| 227 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 228 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
|
| 229 |
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
| 230 |
+
|
| 231 |
+
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
| 232 |
+
1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
| 233 |
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
|
| 234 |
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
| 235 |
+
|
| 236 |
+
6. This License Agreement will automatically terminate upon a material
|
| 237 |
+
breach of its terms and conditions.
|
| 238 |
+
|
| 239 |
+
7. This License Agreement shall be governed by the federal
|
| 240 |
+
intellectual property law of the United States, including without
|
| 241 |
+
limitation the federal copyright law, and, to the extent such
|
| 242 |
+
U.S. federal law does not apply, by the law of the Commonwealth of
|
| 243 |
+
Virginia, excluding Virginia's conflict of law provisions.
|
| 244 |
+
Notwithstanding the foregoing, with regard to derivative works based
|
| 245 |
+
on Python 1.6.1 that incorporate non-separable material that was
|
| 246 |
+
previously distributed under the GNU General Public License (GPL), the
|
| 247 |
+
law of the Commonwealth of Virginia shall govern this License
|
| 248 |
+
Agreement only as to issues arising under or with respect to
|
| 249 |
+
Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
|
| 250 |
+
License Agreement shall be deemed to create any relationship of
|
| 251 |
+
agency, partnership, or joint venture between CNRI and Licensee. This
|
| 252 |
+
License Agreement does not grant permission to use CNRI trademarks or
|
| 253 |
+
trade name in a trademark sense to endorse or promote products or
|
| 254 |
+
services of Licensee, or any third party.
|
| 255 |
+
|
| 256 |
+
8. By clicking on the "ACCEPT" button where indicated, or by copying,
|
| 257 |
+
installing or otherwise using Python 1.6.1, Licensee agrees to be
|
| 258 |
+
bound by the terms and conditions of this License Agreement.
|
| 259 |
+
|
| 260 |
+
ACCEPT
|
| 261 |
+
|
| 262 |
+
|
| 263 |
+
CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
|
| 264 |
+
--------------------------------------------------
|
| 265 |
+
|
| 266 |
+
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
|
| 267 |
+
The Netherlands. All rights reserved.
|
| 268 |
+
|
| 269 |
+
Permission to use, copy, modify, and distribute this software and its
|
| 270 |
+
documentation for any purpose and without fee is hereby granted,
|
| 271 |
+
provided that the above copyright notice appear in all copies and that
|
| 272 |
+
both that copyright notice and this permission notice appear in
|
| 273 |
+
supporting documentation, and that the name of Stichting Mathematisch
|
| 274 |
+
Centrum or CWI not be used in advertising or publicity pertaining to
|
| 275 |
+
distribution of the software without specific, written prior
|
| 276 |
+
permission.
|
| 277 |
+
|
| 278 |
+
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
| 279 |
+
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
| 280 |
+
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
| 281 |
+
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
| 282 |
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
| 283 |
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
| 284 |
+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
| 188 |
+
|
| 189 |
+
Copyright {yyyy} {name of copyright owner}
|
| 190 |
+
|
| 191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 192 |
+
you may not use this file except in compliance with the License.
|
| 193 |
+
You may obtain a copy of the License at
|
| 194 |
+
|
| 195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 196 |
+
|
| 197 |
+
Unless required by applicable law or agreed to in writing, software
|
| 198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 200 |
+
See the License for the specific language governing permissions and
|
| 201 |
+
limitations under the License.
|
| 202 |
+
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
BSD 3-Clause License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2013-2025, Kim Davies and contributors.
|
| 4 |
+
All rights reserved.
|
| 5 |
+
|
| 6 |
+
Redistribution and use in source and binary forms, with or without
|
| 7 |
+
modification, are permitted provided that the following conditions are
|
| 8 |
+
met:
|
| 9 |
+
|
| 10 |
+
1. Redistributions of source code must retain the above copyright
|
| 11 |
+
notice, this list of conditions and the following disclaimer.
|
| 12 |
+
|
| 13 |
+
2. Redistributions in binary form must reproduce the above copyright
|
| 14 |
+
notice, this list of conditions and the following disclaimer in the
|
| 15 |
+
documentation and/or other materials provided with the distribution.
|
| 16 |
+
|
| 17 |
+
3. Neither the name of the copyright holder nor the names of its
|
| 18 |
+
contributors may be used to endorse or promote products derived from
|
| 19 |
+
this software without specific prior written permission.
|
| 20 |
+
|
| 21 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| 22 |
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| 23 |
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| 24 |
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| 25 |
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| 26 |
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
| 27 |
+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
| 28 |
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
| 29 |
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
| 30 |
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
| 31 |
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (C) 2008-2011 INADA Naoki <songofacandy@gmail.com>
|
| 2 |
+
|
| 3 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
you may not use this file except in compliance with the License.
|
| 5 |
+
You may obtain a copy of the License at
|
| 6 |
+
|
| 7 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
|
| 9 |
+
Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
See the License for the specific language governing permissions and
|
| 13 |
+
limitations under the License.
|
| 14 |
+
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This software is made available under the terms of *either* of the licenses
|
| 2 |
+
found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made
|
| 3 |
+
under the terms of *both* these licenses.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
| 176 |
+
|
| 177 |
+
END OF TERMS AND CONDITIONS
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) Donald Stufft and individual contributors.
|
| 2 |
+
All rights reserved.
|
| 3 |
+
|
| 4 |
+
Redistribution and use in source and binary forms, with or without
|
| 5 |
+
modification, are permitted provided that the following conditions are met:
|
| 6 |
+
|
| 7 |
+
1. Redistributions of source code must retain the above copyright notice,
|
| 8 |
+
this list of conditions and the following disclaimer.
|
| 9 |
+
|
| 10 |
+
2. Redistributions in binary form must reproduce the above copyright
|
| 11 |
+
notice, this list of conditions and the following disclaimer in the
|
| 12 |
+
documentation and/or other materials provided with the distribution.
|
| 13 |
+
|
| 14 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
| 15 |
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
| 16 |
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
| 17 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
| 18 |
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
| 19 |
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
| 20 |
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
| 21 |
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
| 22 |
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 23 |
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 2 |
+
of this software and associated documentation files (the "Software"), to
|
| 3 |
+
deal in the Software without restriction, including without limitation the
|
| 4 |
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
| 5 |
+
sell copies of the Software, and to permit persons to whom the Software is
|
| 6 |
+
furnished to do so, subject to the following conditions:
|
| 7 |
+
|
| 8 |
+
The above copyright notice and this permission notice shall be included in
|
| 9 |
+
all copies or substantial portions of the Software.
|
| 10 |
+
|
| 11 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 12 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 13 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 14 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 15 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
| 16 |
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
| 17 |
+
IN THE SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2010-202x The platformdirs developers
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2006-2022 by the respective authors (see AUTHORS file).
|
| 2 |
+
All rights reserved.
|
| 3 |
+
|
| 4 |
+
Redistribution and use in source and binary forms, with or without
|
| 5 |
+
modification, are permitted provided that the following conditions are
|
| 6 |
+
met:
|
| 7 |
+
|
| 8 |
+
* Redistributions of source code must retain the above copyright
|
| 9 |
+
notice, this list of conditions and the following disclaimer.
|
| 10 |
+
|
| 11 |
+
* Redistributions in binary form must reproduce the above copyright
|
| 12 |
+
notice, this list of conditions and the following disclaimer in the
|
| 13 |
+
documentation and/or other materials provided with the distribution.
|
| 14 |
+
|
| 15 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| 16 |
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| 17 |
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| 18 |
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| 19 |
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| 20 |
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| 21 |
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| 22 |
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| 23 |
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| 24 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 25 |
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
The MIT License (MIT)
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2017 Thomas Kluyver
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in
|
| 13 |
+
all copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 21 |
+
THE SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2018, Tzu-ping Chung <uranusjr@gmail.com>
|
| 2 |
+
|
| 3 |
+
Permission to use, copy, modify, and distribute this software for any
|
| 4 |
+
purpose with or without fee is hereby granted, provided that the above
|
| 5 |
+
copyright notice and this permission notice appear in all copies.
|
| 6 |
+
|
| 7 |
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
| 8 |
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
| 9 |
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
| 10 |
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
| 11 |
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
| 12 |
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
| 13 |
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2020 Will McGugan
|
| 2 |
+
|
| 3 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 4 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 5 |
+
in the Software without restriction, including without limitation the rights
|
| 6 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 7 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 8 |
+
furnished to do so, subject to the following conditions:
|
| 9 |
+
|
| 10 |
+
The above copyright notice and this permission notice shall be included in all
|
| 11 |
+
copies or substantial portions of the Software.
|
| 12 |
+
|
| 13 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 14 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 15 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 16 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 17 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 18 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 19 |
+
SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2021 Taneli Hukkinen
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2021 Taneli Hukkinen
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
The MIT License (MIT)
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2022 Seth Michael Larson
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in
|
| 13 |
+
all copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 21 |
+
THE SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2008-2020 Andrey Petrov and contributors (see CONTRIBUTORS.txt)
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/locations/_distutils.py
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Locations where we look for configs, install stuff, etc"""
|
| 2 |
+
|
| 3 |
+
# The following comment should be removed at some point in the future.
|
| 4 |
+
# mypy: strict-optional=False
|
| 5 |
+
|
| 6 |
+
# If pip's going to use distutils, it should not be using the copy that setuptools
|
| 7 |
+
# might have injected into the environment. This is done by removing the injected
|
| 8 |
+
# shim, if it's injected.
|
| 9 |
+
#
|
| 10 |
+
# See https://github.com/pypa/pip/issues/8761 for the original discussion and
|
| 11 |
+
# rationale for why this is done within pip.
|
| 12 |
+
from __future__ import annotations
|
| 13 |
+
|
| 14 |
+
try:
|
| 15 |
+
__import__("_distutils_hack").remove_shim()
|
| 16 |
+
except (ImportError, AttributeError):
|
| 17 |
+
pass
|
| 18 |
+
|
| 19 |
+
import logging
|
| 20 |
+
import os
|
| 21 |
+
import sys
|
| 22 |
+
from distutils.cmd import Command as DistutilsCommand
|
| 23 |
+
from distutils.command.install import SCHEME_KEYS
|
| 24 |
+
from distutils.command.install import install as distutils_install_command
|
| 25 |
+
from distutils.sysconfig import get_python_lib
|
| 26 |
+
|
| 27 |
+
from pip._internal.models.scheme import Scheme
|
| 28 |
+
from pip._internal.utils.compat import WINDOWS
|
| 29 |
+
from pip._internal.utils.virtualenv import running_under_virtualenv
|
| 30 |
+
|
| 31 |
+
from .base import get_major_minor_version
|
| 32 |
+
|
| 33 |
+
logger = logging.getLogger(__name__)
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
def distutils_scheme(
|
| 37 |
+
dist_name: str,
|
| 38 |
+
user: bool = False,
|
| 39 |
+
home: str | None = None,
|
| 40 |
+
root: str | None = None,
|
| 41 |
+
isolated: bool = False,
|
| 42 |
+
prefix: str | None = None,
|
| 43 |
+
*,
|
| 44 |
+
ignore_config_files: bool = False,
|
| 45 |
+
) -> dict[str, str]:
|
| 46 |
+
"""
|
| 47 |
+
Return a distutils install scheme
|
| 48 |
+
"""
|
| 49 |
+
from distutils.dist import Distribution
|
| 50 |
+
|
| 51 |
+
dist_args: dict[str, str | list[str]] = {"name": dist_name}
|
| 52 |
+
if isolated:
|
| 53 |
+
dist_args["script_args"] = ["--no-user-cfg"]
|
| 54 |
+
|
| 55 |
+
d = Distribution(dist_args)
|
| 56 |
+
if not ignore_config_files:
|
| 57 |
+
try:
|
| 58 |
+
d.parse_config_files()
|
| 59 |
+
except UnicodeDecodeError:
|
| 60 |
+
paths = d.find_config_files()
|
| 61 |
+
logger.warning(
|
| 62 |
+
"Ignore distutils configs in %s due to encoding errors.",
|
| 63 |
+
", ".join(os.path.basename(p) for p in paths),
|
| 64 |
+
)
|
| 65 |
+
obj: DistutilsCommand | None = None
|
| 66 |
+
obj = d.get_command_obj("install", create=True)
|
| 67 |
+
assert obj is not None
|
| 68 |
+
i: distutils_install_command = obj
|
| 69 |
+
# NOTE: setting user or home has the side-effect of creating the home dir
|
| 70 |
+
# or user base for installations during finalize_options()
|
| 71 |
+
# ideally, we'd prefer a scheme class that has no side-effects.
|
| 72 |
+
assert not (user and prefix), f"user={user} prefix={prefix}"
|
| 73 |
+
assert not (home and prefix), f"home={home} prefix={prefix}"
|
| 74 |
+
i.user = user or i.user
|
| 75 |
+
if user or home:
|
| 76 |
+
i.prefix = ""
|
| 77 |
+
i.prefix = prefix or i.prefix
|
| 78 |
+
i.home = home or i.home
|
| 79 |
+
i.root = root or i.root
|
| 80 |
+
i.finalize_options()
|
| 81 |
+
|
| 82 |
+
scheme: dict[str, str] = {}
|
| 83 |
+
for key in SCHEME_KEYS:
|
| 84 |
+
scheme[key] = getattr(i, "install_" + key)
|
| 85 |
+
|
| 86 |
+
# install_lib specified in setup.cfg should install *everything*
|
| 87 |
+
# into there (i.e. it takes precedence over both purelib and
|
| 88 |
+
# platlib). Note, i.install_lib is *always* set after
|
| 89 |
+
# finalize_options(); we only want to override here if the user
|
| 90 |
+
# has explicitly requested it hence going back to the config
|
| 91 |
+
if "install_lib" in d.get_option_dict("install"):
|
| 92 |
+
scheme.update({"purelib": i.install_lib, "platlib": i.install_lib})
|
| 93 |
+
|
| 94 |
+
if running_under_virtualenv():
|
| 95 |
+
if home:
|
| 96 |
+
prefix = home
|
| 97 |
+
elif user:
|
| 98 |
+
prefix = i.install_userbase
|
| 99 |
+
else:
|
| 100 |
+
prefix = i.prefix
|
| 101 |
+
scheme["headers"] = os.path.join(
|
| 102 |
+
prefix,
|
| 103 |
+
"include",
|
| 104 |
+
"site",
|
| 105 |
+
f"python{get_major_minor_version()}",
|
| 106 |
+
dist_name,
|
| 107 |
+
)
|
| 108 |
+
|
| 109 |
+
if root is not None:
|
| 110 |
+
path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1]
|
| 111 |
+
scheme["headers"] = os.path.join(root, path_no_drive[1:])
|
| 112 |
+
|
| 113 |
+
return scheme
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
def get_scheme(
|
| 117 |
+
dist_name: str,
|
| 118 |
+
user: bool = False,
|
| 119 |
+
home: str | None = None,
|
| 120 |
+
root: str | None = None,
|
| 121 |
+
isolated: bool = False,
|
| 122 |
+
prefix: str | None = None,
|
| 123 |
+
) -> Scheme:
|
| 124 |
+
"""
|
| 125 |
+
Get the "scheme" corresponding to the input parameters. The distutils
|
| 126 |
+
documentation provides the context for the available schemes:
|
| 127 |
+
https://docs.python.org/3/install/index.html#alternate-installation
|
| 128 |
+
|
| 129 |
+
:param dist_name: the name of the package to retrieve the scheme for, used
|
| 130 |
+
in the headers scheme path
|
| 131 |
+
:param user: indicates to use the "user" scheme
|
| 132 |
+
:param home: indicates to use the "home" scheme and provides the base
|
| 133 |
+
directory for the same
|
| 134 |
+
:param root: root under which other directories are re-based
|
| 135 |
+
:param isolated: equivalent to --no-user-cfg, i.e. do not consider
|
| 136 |
+
~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for
|
| 137 |
+
scheme paths
|
| 138 |
+
:param prefix: indicates to use the "prefix" scheme and provides the
|
| 139 |
+
base directory for the same
|
| 140 |
+
"""
|
| 141 |
+
scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix)
|
| 142 |
+
return Scheme(
|
| 143 |
+
platlib=scheme["platlib"],
|
| 144 |
+
purelib=scheme["purelib"],
|
| 145 |
+
headers=scheme["headers"],
|
| 146 |
+
scripts=scheme["scripts"],
|
| 147 |
+
data=scheme["data"],
|
| 148 |
+
)
|
| 149 |
+
|
| 150 |
+
|
| 151 |
+
def get_bin_prefix() -> str:
|
| 152 |
+
# XXX: In old virtualenv versions, sys.prefix can contain '..' components,
|
| 153 |
+
# so we need to call normpath to eliminate them.
|
| 154 |
+
prefix = os.path.normpath(sys.prefix)
|
| 155 |
+
if WINDOWS:
|
| 156 |
+
bin_py = os.path.join(prefix, "Scripts")
|
| 157 |
+
# buildout uses 'bin' on Windows too?
|
| 158 |
+
if not os.path.exists(bin_py):
|
| 159 |
+
bin_py = os.path.join(prefix, "bin")
|
| 160 |
+
return bin_py
|
| 161 |
+
# Forcing to use /usr/local/bin for standard macOS framework installs
|
| 162 |
+
# Also log to ~/Library/Logs/ for use with the Console.app log viewer
|
| 163 |
+
if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/":
|
| 164 |
+
return "/usr/local/bin"
|
| 165 |
+
return os.path.join(prefix, "bin")
|
| 166 |
+
|
| 167 |
+
|
| 168 |
+
def get_purelib() -> str:
|
| 169 |
+
return get_python_lib(plat_specific=False)
|
| 170 |
+
|
| 171 |
+
|
| 172 |
+
def get_platlib() -> str:
|
| 173 |
+
return get_python_lib(plat_specific=True)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/locations/_sysconfig.py
ADDED
|
@@ -0,0 +1,218 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import logging
|
| 4 |
+
import os
|
| 5 |
+
import sys
|
| 6 |
+
import sysconfig
|
| 7 |
+
from typing import Callable
|
| 8 |
+
|
| 9 |
+
from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid
|
| 10 |
+
from pip._internal.models.scheme import SCHEME_KEYS, Scheme
|
| 11 |
+
from pip._internal.utils.virtualenv import running_under_virtualenv
|
| 12 |
+
|
| 13 |
+
from .base import change_root, get_major_minor_version, is_osx_framework
|
| 14 |
+
|
| 15 |
+
logger = logging.getLogger(__name__)
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
# Notes on _infer_* functions.
|
| 19 |
+
# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no
|
| 20 |
+
# way to ask things like "what is the '_prefix' scheme on this platform". These
|
| 21 |
+
# functions try to answer that with some heuristics while accounting for ad-hoc
|
| 22 |
+
# platforms not covered by CPython's default sysconfig implementation. If the
|
| 23 |
+
# ad-hoc implementation does not fully implement sysconfig, we'll fall back to
|
| 24 |
+
# a POSIX scheme.
|
| 25 |
+
|
| 26 |
+
_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names())
|
| 27 |
+
|
| 28 |
+
_PREFERRED_SCHEME_API: Callable[[str], str] | None = getattr(
|
| 29 |
+
sysconfig, "get_preferred_scheme", None
|
| 30 |
+
)
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
def _should_use_osx_framework_prefix() -> bool:
|
| 34 |
+
"""Check for Apple's ``osx_framework_library`` scheme.
|
| 35 |
+
|
| 36 |
+
Python distributed by Apple's Command Line Tools has this special scheme
|
| 37 |
+
that's used when:
|
| 38 |
+
|
| 39 |
+
* This is a framework build.
|
| 40 |
+
* We are installing into the system prefix.
|
| 41 |
+
|
| 42 |
+
This does not account for ``pip install --prefix`` (also means we're not
|
| 43 |
+
installing to the system prefix), which should use ``posix_prefix``, but
|
| 44 |
+
logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But
|
| 45 |
+
since ``prefix`` is not available for ``sysconfig.get_default_scheme()``,
|
| 46 |
+
which is the stdlib replacement for ``_infer_prefix()``, presumably Apple
|
| 47 |
+
wouldn't be able to magically switch between ``osx_framework_library`` and
|
| 48 |
+
``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library``
|
| 49 |
+
means its behavior is consistent whether we use the stdlib implementation
|
| 50 |
+
or our own, and we deal with this special case in ``get_scheme()`` instead.
|
| 51 |
+
"""
|
| 52 |
+
return (
|
| 53 |
+
"osx_framework_library" in _AVAILABLE_SCHEMES
|
| 54 |
+
and not running_under_virtualenv()
|
| 55 |
+
and is_osx_framework()
|
| 56 |
+
)
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
def _infer_prefix() -> str:
|
| 60 |
+
"""Try to find a prefix scheme for the current platform.
|
| 61 |
+
|
| 62 |
+
This tries:
|
| 63 |
+
|
| 64 |
+
* A special ``osx_framework_library`` for Python distributed by Apple's
|
| 65 |
+
Command Line Tools, when not running in a virtual environment.
|
| 66 |
+
* Implementation + OS, used by PyPy on Windows (``pypy_nt``).
|
| 67 |
+
* Implementation without OS, used by PyPy on POSIX (``pypy``).
|
| 68 |
+
* OS + "prefix", used by CPython on POSIX (``posix_prefix``).
|
| 69 |
+
* Just the OS name, used by CPython on Windows (``nt``).
|
| 70 |
+
|
| 71 |
+
If none of the above works, fall back to ``posix_prefix``.
|
| 72 |
+
"""
|
| 73 |
+
if _PREFERRED_SCHEME_API:
|
| 74 |
+
return _PREFERRED_SCHEME_API("prefix")
|
| 75 |
+
if _should_use_osx_framework_prefix():
|
| 76 |
+
return "osx_framework_library"
|
| 77 |
+
implementation_suffixed = f"{sys.implementation.name}_{os.name}"
|
| 78 |
+
if implementation_suffixed in _AVAILABLE_SCHEMES:
|
| 79 |
+
return implementation_suffixed
|
| 80 |
+
if sys.implementation.name in _AVAILABLE_SCHEMES:
|
| 81 |
+
return sys.implementation.name
|
| 82 |
+
suffixed = f"{os.name}_prefix"
|
| 83 |
+
if suffixed in _AVAILABLE_SCHEMES:
|
| 84 |
+
return suffixed
|
| 85 |
+
if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt".
|
| 86 |
+
return os.name
|
| 87 |
+
return "posix_prefix"
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
def _infer_user() -> str:
|
| 91 |
+
"""Try to find a user scheme for the current platform."""
|
| 92 |
+
if _PREFERRED_SCHEME_API:
|
| 93 |
+
return _PREFERRED_SCHEME_API("user")
|
| 94 |
+
if is_osx_framework() and not running_under_virtualenv():
|
| 95 |
+
suffixed = "osx_framework_user"
|
| 96 |
+
else:
|
| 97 |
+
suffixed = f"{os.name}_user"
|
| 98 |
+
if suffixed in _AVAILABLE_SCHEMES:
|
| 99 |
+
return suffixed
|
| 100 |
+
if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable.
|
| 101 |
+
raise UserInstallationInvalid()
|
| 102 |
+
return "posix_user"
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
def _infer_home() -> str:
|
| 106 |
+
"""Try to find a home for the current platform."""
|
| 107 |
+
if _PREFERRED_SCHEME_API:
|
| 108 |
+
return _PREFERRED_SCHEME_API("home")
|
| 109 |
+
suffixed = f"{os.name}_home"
|
| 110 |
+
if suffixed in _AVAILABLE_SCHEMES:
|
| 111 |
+
return suffixed
|
| 112 |
+
return "posix_home"
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
# Update these keys if the user sets a custom home.
|
| 116 |
+
_HOME_KEYS = [
|
| 117 |
+
"installed_base",
|
| 118 |
+
"base",
|
| 119 |
+
"installed_platbase",
|
| 120 |
+
"platbase",
|
| 121 |
+
"prefix",
|
| 122 |
+
"exec_prefix",
|
| 123 |
+
]
|
| 124 |
+
if sysconfig.get_config_var("userbase") is not None:
|
| 125 |
+
_HOME_KEYS.append("userbase")
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
def get_scheme(
|
| 129 |
+
dist_name: str,
|
| 130 |
+
user: bool = False,
|
| 131 |
+
home: str | None = None,
|
| 132 |
+
root: str | None = None,
|
| 133 |
+
isolated: bool = False,
|
| 134 |
+
prefix: str | None = None,
|
| 135 |
+
) -> Scheme:
|
| 136 |
+
"""
|
| 137 |
+
Get the "scheme" corresponding to the input parameters.
|
| 138 |
+
|
| 139 |
+
:param dist_name: the name of the package to retrieve the scheme for, used
|
| 140 |
+
in the headers scheme path
|
| 141 |
+
:param user: indicates to use the "user" scheme
|
| 142 |
+
:param home: indicates to use the "home" scheme
|
| 143 |
+
:param root: root under which other directories are re-based
|
| 144 |
+
:param isolated: ignored, but kept for distutils compatibility (where
|
| 145 |
+
this controls whether the user-site pydistutils.cfg is honored)
|
| 146 |
+
:param prefix: indicates to use the "prefix" scheme and provides the
|
| 147 |
+
base directory for the same
|
| 148 |
+
"""
|
| 149 |
+
if user and prefix:
|
| 150 |
+
raise InvalidSchemeCombination("--user", "--prefix")
|
| 151 |
+
if home and prefix:
|
| 152 |
+
raise InvalidSchemeCombination("--home", "--prefix")
|
| 153 |
+
|
| 154 |
+
if home is not None:
|
| 155 |
+
scheme_name = _infer_home()
|
| 156 |
+
elif user:
|
| 157 |
+
scheme_name = _infer_user()
|
| 158 |
+
else:
|
| 159 |
+
scheme_name = _infer_prefix()
|
| 160 |
+
|
| 161 |
+
# Special case: When installing into a custom prefix, use posix_prefix
|
| 162 |
+
# instead of osx_framework_library. See _should_use_osx_framework_prefix()
|
| 163 |
+
# docstring for details.
|
| 164 |
+
if prefix is not None and scheme_name == "osx_framework_library":
|
| 165 |
+
scheme_name = "posix_prefix"
|
| 166 |
+
|
| 167 |
+
if home is not None:
|
| 168 |
+
variables = {k: home for k in _HOME_KEYS}
|
| 169 |
+
elif prefix is not None:
|
| 170 |
+
variables = {k: prefix for k in _HOME_KEYS}
|
| 171 |
+
else:
|
| 172 |
+
variables = {}
|
| 173 |
+
|
| 174 |
+
paths = sysconfig.get_paths(scheme=scheme_name, vars=variables)
|
| 175 |
+
|
| 176 |
+
# Logic here is very arbitrary, we're doing it for compatibility, don't ask.
|
| 177 |
+
# 1. Pip historically uses a special header path in virtual environments.
|
| 178 |
+
# 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We
|
| 179 |
+
# only do the same when not running in a virtual environment because
|
| 180 |
+
# pip's historical header path logic (see point 1) did not do this.
|
| 181 |
+
if running_under_virtualenv():
|
| 182 |
+
if user:
|
| 183 |
+
base = variables.get("userbase", sys.prefix)
|
| 184 |
+
else:
|
| 185 |
+
base = variables.get("base", sys.prefix)
|
| 186 |
+
python_xy = f"python{get_major_minor_version()}"
|
| 187 |
+
paths["include"] = os.path.join(base, "include", "site", python_xy)
|
| 188 |
+
elif not dist_name:
|
| 189 |
+
dist_name = "UNKNOWN"
|
| 190 |
+
|
| 191 |
+
scheme = Scheme(
|
| 192 |
+
platlib=paths["platlib"],
|
| 193 |
+
purelib=paths["purelib"],
|
| 194 |
+
headers=os.path.join(paths["include"], dist_name),
|
| 195 |
+
scripts=paths["scripts"],
|
| 196 |
+
data=paths["data"],
|
| 197 |
+
)
|
| 198 |
+
if root is not None:
|
| 199 |
+
converted_keys = {}
|
| 200 |
+
for key in SCHEME_KEYS:
|
| 201 |
+
converted_keys[key] = change_root(root, getattr(scheme, key))
|
| 202 |
+
scheme = Scheme(**converted_keys)
|
| 203 |
+
return scheme
|
| 204 |
+
|
| 205 |
+
|
| 206 |
+
def get_bin_prefix() -> str:
|
| 207 |
+
# Forcing to use /usr/local/bin for standard macOS framework installs.
|
| 208 |
+
if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/":
|
| 209 |
+
return "/usr/local/bin"
|
| 210 |
+
return sysconfig.get_paths()["scripts"]
|
| 211 |
+
|
| 212 |
+
|
| 213 |
+
def get_purelib() -> str:
|
| 214 |
+
return sysconfig.get_paths()["purelib"]
|
| 215 |
+
|
| 216 |
+
|
| 217 |
+
def get_platlib() -> str:
|
| 218 |
+
return sysconfig.get_paths()["platlib"]
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/locations/base.py
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import functools
|
| 4 |
+
import os
|
| 5 |
+
import site
|
| 6 |
+
import sys
|
| 7 |
+
import sysconfig
|
| 8 |
+
|
| 9 |
+
from pip._internal.exceptions import InstallationError
|
| 10 |
+
from pip._internal.utils import appdirs
|
| 11 |
+
from pip._internal.utils.virtualenv import running_under_virtualenv
|
| 12 |
+
|
| 13 |
+
# Application Directories
|
| 14 |
+
USER_CACHE_DIR = appdirs.user_cache_dir("pip")
|
| 15 |
+
|
| 16 |
+
# FIXME doesn't account for venv linked to global site-packages
|
| 17 |
+
site_packages: str = sysconfig.get_path("purelib")
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def get_major_minor_version() -> str:
|
| 21 |
+
"""
|
| 22 |
+
Return the major-minor version of the current Python as a string, e.g.
|
| 23 |
+
"3.7" or "3.10".
|
| 24 |
+
"""
|
| 25 |
+
return "{}.{}".format(*sys.version_info)
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def change_root(new_root: str, pathname: str) -> str:
|
| 29 |
+
"""Return 'pathname' with 'new_root' prepended.
|
| 30 |
+
|
| 31 |
+
If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname).
|
| 32 |
+
Otherwise, it requires making 'pathname' relative and then joining the
|
| 33 |
+
two, which is tricky on DOS/Windows and Mac OS.
|
| 34 |
+
|
| 35 |
+
This is borrowed from Python's standard library's distutils module.
|
| 36 |
+
"""
|
| 37 |
+
if os.name == "posix":
|
| 38 |
+
if not os.path.isabs(pathname):
|
| 39 |
+
return os.path.join(new_root, pathname)
|
| 40 |
+
else:
|
| 41 |
+
return os.path.join(new_root, pathname[1:])
|
| 42 |
+
|
| 43 |
+
elif os.name == "nt":
|
| 44 |
+
(drive, path) = os.path.splitdrive(pathname)
|
| 45 |
+
if path[0] == "\\":
|
| 46 |
+
path = path[1:]
|
| 47 |
+
return os.path.join(new_root, path)
|
| 48 |
+
|
| 49 |
+
else:
|
| 50 |
+
raise InstallationError(
|
| 51 |
+
f"Unknown platform: {os.name}\n"
|
| 52 |
+
"Can not change root path prefix on unknown platform."
|
| 53 |
+
)
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
def get_src_prefix() -> str:
|
| 57 |
+
if running_under_virtualenv():
|
| 58 |
+
src_prefix = os.path.join(sys.prefix, "src")
|
| 59 |
+
else:
|
| 60 |
+
# FIXME: keep src in cwd for now (it is not a temporary folder)
|
| 61 |
+
try:
|
| 62 |
+
src_prefix = os.path.join(os.getcwd(), "src")
|
| 63 |
+
except OSError:
|
| 64 |
+
# In case the current working directory has been renamed or deleted
|
| 65 |
+
sys.exit("The folder you are executing pip from can no longer be found.")
|
| 66 |
+
|
| 67 |
+
# under macOS + virtualenv sys.prefix is not properly resolved
|
| 68 |
+
# it is something like /path/to/python/bin/..
|
| 69 |
+
return os.path.abspath(src_prefix)
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
try:
|
| 73 |
+
# Use getusersitepackages if this is present, as it ensures that the
|
| 74 |
+
# value is initialised properly.
|
| 75 |
+
user_site: str | None = site.getusersitepackages()
|
| 76 |
+
except AttributeError:
|
| 77 |
+
user_site = site.USER_SITE
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
@functools.cache
|
| 81 |
+
def is_osx_framework() -> bool:
|
| 82 |
+
return bool(sysconfig.get_config_var("PYTHONFRAMEWORK"))
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/__init__.py
ADDED
|
@@ -0,0 +1,169 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import contextlib
|
| 4 |
+
import functools
|
| 5 |
+
import os
|
| 6 |
+
import sys
|
| 7 |
+
from typing import TYPE_CHECKING, Literal, Protocol, cast
|
| 8 |
+
|
| 9 |
+
from pip._internal.utils.deprecation import deprecated
|
| 10 |
+
from pip._internal.utils.misc import strtobool
|
| 11 |
+
|
| 12 |
+
from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel
|
| 13 |
+
|
| 14 |
+
if TYPE_CHECKING:
|
| 15 |
+
from pip._vendor.packaging.utils import NormalizedName
|
| 16 |
+
|
| 17 |
+
__all__ = [
|
| 18 |
+
"BaseDistribution",
|
| 19 |
+
"BaseEnvironment",
|
| 20 |
+
"FilesystemWheel",
|
| 21 |
+
"MemoryWheel",
|
| 22 |
+
"Wheel",
|
| 23 |
+
"get_default_environment",
|
| 24 |
+
"get_environment",
|
| 25 |
+
"get_wheel_distribution",
|
| 26 |
+
"select_backend",
|
| 27 |
+
]
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def _should_use_importlib_metadata() -> bool:
|
| 31 |
+
"""Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend.
|
| 32 |
+
|
| 33 |
+
By default, pip uses ``importlib.metadata`` on Python 3.11+, and
|
| 34 |
+
``pkg_resources`` otherwise. Up to Python 3.13, This can be
|
| 35 |
+
overridden by a couple of ways:
|
| 36 |
+
|
| 37 |
+
* If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it
|
| 38 |
+
dictates whether ``importlib.metadata`` is used, for Python <3.14.
|
| 39 |
+
* On Python 3.11, 3.12 and 3.13, Python distributors can patch
|
| 40 |
+
``importlib.metadata`` to add a global constant
|
| 41 |
+
``_PIP_USE_IMPORTLIB_METADATA = False``. This makes pip use
|
| 42 |
+
``pkg_resources`` (unless the user set the aforementioned environment
|
| 43 |
+
variable to *True*).
|
| 44 |
+
|
| 45 |
+
On Python 3.14+, the ``pkg_resources`` backend cannot be used.
|
| 46 |
+
"""
|
| 47 |
+
if sys.version_info >= (3, 14):
|
| 48 |
+
# On Python >=3.14 we only support importlib.metadata.
|
| 49 |
+
return True
|
| 50 |
+
with contextlib.suppress(KeyError, ValueError):
|
| 51 |
+
# On Python <3.14, if the environment variable is set, we obey what it says.
|
| 52 |
+
return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"]))
|
| 53 |
+
if sys.version_info < (3, 11):
|
| 54 |
+
# On Python <3.11, we always use pkg_resources, unless the environment
|
| 55 |
+
# variable was set.
|
| 56 |
+
return False
|
| 57 |
+
# On Python 3.11, 3.12 and 3.13, we check if the global constant is set.
|
| 58 |
+
import importlib.metadata
|
| 59 |
+
|
| 60 |
+
return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True))
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
def _emit_pkg_resources_deprecation_if_needed() -> None:
|
| 64 |
+
if sys.version_info < (3, 11):
|
| 65 |
+
# All pip versions supporting Python<=3.11 will support pkg_resources,
|
| 66 |
+
# and pkg_resources is the default for these, so let's not bother users.
|
| 67 |
+
return
|
| 68 |
+
|
| 69 |
+
import importlib.metadata
|
| 70 |
+
|
| 71 |
+
if hasattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA"):
|
| 72 |
+
# The Python distributor has set the global constant, so we don't
|
| 73 |
+
# warn, since it is not a user decision.
|
| 74 |
+
return
|
| 75 |
+
|
| 76 |
+
# The user has decided to use pkg_resources, so we warn.
|
| 77 |
+
deprecated(
|
| 78 |
+
reason="Using the pkg_resources metadata backend is deprecated.",
|
| 79 |
+
replacement=(
|
| 80 |
+
"to use the default importlib.metadata backend, "
|
| 81 |
+
"by unsetting the _PIP_USE_IMPORTLIB_METADATA environment variable"
|
| 82 |
+
),
|
| 83 |
+
gone_in="26.3",
|
| 84 |
+
issue=13317,
|
| 85 |
+
)
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
class Backend(Protocol):
|
| 89 |
+
NAME: Literal["importlib", "pkg_resources"]
|
| 90 |
+
Distribution: type[BaseDistribution]
|
| 91 |
+
Environment: type[BaseEnvironment]
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
@functools.cache
|
| 95 |
+
def select_backend() -> Backend:
|
| 96 |
+
if _should_use_importlib_metadata():
|
| 97 |
+
from . import importlib
|
| 98 |
+
|
| 99 |
+
return cast(Backend, importlib)
|
| 100 |
+
|
| 101 |
+
_emit_pkg_resources_deprecation_if_needed()
|
| 102 |
+
|
| 103 |
+
from . import pkg_resources
|
| 104 |
+
|
| 105 |
+
return cast(Backend, pkg_resources)
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
def get_default_environment() -> BaseEnvironment:
|
| 109 |
+
"""Get the default representation for the current environment.
|
| 110 |
+
|
| 111 |
+
This returns an Environment instance from the chosen backend. The default
|
| 112 |
+
Environment instance should be built from ``sys.path`` and may use caching
|
| 113 |
+
to share instance state across calls.
|
| 114 |
+
"""
|
| 115 |
+
return select_backend().Environment.default()
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
def get_environment(paths: list[str] | None) -> BaseEnvironment:
|
| 119 |
+
"""Get a representation of the environment specified by ``paths``.
|
| 120 |
+
|
| 121 |
+
This returns an Environment instance from the chosen backend based on the
|
| 122 |
+
given import paths. The backend must build a fresh instance representing
|
| 123 |
+
the state of installed distributions when this function is called.
|
| 124 |
+
"""
|
| 125 |
+
return select_backend().Environment.from_paths(paths)
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
def get_directory_distribution(directory: str) -> BaseDistribution:
|
| 129 |
+
"""Get the distribution metadata representation in the specified directory.
|
| 130 |
+
|
| 131 |
+
This returns a Distribution instance from the chosen backend based on
|
| 132 |
+
the given on-disk ``.dist-info`` directory.
|
| 133 |
+
"""
|
| 134 |
+
return select_backend().Distribution.from_directory(directory)
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
def get_wheel_distribution(
|
| 138 |
+
wheel: Wheel, canonical_name: NormalizedName
|
| 139 |
+
) -> BaseDistribution:
|
| 140 |
+
"""Get the representation of the specified wheel's distribution metadata.
|
| 141 |
+
|
| 142 |
+
This returns a Distribution instance from the chosen backend based on
|
| 143 |
+
the given wheel's ``.dist-info`` directory.
|
| 144 |
+
|
| 145 |
+
:param canonical_name: Normalized project name of the given wheel.
|
| 146 |
+
"""
|
| 147 |
+
return select_backend().Distribution.from_wheel(wheel, canonical_name)
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
def get_metadata_distribution(
|
| 151 |
+
metadata_contents: bytes,
|
| 152 |
+
filename: str,
|
| 153 |
+
canonical_name: str,
|
| 154 |
+
) -> BaseDistribution:
|
| 155 |
+
"""Get the dist representation of the specified METADATA file contents.
|
| 156 |
+
|
| 157 |
+
This returns a Distribution instance from the chosen backend sourced from the data
|
| 158 |
+
in `metadata_contents`.
|
| 159 |
+
|
| 160 |
+
:param metadata_contents: Contents of a METADATA file within a dist, or one served
|
| 161 |
+
via PEP 658.
|
| 162 |
+
:param filename: Filename for the dist this metadata represents.
|
| 163 |
+
:param canonical_name: Normalized project name of the given dist.
|
| 164 |
+
"""
|
| 165 |
+
return select_backend().Distribution.from_metadata_file_contents(
|
| 166 |
+
metadata_contents,
|
| 167 |
+
filename,
|
| 168 |
+
canonical_name,
|
| 169 |
+
)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/_json.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Extracted from https://github.com/pfmoore/pkg_metadata
|
| 2 |
+
from __future__ import annotations
|
| 3 |
+
|
| 4 |
+
from email.header import Header, decode_header, make_header
|
| 5 |
+
from email.message import Message
|
| 6 |
+
from typing import Any, cast
|
| 7 |
+
|
| 8 |
+
METADATA_FIELDS = [
|
| 9 |
+
# Name, Multiple-Use
|
| 10 |
+
("Metadata-Version", False),
|
| 11 |
+
("Name", False),
|
| 12 |
+
("Version", False),
|
| 13 |
+
("Dynamic", True),
|
| 14 |
+
("Platform", True),
|
| 15 |
+
("Supported-Platform", True),
|
| 16 |
+
("Summary", False),
|
| 17 |
+
("Description", False),
|
| 18 |
+
("Description-Content-Type", False),
|
| 19 |
+
("Keywords", False),
|
| 20 |
+
("Home-page", False),
|
| 21 |
+
("Download-URL", False),
|
| 22 |
+
("Author", False),
|
| 23 |
+
("Author-email", False),
|
| 24 |
+
("Maintainer", False),
|
| 25 |
+
("Maintainer-email", False),
|
| 26 |
+
("License", False),
|
| 27 |
+
("License-Expression", False),
|
| 28 |
+
("License-File", True),
|
| 29 |
+
("Classifier", True),
|
| 30 |
+
("Requires-Dist", True),
|
| 31 |
+
("Requires-Python", False),
|
| 32 |
+
("Requires-External", True),
|
| 33 |
+
("Project-URL", True),
|
| 34 |
+
("Provides-Extra", True),
|
| 35 |
+
("Provides-Dist", True),
|
| 36 |
+
("Obsoletes-Dist", True),
|
| 37 |
+
]
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
def json_name(field: str) -> str:
|
| 41 |
+
return field.lower().replace("-", "_")
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
def msg_to_json(msg: Message) -> dict[str, Any]:
|
| 45 |
+
"""Convert a Message object into a JSON-compatible dictionary."""
|
| 46 |
+
|
| 47 |
+
def sanitise_header(h: Header | str) -> str:
|
| 48 |
+
if isinstance(h, Header):
|
| 49 |
+
chunks = []
|
| 50 |
+
for bytes, encoding in decode_header(h):
|
| 51 |
+
if encoding == "unknown-8bit":
|
| 52 |
+
try:
|
| 53 |
+
# See if UTF-8 works
|
| 54 |
+
bytes.decode("utf-8")
|
| 55 |
+
encoding = "utf-8"
|
| 56 |
+
except UnicodeDecodeError:
|
| 57 |
+
# If not, latin1 at least won't fail
|
| 58 |
+
encoding = "latin1"
|
| 59 |
+
chunks.append((bytes, encoding))
|
| 60 |
+
return str(make_header(chunks))
|
| 61 |
+
return str(h)
|
| 62 |
+
|
| 63 |
+
result = {}
|
| 64 |
+
for field, multi in METADATA_FIELDS:
|
| 65 |
+
if field not in msg:
|
| 66 |
+
continue
|
| 67 |
+
key = json_name(field)
|
| 68 |
+
if multi:
|
| 69 |
+
value: str | list[str] = [
|
| 70 |
+
sanitise_header(v) for v in msg.get_all(field) # type: ignore
|
| 71 |
+
]
|
| 72 |
+
else:
|
| 73 |
+
value = sanitise_header(msg.get(field)) # type: ignore
|
| 74 |
+
if key == "keywords":
|
| 75 |
+
# Accept both comma-separated and space-separated
|
| 76 |
+
# forms, for better compatibility with old data.
|
| 77 |
+
if "," in value:
|
| 78 |
+
value = [v.strip() for v in value.split(",")]
|
| 79 |
+
else:
|
| 80 |
+
value = value.split()
|
| 81 |
+
result[key] = value
|
| 82 |
+
|
| 83 |
+
payload = cast(str, msg.get_payload())
|
| 84 |
+
if payload:
|
| 85 |
+
result["description"] = payload
|
| 86 |
+
|
| 87 |
+
return result
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/base.py
ADDED
|
@@ -0,0 +1,685 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import csv
|
| 4 |
+
import email.message
|
| 5 |
+
import functools
|
| 6 |
+
import json
|
| 7 |
+
import logging
|
| 8 |
+
import pathlib
|
| 9 |
+
import re
|
| 10 |
+
import zipfile
|
| 11 |
+
from collections.abc import Collection, Container, Iterable, Iterator
|
| 12 |
+
from typing import (
|
| 13 |
+
IO,
|
| 14 |
+
Any,
|
| 15 |
+
NamedTuple,
|
| 16 |
+
Protocol,
|
| 17 |
+
Union,
|
| 18 |
+
)
|
| 19 |
+
|
| 20 |
+
from pip._vendor.packaging.requirements import Requirement
|
| 21 |
+
from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet
|
| 22 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 23 |
+
from pip._vendor.packaging.version import Version
|
| 24 |
+
|
| 25 |
+
from pip._internal.exceptions import NoneMetadataError
|
| 26 |
+
from pip._internal.locations import site_packages, user_site
|
| 27 |
+
from pip._internal.models.direct_url import (
|
| 28 |
+
DIRECT_URL_METADATA_NAME,
|
| 29 |
+
DirectUrl,
|
| 30 |
+
DirectUrlValidationError,
|
| 31 |
+
)
|
| 32 |
+
from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here.
|
| 33 |
+
from pip._internal.utils.egg_link import egg_link_path_from_sys_path
|
| 34 |
+
from pip._internal.utils.misc import is_local, normalize_path
|
| 35 |
+
from pip._internal.utils.urls import url_to_path
|
| 36 |
+
|
| 37 |
+
from ._json import msg_to_json
|
| 38 |
+
|
| 39 |
+
InfoPath = Union[str, pathlib.PurePath]
|
| 40 |
+
|
| 41 |
+
logger = logging.getLogger(__name__)
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
class BaseEntryPoint(Protocol):
|
| 45 |
+
@property
|
| 46 |
+
def name(self) -> str:
|
| 47 |
+
raise NotImplementedError()
|
| 48 |
+
|
| 49 |
+
@property
|
| 50 |
+
def value(self) -> str:
|
| 51 |
+
raise NotImplementedError()
|
| 52 |
+
|
| 53 |
+
@property
|
| 54 |
+
def group(self) -> str:
|
| 55 |
+
raise NotImplementedError()
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def _convert_installed_files_path(
|
| 59 |
+
entry: tuple[str, ...],
|
| 60 |
+
info: tuple[str, ...],
|
| 61 |
+
) -> str:
|
| 62 |
+
"""Convert a legacy installed-files.txt path into modern RECORD path.
|
| 63 |
+
|
| 64 |
+
The legacy format stores paths relative to the info directory, while the
|
| 65 |
+
modern format stores paths relative to the package root, e.g. the
|
| 66 |
+
site-packages directory.
|
| 67 |
+
|
| 68 |
+
:param entry: Path parts of the installed-files.txt entry.
|
| 69 |
+
:param info: Path parts of the egg-info directory relative to package root.
|
| 70 |
+
:returns: The converted entry.
|
| 71 |
+
|
| 72 |
+
For best compatibility with symlinks, this does not use ``abspath()`` or
|
| 73 |
+
``Path.resolve()``, but tries to work with path parts:
|
| 74 |
+
|
| 75 |
+
1. While ``entry`` starts with ``..``, remove the equal amounts of parts
|
| 76 |
+
from ``info``; if ``info`` is empty, start appending ``..`` instead.
|
| 77 |
+
2. Join the two directly.
|
| 78 |
+
"""
|
| 79 |
+
while entry and entry[0] == "..":
|
| 80 |
+
if not info or info[-1] == "..":
|
| 81 |
+
info += ("..",)
|
| 82 |
+
else:
|
| 83 |
+
info = info[:-1]
|
| 84 |
+
entry = entry[1:]
|
| 85 |
+
return str(pathlib.Path(*info, *entry))
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
class RequiresEntry(NamedTuple):
|
| 89 |
+
requirement: str
|
| 90 |
+
extra: str
|
| 91 |
+
marker: str
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
class BaseDistribution(Protocol):
|
| 95 |
+
@classmethod
|
| 96 |
+
def from_directory(cls, directory: str) -> BaseDistribution:
|
| 97 |
+
"""Load the distribution from a metadata directory.
|
| 98 |
+
|
| 99 |
+
:param directory: Path to a metadata directory, e.g. ``.dist-info``.
|
| 100 |
+
"""
|
| 101 |
+
raise NotImplementedError()
|
| 102 |
+
|
| 103 |
+
@classmethod
|
| 104 |
+
def from_metadata_file_contents(
|
| 105 |
+
cls,
|
| 106 |
+
metadata_contents: bytes,
|
| 107 |
+
filename: str,
|
| 108 |
+
project_name: str,
|
| 109 |
+
) -> BaseDistribution:
|
| 110 |
+
"""Load the distribution from the contents of a METADATA file.
|
| 111 |
+
|
| 112 |
+
This is used to implement PEP 658 by generating a "shallow" dist object that can
|
| 113 |
+
be used for resolution without downloading or building the actual dist yet.
|
| 114 |
+
|
| 115 |
+
:param metadata_contents: The contents of a METADATA file.
|
| 116 |
+
:param filename: File name for the dist with this metadata.
|
| 117 |
+
:param project_name: Name of the project this dist represents.
|
| 118 |
+
"""
|
| 119 |
+
raise NotImplementedError()
|
| 120 |
+
|
| 121 |
+
@classmethod
|
| 122 |
+
def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution:
|
| 123 |
+
"""Load the distribution from a given wheel.
|
| 124 |
+
|
| 125 |
+
:param wheel: A concrete wheel definition.
|
| 126 |
+
:param name: File name of the wheel.
|
| 127 |
+
|
| 128 |
+
:raises InvalidWheel: Whenever loading of the wheel causes a
|
| 129 |
+
:py:exc:`zipfile.BadZipFile` exception to be thrown.
|
| 130 |
+
:raises UnsupportedWheel: If the wheel is a valid zip, but malformed
|
| 131 |
+
internally.
|
| 132 |
+
"""
|
| 133 |
+
raise NotImplementedError()
|
| 134 |
+
|
| 135 |
+
def __repr__(self) -> str:
|
| 136 |
+
return f"{self.raw_name} {self.raw_version} ({self.location})"
|
| 137 |
+
|
| 138 |
+
def __str__(self) -> str:
|
| 139 |
+
return f"{self.raw_name} {self.raw_version}"
|
| 140 |
+
|
| 141 |
+
@property
|
| 142 |
+
def location(self) -> str | None:
|
| 143 |
+
"""Where the distribution is loaded from.
|
| 144 |
+
|
| 145 |
+
A string value is not necessarily a filesystem path, since distributions
|
| 146 |
+
can be loaded from other sources, e.g. arbitrary zip archives. ``None``
|
| 147 |
+
means the distribution is created in-memory.
|
| 148 |
+
|
| 149 |
+
Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If
|
| 150 |
+
this is a symbolic link, we want to preserve the relative path between
|
| 151 |
+
it and files in the distribution.
|
| 152 |
+
"""
|
| 153 |
+
raise NotImplementedError()
|
| 154 |
+
|
| 155 |
+
@property
|
| 156 |
+
def editable_project_location(self) -> str | None:
|
| 157 |
+
"""The project location for editable distributions.
|
| 158 |
+
|
| 159 |
+
This is the directory where pyproject.toml or setup.py is located.
|
| 160 |
+
None if the distribution is not installed in editable mode.
|
| 161 |
+
"""
|
| 162 |
+
# TODO: this property is relatively costly to compute, memoize it ?
|
| 163 |
+
direct_url = self.direct_url
|
| 164 |
+
if direct_url:
|
| 165 |
+
if direct_url.is_local_editable():
|
| 166 |
+
return url_to_path(direct_url.url)
|
| 167 |
+
else:
|
| 168 |
+
# Search for an .egg-link file by walking sys.path, as it was
|
| 169 |
+
# done before by dist_is_editable().
|
| 170 |
+
egg_link_path = egg_link_path_from_sys_path(self.raw_name)
|
| 171 |
+
if egg_link_path:
|
| 172 |
+
# TODO: get project location from second line of egg_link file
|
| 173 |
+
# (https://github.com/pypa/pip/issues/10243)
|
| 174 |
+
return self.location
|
| 175 |
+
return None
|
| 176 |
+
|
| 177 |
+
@property
|
| 178 |
+
def installed_location(self) -> str | None:
|
| 179 |
+
"""The distribution's "installed" location.
|
| 180 |
+
|
| 181 |
+
This should generally be a ``site-packages`` directory. This is
|
| 182 |
+
usually ``dist.location``, except for legacy develop-installed packages,
|
| 183 |
+
where ``dist.location`` is the source code location, and this is where
|
| 184 |
+
the ``.egg-link`` file is.
|
| 185 |
+
|
| 186 |
+
The returned location is normalized (in particular, with symlinks removed).
|
| 187 |
+
"""
|
| 188 |
+
raise NotImplementedError()
|
| 189 |
+
|
| 190 |
+
@property
|
| 191 |
+
def info_location(self) -> str | None:
|
| 192 |
+
"""Location of the .[egg|dist]-info directory or file.
|
| 193 |
+
|
| 194 |
+
Similarly to ``location``, a string value is not necessarily a
|
| 195 |
+
filesystem path. ``None`` means the distribution is created in-memory.
|
| 196 |
+
|
| 197 |
+
For a modern .dist-info installation on disk, this should be something
|
| 198 |
+
like ``{location}/{raw_name}-{version}.dist-info``.
|
| 199 |
+
|
| 200 |
+
Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If
|
| 201 |
+
this is a symbolic link, we want to preserve the relative path between
|
| 202 |
+
it and other files in the distribution.
|
| 203 |
+
"""
|
| 204 |
+
raise NotImplementedError()
|
| 205 |
+
|
| 206 |
+
@property
|
| 207 |
+
def installed_by_distutils(self) -> bool:
|
| 208 |
+
"""Whether this distribution is installed with legacy distutils format.
|
| 209 |
+
|
| 210 |
+
A distribution installed with "raw" distutils not patched by setuptools
|
| 211 |
+
uses one single file at ``info_location`` to store metadata. We need to
|
| 212 |
+
treat this specially on uninstallation.
|
| 213 |
+
"""
|
| 214 |
+
info_location = self.info_location
|
| 215 |
+
if not info_location:
|
| 216 |
+
return False
|
| 217 |
+
return pathlib.Path(info_location).is_file()
|
| 218 |
+
|
| 219 |
+
@property
|
| 220 |
+
def installed_as_egg(self) -> bool:
|
| 221 |
+
"""Whether this distribution is installed as an egg.
|
| 222 |
+
|
| 223 |
+
This usually indicates the distribution was installed by (older versions
|
| 224 |
+
of) easy_install.
|
| 225 |
+
"""
|
| 226 |
+
location = self.location
|
| 227 |
+
if not location:
|
| 228 |
+
return False
|
| 229 |
+
# XXX if the distribution is a zipped egg, location has a trailing /
|
| 230 |
+
# so we resort to pathlib.Path to check the suffix in a reliable way.
|
| 231 |
+
return pathlib.Path(location).suffix == ".egg"
|
| 232 |
+
|
| 233 |
+
@property
|
| 234 |
+
def installed_with_setuptools_egg_info(self) -> bool:
|
| 235 |
+
"""Whether this distribution is installed with the ``.egg-info`` format.
|
| 236 |
+
|
| 237 |
+
This usually indicates the distribution was installed with setuptools
|
| 238 |
+
with an old pip version or with ``single-version-externally-managed``.
|
| 239 |
+
|
| 240 |
+
Note that this ensure the metadata store is a directory. distutils can
|
| 241 |
+
also installs an ``.egg-info``, but as a file, not a directory. This
|
| 242 |
+
property is *False* for that case. Also see ``installed_by_distutils``.
|
| 243 |
+
"""
|
| 244 |
+
info_location = self.info_location
|
| 245 |
+
if not info_location:
|
| 246 |
+
return False
|
| 247 |
+
if not info_location.endswith(".egg-info"):
|
| 248 |
+
return False
|
| 249 |
+
return pathlib.Path(info_location).is_dir()
|
| 250 |
+
|
| 251 |
+
@property
|
| 252 |
+
def installed_with_dist_info(self) -> bool:
|
| 253 |
+
"""Whether this distribution is installed with the "modern format".
|
| 254 |
+
|
| 255 |
+
This indicates a "modern" installation, e.g. storing metadata in the
|
| 256 |
+
``.dist-info`` directory. This applies to installations made by
|
| 257 |
+
setuptools (but through pip, not directly), or anything using the
|
| 258 |
+
standardized build backend interface (PEP 517).
|
| 259 |
+
"""
|
| 260 |
+
info_location = self.info_location
|
| 261 |
+
if not info_location:
|
| 262 |
+
return False
|
| 263 |
+
if not info_location.endswith(".dist-info"):
|
| 264 |
+
return False
|
| 265 |
+
return pathlib.Path(info_location).is_dir()
|
| 266 |
+
|
| 267 |
+
@property
|
| 268 |
+
def canonical_name(self) -> NormalizedName:
|
| 269 |
+
raise NotImplementedError()
|
| 270 |
+
|
| 271 |
+
@property
|
| 272 |
+
def version(self) -> Version:
|
| 273 |
+
raise NotImplementedError()
|
| 274 |
+
|
| 275 |
+
@property
|
| 276 |
+
def raw_version(self) -> str:
|
| 277 |
+
raise NotImplementedError()
|
| 278 |
+
|
| 279 |
+
@property
|
| 280 |
+
def setuptools_filename(self) -> str:
|
| 281 |
+
"""Convert a project name to its setuptools-compatible filename.
|
| 282 |
+
|
| 283 |
+
This is a copy of ``pkg_resources.to_filename()`` for compatibility.
|
| 284 |
+
"""
|
| 285 |
+
return self.raw_name.replace("-", "_")
|
| 286 |
+
|
| 287 |
+
@property
|
| 288 |
+
def direct_url(self) -> DirectUrl | None:
|
| 289 |
+
"""Obtain a DirectUrl from this distribution.
|
| 290 |
+
|
| 291 |
+
Returns None if the distribution has no `direct_url.json` metadata,
|
| 292 |
+
or if `direct_url.json` is invalid.
|
| 293 |
+
"""
|
| 294 |
+
try:
|
| 295 |
+
content = self.read_text(DIRECT_URL_METADATA_NAME)
|
| 296 |
+
except FileNotFoundError:
|
| 297 |
+
return None
|
| 298 |
+
try:
|
| 299 |
+
return DirectUrl.from_json(content)
|
| 300 |
+
except (
|
| 301 |
+
UnicodeDecodeError,
|
| 302 |
+
json.JSONDecodeError,
|
| 303 |
+
DirectUrlValidationError,
|
| 304 |
+
) as e:
|
| 305 |
+
logger.warning(
|
| 306 |
+
"Error parsing %s for %s: %s",
|
| 307 |
+
DIRECT_URL_METADATA_NAME,
|
| 308 |
+
self.canonical_name,
|
| 309 |
+
e,
|
| 310 |
+
)
|
| 311 |
+
return None
|
| 312 |
+
|
| 313 |
+
@property
|
| 314 |
+
def installer(self) -> str:
|
| 315 |
+
try:
|
| 316 |
+
installer_text = self.read_text("INSTALLER")
|
| 317 |
+
except (OSError, ValueError, NoneMetadataError):
|
| 318 |
+
return "" # Fail silently if the installer file cannot be read.
|
| 319 |
+
for line in installer_text.splitlines():
|
| 320 |
+
cleaned_line = line.strip()
|
| 321 |
+
if cleaned_line:
|
| 322 |
+
return cleaned_line
|
| 323 |
+
return ""
|
| 324 |
+
|
| 325 |
+
@property
|
| 326 |
+
def requested(self) -> bool:
|
| 327 |
+
return self.is_file("REQUESTED")
|
| 328 |
+
|
| 329 |
+
@property
|
| 330 |
+
def editable(self) -> bool:
|
| 331 |
+
return bool(self.editable_project_location)
|
| 332 |
+
|
| 333 |
+
@property
|
| 334 |
+
def local(self) -> bool:
|
| 335 |
+
"""If distribution is installed in the current virtual environment.
|
| 336 |
+
|
| 337 |
+
Always True if we're not in a virtualenv.
|
| 338 |
+
"""
|
| 339 |
+
if self.installed_location is None:
|
| 340 |
+
return False
|
| 341 |
+
return is_local(self.installed_location)
|
| 342 |
+
|
| 343 |
+
@property
|
| 344 |
+
def in_usersite(self) -> bool:
|
| 345 |
+
if self.installed_location is None or user_site is None:
|
| 346 |
+
return False
|
| 347 |
+
return self.installed_location.startswith(normalize_path(user_site))
|
| 348 |
+
|
| 349 |
+
@property
|
| 350 |
+
def in_site_packages(self) -> bool:
|
| 351 |
+
if self.installed_location is None or site_packages is None:
|
| 352 |
+
return False
|
| 353 |
+
return self.installed_location.startswith(normalize_path(site_packages))
|
| 354 |
+
|
| 355 |
+
def is_file(self, path: InfoPath) -> bool:
|
| 356 |
+
"""Check whether an entry in the info directory is a file."""
|
| 357 |
+
raise NotImplementedError()
|
| 358 |
+
|
| 359 |
+
def iter_distutils_script_names(self) -> Iterator[str]:
|
| 360 |
+
"""Find distutils 'scripts' entries metadata.
|
| 361 |
+
|
| 362 |
+
If 'scripts' is supplied in ``setup.py``, distutils records those in the
|
| 363 |
+
installed distribution's ``scripts`` directory, a file for each script.
|
| 364 |
+
"""
|
| 365 |
+
raise NotImplementedError()
|
| 366 |
+
|
| 367 |
+
def read_text(self, path: InfoPath) -> str:
|
| 368 |
+
"""Read a file in the info directory.
|
| 369 |
+
|
| 370 |
+
:raise FileNotFoundError: If ``path`` does not exist in the directory.
|
| 371 |
+
:raise NoneMetadataError: If ``path`` exists in the info directory, but
|
| 372 |
+
cannot be read.
|
| 373 |
+
"""
|
| 374 |
+
raise NotImplementedError()
|
| 375 |
+
|
| 376 |
+
def iter_entry_points(self) -> Iterable[BaseEntryPoint]:
|
| 377 |
+
raise NotImplementedError()
|
| 378 |
+
|
| 379 |
+
def _metadata_impl(self) -> email.message.Message:
|
| 380 |
+
raise NotImplementedError()
|
| 381 |
+
|
| 382 |
+
@functools.cached_property
|
| 383 |
+
def metadata(self) -> email.message.Message:
|
| 384 |
+
"""Metadata of distribution parsed from e.g. METADATA or PKG-INFO.
|
| 385 |
+
|
| 386 |
+
This should return an empty message if the metadata file is unavailable.
|
| 387 |
+
|
| 388 |
+
:raises NoneMetadataError: If the metadata file is available, but does
|
| 389 |
+
not contain valid metadata.
|
| 390 |
+
"""
|
| 391 |
+
metadata = self._metadata_impl()
|
| 392 |
+
self._add_egg_info_requires(metadata)
|
| 393 |
+
return metadata
|
| 394 |
+
|
| 395 |
+
@property
|
| 396 |
+
def metadata_dict(self) -> dict[str, Any]:
|
| 397 |
+
"""PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO.
|
| 398 |
+
|
| 399 |
+
This should return an empty dict if the metadata file is unavailable.
|
| 400 |
+
|
| 401 |
+
:raises NoneMetadataError: If the metadata file is available, but does
|
| 402 |
+
not contain valid metadata.
|
| 403 |
+
"""
|
| 404 |
+
return msg_to_json(self.metadata)
|
| 405 |
+
|
| 406 |
+
@property
|
| 407 |
+
def metadata_version(self) -> str | None:
|
| 408 |
+
"""Value of "Metadata-Version:" in distribution metadata, if available."""
|
| 409 |
+
return self.metadata.get("Metadata-Version")
|
| 410 |
+
|
| 411 |
+
@property
|
| 412 |
+
def raw_name(self) -> str:
|
| 413 |
+
"""Value of "Name:" in distribution metadata."""
|
| 414 |
+
# The metadata should NEVER be missing the Name: key, but if it somehow
|
| 415 |
+
# does, fall back to the known canonical name.
|
| 416 |
+
return self.metadata.get("Name", self.canonical_name)
|
| 417 |
+
|
| 418 |
+
@property
|
| 419 |
+
def requires_python(self) -> SpecifierSet:
|
| 420 |
+
"""Value of "Requires-Python:" in distribution metadata.
|
| 421 |
+
|
| 422 |
+
If the key does not exist or contains an invalid value, an empty
|
| 423 |
+
SpecifierSet should be returned.
|
| 424 |
+
"""
|
| 425 |
+
value = self.metadata.get("Requires-Python")
|
| 426 |
+
if value is None:
|
| 427 |
+
return SpecifierSet()
|
| 428 |
+
try:
|
| 429 |
+
# Convert to str to satisfy the type checker; this can be a Header object.
|
| 430 |
+
spec = SpecifierSet(str(value))
|
| 431 |
+
except InvalidSpecifier as e:
|
| 432 |
+
message = "Package %r has an invalid Requires-Python: %s"
|
| 433 |
+
logger.warning(message, self.raw_name, e)
|
| 434 |
+
return SpecifierSet()
|
| 435 |
+
return spec
|
| 436 |
+
|
| 437 |
+
def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]:
|
| 438 |
+
"""Dependencies of this distribution.
|
| 439 |
+
|
| 440 |
+
For modern .dist-info distributions, this is the collection of
|
| 441 |
+
"Requires-Dist:" entries in distribution metadata.
|
| 442 |
+
"""
|
| 443 |
+
raise NotImplementedError()
|
| 444 |
+
|
| 445 |
+
def iter_raw_dependencies(self) -> Iterable[str]:
|
| 446 |
+
"""Raw Requires-Dist metadata."""
|
| 447 |
+
return self.metadata.get_all("Requires-Dist", [])
|
| 448 |
+
|
| 449 |
+
def iter_provided_extras(self) -> Iterable[NormalizedName]:
|
| 450 |
+
"""Extras provided by this distribution.
|
| 451 |
+
|
| 452 |
+
For modern .dist-info distributions, this is the collection of
|
| 453 |
+
"Provides-Extra:" entries in distribution metadata.
|
| 454 |
+
|
| 455 |
+
The return value of this function is expected to be normalised names,
|
| 456 |
+
per PEP 685, with the returned value being handled appropriately by
|
| 457 |
+
`iter_dependencies`.
|
| 458 |
+
"""
|
| 459 |
+
raise NotImplementedError()
|
| 460 |
+
|
| 461 |
+
def _iter_declared_entries_from_record(self) -> Iterator[str] | None:
|
| 462 |
+
try:
|
| 463 |
+
text = self.read_text("RECORD")
|
| 464 |
+
except FileNotFoundError:
|
| 465 |
+
return None
|
| 466 |
+
# This extra Path-str cast normalizes entries.
|
| 467 |
+
return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines()))
|
| 468 |
+
|
| 469 |
+
def _iter_declared_entries_from_legacy(self) -> Iterator[str] | None:
|
| 470 |
+
try:
|
| 471 |
+
text = self.read_text("installed-files.txt")
|
| 472 |
+
except FileNotFoundError:
|
| 473 |
+
return None
|
| 474 |
+
paths = (p for p in text.splitlines(keepends=False) if p)
|
| 475 |
+
root = self.location
|
| 476 |
+
info = self.info_location
|
| 477 |
+
if root is None or info is None:
|
| 478 |
+
return paths
|
| 479 |
+
try:
|
| 480 |
+
info_rel = pathlib.Path(info).relative_to(root)
|
| 481 |
+
except ValueError: # info is not relative to root.
|
| 482 |
+
return paths
|
| 483 |
+
if not info_rel.parts: # info *is* root.
|
| 484 |
+
return paths
|
| 485 |
+
return (
|
| 486 |
+
_convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts)
|
| 487 |
+
for p in paths
|
| 488 |
+
)
|
| 489 |
+
|
| 490 |
+
def iter_declared_entries(self) -> Iterator[str] | None:
|
| 491 |
+
"""Iterate through file entries declared in this distribution.
|
| 492 |
+
|
| 493 |
+
For modern .dist-info distributions, this is the files listed in the
|
| 494 |
+
``RECORD`` metadata file. For legacy setuptools distributions, this
|
| 495 |
+
comes from ``installed-files.txt``, with entries normalized to be
|
| 496 |
+
compatible with the format used by ``RECORD``.
|
| 497 |
+
|
| 498 |
+
:return: An iterator for listed entries, or None if the distribution
|
| 499 |
+
contains neither ``RECORD`` nor ``installed-files.txt``.
|
| 500 |
+
"""
|
| 501 |
+
return (
|
| 502 |
+
self._iter_declared_entries_from_record()
|
| 503 |
+
or self._iter_declared_entries_from_legacy()
|
| 504 |
+
)
|
| 505 |
+
|
| 506 |
+
def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]:
|
| 507 |
+
"""Parse a ``requires.txt`` in an egg-info directory.
|
| 508 |
+
|
| 509 |
+
This is an INI-ish format where an egg-info stores dependencies. A
|
| 510 |
+
section name describes extra other environment markers, while each entry
|
| 511 |
+
is an arbitrary string (not a key-value pair) representing a dependency
|
| 512 |
+
as a requirement string (no markers).
|
| 513 |
+
|
| 514 |
+
There is a construct in ``importlib.metadata`` called ``Sectioned`` that
|
| 515 |
+
does mostly the same, but the format is currently considered private.
|
| 516 |
+
"""
|
| 517 |
+
try:
|
| 518 |
+
content = self.read_text("requires.txt")
|
| 519 |
+
except FileNotFoundError:
|
| 520 |
+
return
|
| 521 |
+
extra = marker = "" # Section-less entries don't have markers.
|
| 522 |
+
for line in content.splitlines():
|
| 523 |
+
line = line.strip()
|
| 524 |
+
if not line or line.startswith("#"): # Comment; ignored.
|
| 525 |
+
continue
|
| 526 |
+
if line.startswith("[") and line.endswith("]"): # A section header.
|
| 527 |
+
extra, _, marker = line.strip("[]").partition(":")
|
| 528 |
+
continue
|
| 529 |
+
yield RequiresEntry(requirement=line, extra=extra, marker=marker)
|
| 530 |
+
|
| 531 |
+
def _iter_egg_info_extras(self) -> Iterable[str]:
|
| 532 |
+
"""Get extras from the egg-info directory."""
|
| 533 |
+
known_extras = {""}
|
| 534 |
+
for entry in self._iter_requires_txt_entries():
|
| 535 |
+
extra = canonicalize_name(entry.extra)
|
| 536 |
+
if extra in known_extras:
|
| 537 |
+
continue
|
| 538 |
+
known_extras.add(extra)
|
| 539 |
+
yield extra
|
| 540 |
+
|
| 541 |
+
def _iter_egg_info_dependencies(self) -> Iterable[str]:
|
| 542 |
+
"""Get distribution dependencies from the egg-info directory.
|
| 543 |
+
|
| 544 |
+
To ease parsing, this converts a legacy dependency entry into a PEP 508
|
| 545 |
+
requirement string. Like ``_iter_requires_txt_entries()``, there is code
|
| 546 |
+
in ``importlib.metadata`` that does mostly the same, but not do exactly
|
| 547 |
+
what we need.
|
| 548 |
+
|
| 549 |
+
Namely, ``importlib.metadata`` does not normalize the extra name before
|
| 550 |
+
putting it into the requirement string, which causes marker comparison
|
| 551 |
+
to fail because the dist-info format do normalize. This is consistent in
|
| 552 |
+
all currently available PEP 517 backends, although not standardized.
|
| 553 |
+
"""
|
| 554 |
+
for entry in self._iter_requires_txt_entries():
|
| 555 |
+
extra = canonicalize_name(entry.extra)
|
| 556 |
+
if extra and entry.marker:
|
| 557 |
+
marker = f'({entry.marker}) and extra == "{extra}"'
|
| 558 |
+
elif extra:
|
| 559 |
+
marker = f'extra == "{extra}"'
|
| 560 |
+
elif entry.marker:
|
| 561 |
+
marker = entry.marker
|
| 562 |
+
else:
|
| 563 |
+
marker = ""
|
| 564 |
+
if marker:
|
| 565 |
+
yield f"{entry.requirement} ; {marker}"
|
| 566 |
+
else:
|
| 567 |
+
yield entry.requirement
|
| 568 |
+
|
| 569 |
+
def _add_egg_info_requires(self, metadata: email.message.Message) -> None:
|
| 570 |
+
"""Add egg-info requires.txt information to the metadata."""
|
| 571 |
+
if not metadata.get_all("Requires-Dist"):
|
| 572 |
+
for dep in self._iter_egg_info_dependencies():
|
| 573 |
+
metadata["Requires-Dist"] = dep
|
| 574 |
+
if not metadata.get_all("Provides-Extra"):
|
| 575 |
+
for extra in self._iter_egg_info_extras():
|
| 576 |
+
metadata["Provides-Extra"] = extra
|
| 577 |
+
|
| 578 |
+
|
| 579 |
+
class BaseEnvironment:
|
| 580 |
+
"""An environment containing distributions to introspect."""
|
| 581 |
+
|
| 582 |
+
@classmethod
|
| 583 |
+
def default(cls) -> BaseEnvironment:
|
| 584 |
+
raise NotImplementedError()
|
| 585 |
+
|
| 586 |
+
@classmethod
|
| 587 |
+
def from_paths(cls, paths: list[str] | None) -> BaseEnvironment:
|
| 588 |
+
raise NotImplementedError()
|
| 589 |
+
|
| 590 |
+
def get_distribution(self, name: str) -> BaseDistribution | None:
|
| 591 |
+
"""Given a requirement name, return the installed distributions.
|
| 592 |
+
|
| 593 |
+
The name may not be normalized. The implementation must canonicalize
|
| 594 |
+
it for lookup.
|
| 595 |
+
"""
|
| 596 |
+
raise NotImplementedError()
|
| 597 |
+
|
| 598 |
+
def _iter_distributions(self) -> Iterator[BaseDistribution]:
|
| 599 |
+
"""Iterate through installed distributions.
|
| 600 |
+
|
| 601 |
+
This function should be implemented by subclass, but never called
|
| 602 |
+
directly. Use the public ``iter_distribution()`` instead, which
|
| 603 |
+
implements additional logic to make sure the distributions are valid.
|
| 604 |
+
"""
|
| 605 |
+
raise NotImplementedError()
|
| 606 |
+
|
| 607 |
+
def iter_all_distributions(self) -> Iterator[BaseDistribution]:
|
| 608 |
+
"""Iterate through all installed distributions without any filtering."""
|
| 609 |
+
for dist in self._iter_distributions():
|
| 610 |
+
# Make sure the distribution actually comes from a valid Python
|
| 611 |
+
# packaging distribution. Pip's AdjacentTempDirectory leaves folders
|
| 612 |
+
# e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The
|
| 613 |
+
# valid project name pattern is taken from PEP 508.
|
| 614 |
+
project_name_valid = re.match(
|
| 615 |
+
r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$",
|
| 616 |
+
dist.canonical_name,
|
| 617 |
+
flags=re.IGNORECASE,
|
| 618 |
+
)
|
| 619 |
+
if not project_name_valid:
|
| 620 |
+
logger.warning(
|
| 621 |
+
"Ignoring invalid distribution %s (%s)",
|
| 622 |
+
dist.canonical_name,
|
| 623 |
+
dist.location,
|
| 624 |
+
)
|
| 625 |
+
continue
|
| 626 |
+
yield dist
|
| 627 |
+
|
| 628 |
+
def iter_installed_distributions(
|
| 629 |
+
self,
|
| 630 |
+
local_only: bool = True,
|
| 631 |
+
skip: Container[str] = stdlib_pkgs,
|
| 632 |
+
include_editables: bool = True,
|
| 633 |
+
editables_only: bool = False,
|
| 634 |
+
user_only: bool = False,
|
| 635 |
+
) -> Iterator[BaseDistribution]:
|
| 636 |
+
"""Return a list of installed distributions.
|
| 637 |
+
|
| 638 |
+
This is based on ``iter_all_distributions()`` with additional filtering
|
| 639 |
+
options. Note that ``iter_installed_distributions()`` without arguments
|
| 640 |
+
is *not* equal to ``iter_all_distributions()``, since some of the
|
| 641 |
+
configurations exclude packages by default.
|
| 642 |
+
|
| 643 |
+
:param local_only: If True (default), only return installations
|
| 644 |
+
local to the current virtualenv, if in a virtualenv.
|
| 645 |
+
:param skip: An iterable of canonicalized project names to ignore;
|
| 646 |
+
defaults to ``stdlib_pkgs``.
|
| 647 |
+
:param include_editables: If False, don't report editables.
|
| 648 |
+
:param editables_only: If True, only report editables.
|
| 649 |
+
:param user_only: If True, only report installations in the user
|
| 650 |
+
site directory.
|
| 651 |
+
"""
|
| 652 |
+
it = self.iter_all_distributions()
|
| 653 |
+
if local_only:
|
| 654 |
+
it = (d for d in it if d.local)
|
| 655 |
+
if not include_editables:
|
| 656 |
+
it = (d for d in it if not d.editable)
|
| 657 |
+
if editables_only:
|
| 658 |
+
it = (d for d in it if d.editable)
|
| 659 |
+
if user_only:
|
| 660 |
+
it = (d for d in it if d.in_usersite)
|
| 661 |
+
return (d for d in it if d.canonical_name not in skip)
|
| 662 |
+
|
| 663 |
+
|
| 664 |
+
class Wheel(Protocol):
|
| 665 |
+
location: str
|
| 666 |
+
|
| 667 |
+
def as_zipfile(self) -> zipfile.ZipFile:
|
| 668 |
+
raise NotImplementedError()
|
| 669 |
+
|
| 670 |
+
|
| 671 |
+
class FilesystemWheel(Wheel):
|
| 672 |
+
def __init__(self, location: str) -> None:
|
| 673 |
+
self.location = location
|
| 674 |
+
|
| 675 |
+
def as_zipfile(self) -> zipfile.ZipFile:
|
| 676 |
+
return zipfile.ZipFile(self.location, allowZip64=True)
|
| 677 |
+
|
| 678 |
+
|
| 679 |
+
class MemoryWheel(Wheel):
|
| 680 |
+
def __init__(self, location: str, stream: IO[bytes]) -> None:
|
| 681 |
+
self.location = location
|
| 682 |
+
self.stream = stream
|
| 683 |
+
|
| 684 |
+
def as_zipfile(self) -> zipfile.ZipFile:
|
| 685 |
+
return zipfile.ZipFile(self.stream, allowZip64=True)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/__init__.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from ._dists import Distribution
|
| 2 |
+
from ._envs import Environment
|
| 3 |
+
|
| 4 |
+
__all__ = ["NAME", "Distribution", "Environment"]
|
| 5 |
+
|
| 6 |
+
NAME = "importlib"
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/_compat.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import importlib.metadata
|
| 4 |
+
import os
|
| 5 |
+
from typing import Any, Protocol, cast
|
| 6 |
+
|
| 7 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
class BadMetadata(ValueError):
|
| 11 |
+
def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> None:
|
| 12 |
+
self.dist = dist
|
| 13 |
+
self.reason = reason
|
| 14 |
+
|
| 15 |
+
def __str__(self) -> str:
|
| 16 |
+
return f"Bad metadata in {self.dist} ({self.reason})"
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
class BasePath(Protocol):
|
| 20 |
+
"""A protocol that various path objects conform.
|
| 21 |
+
|
| 22 |
+
This exists because importlib.metadata uses both ``pathlib.Path`` and
|
| 23 |
+
``zipfile.Path``, and we need a common base for type hints (Union does not
|
| 24 |
+
work well since ``zipfile.Path`` is too new for our linter setup).
|
| 25 |
+
|
| 26 |
+
This does not mean to be exhaustive, but only contains things that present
|
| 27 |
+
in both classes *that we need*.
|
| 28 |
+
"""
|
| 29 |
+
|
| 30 |
+
@property
|
| 31 |
+
def name(self) -> str:
|
| 32 |
+
raise NotImplementedError()
|
| 33 |
+
|
| 34 |
+
@property
|
| 35 |
+
def parent(self) -> BasePath:
|
| 36 |
+
raise NotImplementedError()
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
def get_info_location(d: importlib.metadata.Distribution) -> BasePath | None:
|
| 40 |
+
"""Find the path to the distribution's metadata directory.
|
| 41 |
+
|
| 42 |
+
HACK: This relies on importlib.metadata's private ``_path`` attribute. Not
|
| 43 |
+
all distributions exist on disk, so importlib.metadata is correct to not
|
| 44 |
+
expose the attribute as public. But pip's code base is old and not as clean,
|
| 45 |
+
so we do this to avoid having to rewrite too many things. Hopefully we can
|
| 46 |
+
eliminate this some day.
|
| 47 |
+
"""
|
| 48 |
+
return getattr(d, "_path", None)
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
def parse_name_and_version_from_info_directory(
|
| 52 |
+
dist: importlib.metadata.Distribution,
|
| 53 |
+
) -> tuple[str | None, str | None]:
|
| 54 |
+
"""Get a name and version from the metadata directory name.
|
| 55 |
+
|
| 56 |
+
This is much faster than reading distribution metadata.
|
| 57 |
+
"""
|
| 58 |
+
info_location = get_info_location(dist)
|
| 59 |
+
if info_location is None:
|
| 60 |
+
return None, None
|
| 61 |
+
|
| 62 |
+
stem, suffix = os.path.splitext(info_location.name)
|
| 63 |
+
if suffix == ".dist-info":
|
| 64 |
+
name, sep, version = stem.partition("-")
|
| 65 |
+
if sep:
|
| 66 |
+
return name, version
|
| 67 |
+
|
| 68 |
+
if suffix == ".egg-info":
|
| 69 |
+
name = stem.split("-", 1)[0]
|
| 70 |
+
return name, None
|
| 71 |
+
|
| 72 |
+
return None, None
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
def get_dist_canonical_name(dist: importlib.metadata.Distribution) -> NormalizedName:
|
| 76 |
+
"""Get the distribution's normalized name.
|
| 77 |
+
|
| 78 |
+
The ``name`` attribute is only available in Python 3.10 or later. We are
|
| 79 |
+
targeting exactly that, but Mypy does not know this.
|
| 80 |
+
"""
|
| 81 |
+
if name := parse_name_and_version_from_info_directory(dist)[0]:
|
| 82 |
+
return canonicalize_name(name)
|
| 83 |
+
|
| 84 |
+
name = cast(Any, dist).name
|
| 85 |
+
if not isinstance(name, str):
|
| 86 |
+
raise BadMetadata(dist, reason="invalid metadata entry 'name'")
|
| 87 |
+
return canonicalize_name(name)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/_dists.py
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import email.message
|
| 4 |
+
import importlib.metadata
|
| 5 |
+
import pathlib
|
| 6 |
+
import zipfile
|
| 7 |
+
from collections.abc import Collection, Iterable, Iterator, Mapping, Sequence
|
| 8 |
+
from os import PathLike
|
| 9 |
+
from typing import (
|
| 10 |
+
cast,
|
| 11 |
+
)
|
| 12 |
+
|
| 13 |
+
from pip._vendor.packaging.requirements import Requirement
|
| 14 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 15 |
+
from pip._vendor.packaging.version import Version
|
| 16 |
+
from pip._vendor.packaging.version import parse as parse_version
|
| 17 |
+
|
| 18 |
+
from pip._internal.exceptions import InvalidWheel, UnsupportedWheel
|
| 19 |
+
from pip._internal.metadata.base import (
|
| 20 |
+
BaseDistribution,
|
| 21 |
+
BaseEntryPoint,
|
| 22 |
+
InfoPath,
|
| 23 |
+
Wheel,
|
| 24 |
+
)
|
| 25 |
+
from pip._internal.utils.misc import normalize_path
|
| 26 |
+
from pip._internal.utils.packaging import get_requirement
|
| 27 |
+
from pip._internal.utils.temp_dir import TempDirectory
|
| 28 |
+
from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file
|
| 29 |
+
|
| 30 |
+
from ._compat import (
|
| 31 |
+
BadMetadata,
|
| 32 |
+
BasePath,
|
| 33 |
+
get_dist_canonical_name,
|
| 34 |
+
parse_name_and_version_from_info_directory,
|
| 35 |
+
)
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
class WheelDistribution(importlib.metadata.Distribution):
|
| 39 |
+
"""An ``importlib.metadata.Distribution`` read from a wheel.
|
| 40 |
+
|
| 41 |
+
Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``,
|
| 42 |
+
its implementation is too "lazy" for pip's needs (we can't keep the ZipFile
|
| 43 |
+
handle open for the entire lifetime of the distribution object).
|
| 44 |
+
|
| 45 |
+
This implementation eagerly reads the entire metadata directory into the
|
| 46 |
+
memory instead, and operates from that.
|
| 47 |
+
"""
|
| 48 |
+
|
| 49 |
+
def __init__(
|
| 50 |
+
self,
|
| 51 |
+
files: Mapping[pathlib.PurePosixPath, bytes],
|
| 52 |
+
info_location: pathlib.PurePosixPath,
|
| 53 |
+
) -> None:
|
| 54 |
+
self._files = files
|
| 55 |
+
self.info_location = info_location
|
| 56 |
+
|
| 57 |
+
@classmethod
|
| 58 |
+
def from_zipfile(
|
| 59 |
+
cls,
|
| 60 |
+
zf: zipfile.ZipFile,
|
| 61 |
+
name: str,
|
| 62 |
+
location: str,
|
| 63 |
+
) -> WheelDistribution:
|
| 64 |
+
info_dir, _ = parse_wheel(zf, name)
|
| 65 |
+
paths = (
|
| 66 |
+
(name, pathlib.PurePosixPath(name.split("/", 1)[-1]))
|
| 67 |
+
for name in zf.namelist()
|
| 68 |
+
if name.startswith(f"{info_dir}/")
|
| 69 |
+
)
|
| 70 |
+
files = {
|
| 71 |
+
relpath: read_wheel_metadata_file(zf, fullpath)
|
| 72 |
+
for fullpath, relpath in paths
|
| 73 |
+
}
|
| 74 |
+
info_location = pathlib.PurePosixPath(location, info_dir)
|
| 75 |
+
return cls(files, info_location)
|
| 76 |
+
|
| 77 |
+
def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]:
|
| 78 |
+
# Only allow iterating through the metadata directory.
|
| 79 |
+
if pathlib.PurePosixPath(str(path)) in self._files:
|
| 80 |
+
return iter(self._files)
|
| 81 |
+
raise FileNotFoundError(path)
|
| 82 |
+
|
| 83 |
+
def read_text(self, filename: str) -> str | None:
|
| 84 |
+
try:
|
| 85 |
+
data = self._files[pathlib.PurePosixPath(filename)]
|
| 86 |
+
except KeyError:
|
| 87 |
+
return None
|
| 88 |
+
try:
|
| 89 |
+
text = data.decode("utf-8")
|
| 90 |
+
except UnicodeDecodeError as e:
|
| 91 |
+
wheel = self.info_location.parent
|
| 92 |
+
error = f"Error decoding metadata for {wheel}: {e} in {filename} file"
|
| 93 |
+
raise UnsupportedWheel(error)
|
| 94 |
+
return text
|
| 95 |
+
|
| 96 |
+
def locate_file(self, path: str | PathLike[str]) -> pathlib.Path:
|
| 97 |
+
# This method doesn't make sense for our in-memory wheel, but the API
|
| 98 |
+
# requires us to define it.
|
| 99 |
+
raise NotImplementedError
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
class Distribution(BaseDistribution):
|
| 103 |
+
def __init__(
|
| 104 |
+
self,
|
| 105 |
+
dist: importlib.metadata.Distribution,
|
| 106 |
+
info_location: BasePath | None,
|
| 107 |
+
installed_location: BasePath | None,
|
| 108 |
+
) -> None:
|
| 109 |
+
self._dist = dist
|
| 110 |
+
self._info_location = info_location
|
| 111 |
+
self._installed_location = installed_location
|
| 112 |
+
|
| 113 |
+
@classmethod
|
| 114 |
+
def from_directory(cls, directory: str) -> BaseDistribution:
|
| 115 |
+
info_location = pathlib.Path(directory)
|
| 116 |
+
dist = importlib.metadata.Distribution.at(info_location)
|
| 117 |
+
return cls(dist, info_location, info_location.parent)
|
| 118 |
+
|
| 119 |
+
@classmethod
|
| 120 |
+
def from_metadata_file_contents(
|
| 121 |
+
cls,
|
| 122 |
+
metadata_contents: bytes,
|
| 123 |
+
filename: str,
|
| 124 |
+
project_name: str,
|
| 125 |
+
) -> BaseDistribution:
|
| 126 |
+
# Generate temp dir to contain the metadata file, and write the file contents.
|
| 127 |
+
temp_dir = pathlib.Path(
|
| 128 |
+
TempDirectory(kind="metadata", globally_managed=True).path
|
| 129 |
+
)
|
| 130 |
+
metadata_path = temp_dir / "METADATA"
|
| 131 |
+
metadata_path.write_bytes(metadata_contents)
|
| 132 |
+
# Construct dist pointing to the newly created directory.
|
| 133 |
+
dist = importlib.metadata.Distribution.at(metadata_path.parent)
|
| 134 |
+
return cls(dist, metadata_path.parent, None)
|
| 135 |
+
|
| 136 |
+
@classmethod
|
| 137 |
+
def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution:
|
| 138 |
+
try:
|
| 139 |
+
with wheel.as_zipfile() as zf:
|
| 140 |
+
dist = WheelDistribution.from_zipfile(zf, name, wheel.location)
|
| 141 |
+
except zipfile.BadZipFile as e:
|
| 142 |
+
raise InvalidWheel(wheel.location, name) from e
|
| 143 |
+
return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location))
|
| 144 |
+
|
| 145 |
+
@property
|
| 146 |
+
def location(self) -> str | None:
|
| 147 |
+
if self._info_location is None:
|
| 148 |
+
return None
|
| 149 |
+
return str(self._info_location.parent)
|
| 150 |
+
|
| 151 |
+
@property
|
| 152 |
+
def info_location(self) -> str | None:
|
| 153 |
+
if self._info_location is None:
|
| 154 |
+
return None
|
| 155 |
+
return str(self._info_location)
|
| 156 |
+
|
| 157 |
+
@property
|
| 158 |
+
def installed_location(self) -> str | None:
|
| 159 |
+
if self._installed_location is None:
|
| 160 |
+
return None
|
| 161 |
+
return normalize_path(str(self._installed_location))
|
| 162 |
+
|
| 163 |
+
@property
|
| 164 |
+
def canonical_name(self) -> NormalizedName:
|
| 165 |
+
return get_dist_canonical_name(self._dist)
|
| 166 |
+
|
| 167 |
+
@property
|
| 168 |
+
def version(self) -> Version:
|
| 169 |
+
try:
|
| 170 |
+
version = (
|
| 171 |
+
parse_name_and_version_from_info_directory(self._dist)[1]
|
| 172 |
+
or self._dist.version
|
| 173 |
+
)
|
| 174 |
+
return parse_version(version)
|
| 175 |
+
except TypeError:
|
| 176 |
+
raise BadMetadata(self._dist, reason="invalid metadata entry `version`")
|
| 177 |
+
|
| 178 |
+
@property
|
| 179 |
+
def raw_version(self) -> str:
|
| 180 |
+
return self._dist.version
|
| 181 |
+
|
| 182 |
+
def is_file(self, path: InfoPath) -> bool:
|
| 183 |
+
return self._dist.read_text(str(path)) is not None
|
| 184 |
+
|
| 185 |
+
def iter_distutils_script_names(self) -> Iterator[str]:
|
| 186 |
+
# A distutils installation is always "flat" (not in e.g. egg form), so
|
| 187 |
+
# if this distribution's info location is NOT a pathlib.Path (but e.g.
|
| 188 |
+
# zipfile.Path), it can never contain any distutils scripts.
|
| 189 |
+
if not isinstance(self._info_location, pathlib.Path):
|
| 190 |
+
return
|
| 191 |
+
for child in self._info_location.joinpath("scripts").iterdir():
|
| 192 |
+
yield child.name
|
| 193 |
+
|
| 194 |
+
def read_text(self, path: InfoPath) -> str:
|
| 195 |
+
content = self._dist.read_text(str(path))
|
| 196 |
+
if content is None:
|
| 197 |
+
raise FileNotFoundError(path)
|
| 198 |
+
return content
|
| 199 |
+
|
| 200 |
+
def iter_entry_points(self) -> Iterable[BaseEntryPoint]:
|
| 201 |
+
# importlib.metadata's EntryPoint structure satisfies BaseEntryPoint.
|
| 202 |
+
return self._dist.entry_points
|
| 203 |
+
|
| 204 |
+
def _metadata_impl(self) -> email.message.Message:
|
| 205 |
+
# From Python 3.10+, importlib.metadata declares PackageMetadata as the
|
| 206 |
+
# return type. This protocol is unfortunately a disaster now and misses
|
| 207 |
+
# a ton of fields that we need, including get() and get_payload(). We
|
| 208 |
+
# rely on the implementation that the object is actually a Message now,
|
| 209 |
+
# until upstream can improve the protocol. (python/cpython#94952)
|
| 210 |
+
return cast(email.message.Message, self._dist.metadata)
|
| 211 |
+
|
| 212 |
+
def iter_provided_extras(self) -> Iterable[NormalizedName]:
|
| 213 |
+
return [
|
| 214 |
+
canonicalize_name(extra)
|
| 215 |
+
for extra in self.metadata.get_all("Provides-Extra", [])
|
| 216 |
+
]
|
| 217 |
+
|
| 218 |
+
def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]:
|
| 219 |
+
contexts: Sequence[dict[str, str]] = [{"extra": e} for e in extras]
|
| 220 |
+
for req_string in self.metadata.get_all("Requires-Dist", []):
|
| 221 |
+
# strip() because email.message.Message.get_all() may return a leading \n
|
| 222 |
+
# in case a long header was wrapped.
|
| 223 |
+
req = get_requirement(req_string.strip())
|
| 224 |
+
if not req.marker:
|
| 225 |
+
yield req
|
| 226 |
+
elif not extras and req.marker.evaluate({"extra": ""}):
|
| 227 |
+
yield req
|
| 228 |
+
elif any(req.marker.evaluate(context) for context in contexts):
|
| 229 |
+
yield req
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/importlib/_envs.py
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import importlib.metadata
|
| 4 |
+
import logging
|
| 5 |
+
import os
|
| 6 |
+
import pathlib
|
| 7 |
+
import sys
|
| 8 |
+
import zipfile
|
| 9 |
+
from collections.abc import Iterator, Sequence
|
| 10 |
+
from typing import Optional
|
| 11 |
+
|
| 12 |
+
from pip._vendor.packaging.utils import (
|
| 13 |
+
InvalidWheelFilename,
|
| 14 |
+
NormalizedName,
|
| 15 |
+
canonicalize_name,
|
| 16 |
+
parse_wheel_filename,
|
| 17 |
+
)
|
| 18 |
+
|
| 19 |
+
from pip._internal.metadata.base import BaseDistribution, BaseEnvironment
|
| 20 |
+
from pip._internal.utils.filetypes import WHEEL_EXTENSION
|
| 21 |
+
|
| 22 |
+
from ._compat import BadMetadata, BasePath, get_dist_canonical_name, get_info_location
|
| 23 |
+
from ._dists import Distribution
|
| 24 |
+
|
| 25 |
+
logger = logging.getLogger(__name__)
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def _looks_like_wheel(location: str) -> bool:
|
| 29 |
+
if not location.endswith(WHEEL_EXTENSION):
|
| 30 |
+
return False
|
| 31 |
+
if not os.path.isfile(location):
|
| 32 |
+
return False
|
| 33 |
+
try:
|
| 34 |
+
parse_wheel_filename(os.path.basename(location))
|
| 35 |
+
except InvalidWheelFilename:
|
| 36 |
+
return False
|
| 37 |
+
return zipfile.is_zipfile(location)
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
class _DistributionFinder:
|
| 41 |
+
"""Finder to locate distributions.
|
| 42 |
+
|
| 43 |
+
The main purpose of this class is to memoize found distributions' names, so
|
| 44 |
+
only one distribution is returned for each package name. At lot of pip code
|
| 45 |
+
assumes this (because it is setuptools's behavior), and not doing the same
|
| 46 |
+
can potentially cause a distribution in lower precedence path to override a
|
| 47 |
+
higher precedence one if the caller is not careful.
|
| 48 |
+
|
| 49 |
+
Eventually we probably want to make it possible to see lower precedence
|
| 50 |
+
installations as well. It's useful feature, after all.
|
| 51 |
+
"""
|
| 52 |
+
|
| 53 |
+
FoundResult = tuple[importlib.metadata.Distribution, Optional[BasePath]]
|
| 54 |
+
|
| 55 |
+
def __init__(self) -> None:
|
| 56 |
+
self._found_names: set[NormalizedName] = set()
|
| 57 |
+
|
| 58 |
+
def _find_impl(self, location: str) -> Iterator[FoundResult]:
|
| 59 |
+
"""Find distributions in a location."""
|
| 60 |
+
# Skip looking inside a wheel. Since a package inside a wheel is not
|
| 61 |
+
# always valid (due to .data directories etc.), its .dist-info entry
|
| 62 |
+
# should not be considered an installed distribution.
|
| 63 |
+
if _looks_like_wheel(location):
|
| 64 |
+
return
|
| 65 |
+
# To know exactly where we find a distribution, we have to feed in the
|
| 66 |
+
# paths one by one, instead of dumping the list to importlib.metadata.
|
| 67 |
+
for dist in importlib.metadata.distributions(path=[location]):
|
| 68 |
+
info_location = get_info_location(dist)
|
| 69 |
+
try:
|
| 70 |
+
name = get_dist_canonical_name(dist)
|
| 71 |
+
except BadMetadata as e:
|
| 72 |
+
logger.warning("Skipping %s due to %s", info_location, e.reason)
|
| 73 |
+
continue
|
| 74 |
+
if name in self._found_names:
|
| 75 |
+
continue
|
| 76 |
+
self._found_names.add(name)
|
| 77 |
+
yield dist, info_location
|
| 78 |
+
|
| 79 |
+
def find(self, location: str) -> Iterator[BaseDistribution]:
|
| 80 |
+
"""Find distributions in a location.
|
| 81 |
+
|
| 82 |
+
The path can be either a directory, or a ZIP archive.
|
| 83 |
+
"""
|
| 84 |
+
for dist, info_location in self._find_impl(location):
|
| 85 |
+
if info_location is None:
|
| 86 |
+
installed_location: BasePath | None = None
|
| 87 |
+
else:
|
| 88 |
+
installed_location = info_location.parent
|
| 89 |
+
yield Distribution(dist, info_location, installed_location)
|
| 90 |
+
|
| 91 |
+
def find_legacy_editables(self, location: str) -> Iterator[BaseDistribution]:
|
| 92 |
+
"""Read location in egg-link files and return distributions in there.
|
| 93 |
+
|
| 94 |
+
The path should be a directory; otherwise this returns nothing. This
|
| 95 |
+
follows how setuptools does this for compatibility. The first non-empty
|
| 96 |
+
line in the egg-link is read as a path (resolved against the egg-link's
|
| 97 |
+
containing directory if relative). Distributions found at that linked
|
| 98 |
+
location are returned.
|
| 99 |
+
"""
|
| 100 |
+
path = pathlib.Path(location)
|
| 101 |
+
if not path.is_dir():
|
| 102 |
+
return
|
| 103 |
+
for child in path.iterdir():
|
| 104 |
+
if child.suffix != ".egg-link":
|
| 105 |
+
continue
|
| 106 |
+
with child.open() as f:
|
| 107 |
+
lines = (line.strip() for line in f)
|
| 108 |
+
target_rel = next((line for line in lines if line), "")
|
| 109 |
+
if not target_rel:
|
| 110 |
+
continue
|
| 111 |
+
target_location = str(path.joinpath(target_rel))
|
| 112 |
+
for dist, info_location in self._find_impl(target_location):
|
| 113 |
+
yield Distribution(dist, info_location, path)
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
class Environment(BaseEnvironment):
|
| 117 |
+
def __init__(self, paths: Sequence[str]) -> None:
|
| 118 |
+
self._paths = paths
|
| 119 |
+
|
| 120 |
+
@classmethod
|
| 121 |
+
def default(cls) -> BaseEnvironment:
|
| 122 |
+
return cls(sys.path)
|
| 123 |
+
|
| 124 |
+
@classmethod
|
| 125 |
+
def from_paths(cls, paths: list[str] | None) -> BaseEnvironment:
|
| 126 |
+
if paths is None:
|
| 127 |
+
return cls(sys.path)
|
| 128 |
+
return cls(paths)
|
| 129 |
+
|
| 130 |
+
def _iter_distributions(self) -> Iterator[BaseDistribution]:
|
| 131 |
+
finder = _DistributionFinder()
|
| 132 |
+
for location in self._paths:
|
| 133 |
+
yield from finder.find(location)
|
| 134 |
+
yield from finder.find_legacy_editables(location)
|
| 135 |
+
|
| 136 |
+
def get_distribution(self, name: str) -> BaseDistribution | None:
|
| 137 |
+
canonical_name = canonicalize_name(name)
|
| 138 |
+
matches = (
|
| 139 |
+
distribution
|
| 140 |
+
for distribution in self.iter_all_distributions()
|
| 141 |
+
if distribution.canonical_name == canonical_name
|
| 142 |
+
)
|
| 143 |
+
return next(matches, None)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/metadata/pkg_resources.py
ADDED
|
@@ -0,0 +1,298 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import email.message
|
| 4 |
+
import email.parser
|
| 5 |
+
import logging
|
| 6 |
+
import os
|
| 7 |
+
import zipfile
|
| 8 |
+
from collections.abc import Collection, Iterable, Iterator, Mapping
|
| 9 |
+
from typing import (
|
| 10 |
+
NamedTuple,
|
| 11 |
+
)
|
| 12 |
+
|
| 13 |
+
from pip._vendor import pkg_resources
|
| 14 |
+
from pip._vendor.packaging.requirements import Requirement
|
| 15 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 16 |
+
from pip._vendor.packaging.version import Version
|
| 17 |
+
from pip._vendor.packaging.version import parse as parse_version
|
| 18 |
+
|
| 19 |
+
from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel
|
| 20 |
+
from pip._internal.utils.egg_link import egg_link_path_from_location
|
| 21 |
+
from pip._internal.utils.misc import display_path, normalize_path
|
| 22 |
+
from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file
|
| 23 |
+
|
| 24 |
+
from .base import (
|
| 25 |
+
BaseDistribution,
|
| 26 |
+
BaseEntryPoint,
|
| 27 |
+
BaseEnvironment,
|
| 28 |
+
InfoPath,
|
| 29 |
+
Wheel,
|
| 30 |
+
)
|
| 31 |
+
|
| 32 |
+
__all__ = ["NAME", "Distribution", "Environment"]
|
| 33 |
+
|
| 34 |
+
logger = logging.getLogger(__name__)
|
| 35 |
+
|
| 36 |
+
NAME = "pkg_resources"
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
class EntryPoint(NamedTuple):
|
| 40 |
+
name: str
|
| 41 |
+
value: str
|
| 42 |
+
group: str
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
class InMemoryMetadata:
|
| 46 |
+
"""IMetadataProvider that reads metadata files from a dictionary.
|
| 47 |
+
|
| 48 |
+
This also maps metadata decoding exceptions to our internal exception type.
|
| 49 |
+
"""
|
| 50 |
+
|
| 51 |
+
def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None:
|
| 52 |
+
self._metadata = metadata
|
| 53 |
+
self._wheel_name = wheel_name
|
| 54 |
+
|
| 55 |
+
def has_metadata(self, name: str) -> bool:
|
| 56 |
+
return name in self._metadata
|
| 57 |
+
|
| 58 |
+
def get_metadata(self, name: str) -> str:
|
| 59 |
+
try:
|
| 60 |
+
return self._metadata[name].decode()
|
| 61 |
+
except UnicodeDecodeError as e:
|
| 62 |
+
# Augment the default error with the origin of the file.
|
| 63 |
+
raise UnsupportedWheel(
|
| 64 |
+
f"Error decoding metadata for {self._wheel_name}: {e} in {name} file"
|
| 65 |
+
)
|
| 66 |
+
|
| 67 |
+
def get_metadata_lines(self, name: str) -> Iterable[str]:
|
| 68 |
+
return pkg_resources.yield_lines(self.get_metadata(name))
|
| 69 |
+
|
| 70 |
+
def metadata_isdir(self, name: str) -> bool:
|
| 71 |
+
return False
|
| 72 |
+
|
| 73 |
+
def metadata_listdir(self, name: str) -> list[str]:
|
| 74 |
+
return []
|
| 75 |
+
|
| 76 |
+
def run_script(self, script_name: str, namespace: str) -> None:
|
| 77 |
+
pass
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
class Distribution(BaseDistribution):
|
| 81 |
+
def __init__(self, dist: pkg_resources.Distribution) -> None:
|
| 82 |
+
self._dist = dist
|
| 83 |
+
# This is populated lazily, to avoid loading metadata for all possible
|
| 84 |
+
# distributions eagerly.
|
| 85 |
+
self.__extra_mapping: Mapping[NormalizedName, str] | None = None
|
| 86 |
+
|
| 87 |
+
@property
|
| 88 |
+
def _extra_mapping(self) -> Mapping[NormalizedName, str]:
|
| 89 |
+
if self.__extra_mapping is None:
|
| 90 |
+
self.__extra_mapping = {
|
| 91 |
+
canonicalize_name(extra): extra for extra in self._dist.extras
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
return self.__extra_mapping
|
| 95 |
+
|
| 96 |
+
@classmethod
|
| 97 |
+
def from_directory(cls, directory: str) -> BaseDistribution:
|
| 98 |
+
dist_dir = directory.rstrip(os.sep)
|
| 99 |
+
|
| 100 |
+
# Build a PathMetadata object, from path to metadata. :wink:
|
| 101 |
+
base_dir, dist_dir_name = os.path.split(dist_dir)
|
| 102 |
+
metadata = pkg_resources.PathMetadata(base_dir, dist_dir)
|
| 103 |
+
|
| 104 |
+
# Determine the correct Distribution object type.
|
| 105 |
+
if dist_dir.endswith(".egg-info"):
|
| 106 |
+
dist_cls = pkg_resources.Distribution
|
| 107 |
+
dist_name = os.path.splitext(dist_dir_name)[0]
|
| 108 |
+
else:
|
| 109 |
+
assert dist_dir.endswith(".dist-info")
|
| 110 |
+
dist_cls = pkg_resources.DistInfoDistribution
|
| 111 |
+
dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0]
|
| 112 |
+
|
| 113 |
+
dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata)
|
| 114 |
+
return cls(dist)
|
| 115 |
+
|
| 116 |
+
@classmethod
|
| 117 |
+
def from_metadata_file_contents(
|
| 118 |
+
cls,
|
| 119 |
+
metadata_contents: bytes,
|
| 120 |
+
filename: str,
|
| 121 |
+
project_name: str,
|
| 122 |
+
) -> BaseDistribution:
|
| 123 |
+
metadata_dict = {
|
| 124 |
+
"METADATA": metadata_contents,
|
| 125 |
+
}
|
| 126 |
+
dist = pkg_resources.DistInfoDistribution(
|
| 127 |
+
location=filename,
|
| 128 |
+
metadata=InMemoryMetadata(metadata_dict, filename),
|
| 129 |
+
project_name=project_name,
|
| 130 |
+
)
|
| 131 |
+
return cls(dist)
|
| 132 |
+
|
| 133 |
+
@classmethod
|
| 134 |
+
def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution:
|
| 135 |
+
try:
|
| 136 |
+
with wheel.as_zipfile() as zf:
|
| 137 |
+
info_dir, _ = parse_wheel(zf, name)
|
| 138 |
+
metadata_dict = {
|
| 139 |
+
path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path)
|
| 140 |
+
for path in zf.namelist()
|
| 141 |
+
if path.startswith(f"{info_dir}/")
|
| 142 |
+
}
|
| 143 |
+
except zipfile.BadZipFile as e:
|
| 144 |
+
raise InvalidWheel(wheel.location, name) from e
|
| 145 |
+
except UnsupportedWheel as e:
|
| 146 |
+
raise UnsupportedWheel(f"{name} has an invalid wheel, {e}")
|
| 147 |
+
dist = pkg_resources.DistInfoDistribution(
|
| 148 |
+
location=wheel.location,
|
| 149 |
+
metadata=InMemoryMetadata(metadata_dict, wheel.location),
|
| 150 |
+
project_name=name,
|
| 151 |
+
)
|
| 152 |
+
return cls(dist)
|
| 153 |
+
|
| 154 |
+
@property
|
| 155 |
+
def location(self) -> str | None:
|
| 156 |
+
return self._dist.location
|
| 157 |
+
|
| 158 |
+
@property
|
| 159 |
+
def installed_location(self) -> str | None:
|
| 160 |
+
egg_link = egg_link_path_from_location(self.raw_name)
|
| 161 |
+
if egg_link:
|
| 162 |
+
location = egg_link
|
| 163 |
+
elif self.location:
|
| 164 |
+
location = self.location
|
| 165 |
+
else:
|
| 166 |
+
return None
|
| 167 |
+
return normalize_path(location)
|
| 168 |
+
|
| 169 |
+
@property
|
| 170 |
+
def info_location(self) -> str | None:
|
| 171 |
+
return self._dist.egg_info
|
| 172 |
+
|
| 173 |
+
@property
|
| 174 |
+
def installed_by_distutils(self) -> bool:
|
| 175 |
+
# A distutils-installed distribution is provided by FileMetadata. This
|
| 176 |
+
# provider has a "path" attribute not present anywhere else. Not the
|
| 177 |
+
# best introspection logic, but pip has been doing this for a long time.
|
| 178 |
+
try:
|
| 179 |
+
return bool(self._dist._provider.path)
|
| 180 |
+
except AttributeError:
|
| 181 |
+
return False
|
| 182 |
+
|
| 183 |
+
@property
|
| 184 |
+
def canonical_name(self) -> NormalizedName:
|
| 185 |
+
return canonicalize_name(self._dist.project_name)
|
| 186 |
+
|
| 187 |
+
@property
|
| 188 |
+
def version(self) -> Version:
|
| 189 |
+
return parse_version(self._dist.version)
|
| 190 |
+
|
| 191 |
+
@property
|
| 192 |
+
def raw_version(self) -> str:
|
| 193 |
+
return self._dist.version
|
| 194 |
+
|
| 195 |
+
def is_file(self, path: InfoPath) -> bool:
|
| 196 |
+
return self._dist.has_metadata(str(path))
|
| 197 |
+
|
| 198 |
+
def iter_distutils_script_names(self) -> Iterator[str]:
|
| 199 |
+
yield from self._dist.metadata_listdir("scripts")
|
| 200 |
+
|
| 201 |
+
def read_text(self, path: InfoPath) -> str:
|
| 202 |
+
name = str(path)
|
| 203 |
+
if not self._dist.has_metadata(name):
|
| 204 |
+
raise FileNotFoundError(name)
|
| 205 |
+
content = self._dist.get_metadata(name)
|
| 206 |
+
if content is None:
|
| 207 |
+
raise NoneMetadataError(self, name)
|
| 208 |
+
return content
|
| 209 |
+
|
| 210 |
+
def iter_entry_points(self) -> Iterable[BaseEntryPoint]:
|
| 211 |
+
for group, entries in self._dist.get_entry_map().items():
|
| 212 |
+
for name, entry_point in entries.items():
|
| 213 |
+
name, _, value = str(entry_point).partition("=")
|
| 214 |
+
yield EntryPoint(name=name.strip(), value=value.strip(), group=group)
|
| 215 |
+
|
| 216 |
+
def _metadata_impl(self) -> email.message.Message:
|
| 217 |
+
"""
|
| 218 |
+
:raises NoneMetadataError: if the distribution reports `has_metadata()`
|
| 219 |
+
True but `get_metadata()` returns None.
|
| 220 |
+
"""
|
| 221 |
+
if isinstance(self._dist, pkg_resources.DistInfoDistribution):
|
| 222 |
+
metadata_name = "METADATA"
|
| 223 |
+
else:
|
| 224 |
+
metadata_name = "PKG-INFO"
|
| 225 |
+
try:
|
| 226 |
+
metadata = self.read_text(metadata_name)
|
| 227 |
+
except FileNotFoundError:
|
| 228 |
+
if self.location:
|
| 229 |
+
displaying_path = display_path(self.location)
|
| 230 |
+
else:
|
| 231 |
+
displaying_path = repr(self.location)
|
| 232 |
+
logger.warning("No metadata found in %s", displaying_path)
|
| 233 |
+
metadata = ""
|
| 234 |
+
feed_parser = email.parser.FeedParser()
|
| 235 |
+
feed_parser.feed(metadata)
|
| 236 |
+
return feed_parser.close()
|
| 237 |
+
|
| 238 |
+
def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]:
|
| 239 |
+
if extras:
|
| 240 |
+
relevant_extras = set(self._extra_mapping) & set(
|
| 241 |
+
map(canonicalize_name, extras)
|
| 242 |
+
)
|
| 243 |
+
extras = [self._extra_mapping[extra] for extra in relevant_extras]
|
| 244 |
+
return self._dist.requires(extras)
|
| 245 |
+
|
| 246 |
+
def iter_provided_extras(self) -> Iterable[NormalizedName]:
|
| 247 |
+
return self._extra_mapping.keys()
|
| 248 |
+
|
| 249 |
+
|
| 250 |
+
class Environment(BaseEnvironment):
|
| 251 |
+
def __init__(self, ws: pkg_resources.WorkingSet) -> None:
|
| 252 |
+
self._ws = ws
|
| 253 |
+
|
| 254 |
+
@classmethod
|
| 255 |
+
def default(cls) -> BaseEnvironment:
|
| 256 |
+
return cls(pkg_resources.working_set)
|
| 257 |
+
|
| 258 |
+
@classmethod
|
| 259 |
+
def from_paths(cls, paths: list[str] | None) -> BaseEnvironment:
|
| 260 |
+
return cls(pkg_resources.WorkingSet(paths))
|
| 261 |
+
|
| 262 |
+
def _iter_distributions(self) -> Iterator[BaseDistribution]:
|
| 263 |
+
for dist in self._ws:
|
| 264 |
+
yield Distribution(dist)
|
| 265 |
+
|
| 266 |
+
def _search_distribution(self, name: str) -> BaseDistribution | None:
|
| 267 |
+
"""Find a distribution matching the ``name`` in the environment.
|
| 268 |
+
|
| 269 |
+
This searches from *all* distributions available in the environment, to
|
| 270 |
+
match the behavior of ``pkg_resources.get_distribution()``.
|
| 271 |
+
"""
|
| 272 |
+
canonical_name = canonicalize_name(name)
|
| 273 |
+
for dist in self.iter_all_distributions():
|
| 274 |
+
if dist.canonical_name == canonical_name:
|
| 275 |
+
return dist
|
| 276 |
+
return None
|
| 277 |
+
|
| 278 |
+
def get_distribution(self, name: str) -> BaseDistribution | None:
|
| 279 |
+
# Search the distribution by looking through the working set.
|
| 280 |
+
dist = self._search_distribution(name)
|
| 281 |
+
if dist:
|
| 282 |
+
return dist
|
| 283 |
+
|
| 284 |
+
# If distribution could not be found, call working_set.require to
|
| 285 |
+
# update the working set, and try to find the distribution again.
|
| 286 |
+
# This might happen for e.g. when you install a package twice, once
|
| 287 |
+
# using setup.py develop and again using setup.py install. Now when
|
| 288 |
+
# running pip uninstall twice, the package gets removed from the
|
| 289 |
+
# working set in the first uninstall, so we have to populate the
|
| 290 |
+
# working set again so that pip knows about it and the packages gets
|
| 291 |
+
# picked up and is successfully uninstalled the second time too.
|
| 292 |
+
try:
|
| 293 |
+
# We didn't pass in any version specifiers, so this can never
|
| 294 |
+
# raise pkg_resources.VersionConflict.
|
| 295 |
+
self._ws.require(name)
|
| 296 |
+
except pkg_resources.DistributionNotFound:
|
| 297 |
+
return None
|
| 298 |
+
return self._search_distribution(name)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""A package that contains models that represent entities."""
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/candidate.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from dataclasses import dataclass
|
| 2 |
+
|
| 3 |
+
from pip._vendor.packaging.version import Version
|
| 4 |
+
from pip._vendor.packaging.version import parse as parse_version
|
| 5 |
+
|
| 6 |
+
from pip._internal.models.link import Link
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
@dataclass(frozen=True)
|
| 10 |
+
class InstallationCandidate:
|
| 11 |
+
"""Represents a potential "candidate" for installation."""
|
| 12 |
+
|
| 13 |
+
__slots__ = ["name", "version", "link"]
|
| 14 |
+
|
| 15 |
+
name: str
|
| 16 |
+
version: Version
|
| 17 |
+
link: Link
|
| 18 |
+
|
| 19 |
+
def __init__(self, name: str, version: str, link: Link) -> None:
|
| 20 |
+
object.__setattr__(self, "name", name)
|
| 21 |
+
object.__setattr__(self, "version", parse_version(version))
|
| 22 |
+
object.__setattr__(self, "link", link)
|
| 23 |
+
|
| 24 |
+
def __str__(self) -> str:
|
| 25 |
+
return f"{self.name!r} candidate (version {self.version} at {self.link})"
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/direct_url.py
ADDED
|
@@ -0,0 +1,227 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""PEP 610"""
|
| 2 |
+
|
| 3 |
+
from __future__ import annotations
|
| 4 |
+
|
| 5 |
+
import json
|
| 6 |
+
import re
|
| 7 |
+
import urllib.parse
|
| 8 |
+
from collections.abc import Iterable
|
| 9 |
+
from dataclasses import dataclass
|
| 10 |
+
from typing import Any, ClassVar, TypeVar, Union
|
| 11 |
+
|
| 12 |
+
__all__ = [
|
| 13 |
+
"DirectUrl",
|
| 14 |
+
"DirectUrlValidationError",
|
| 15 |
+
"DirInfo",
|
| 16 |
+
"ArchiveInfo",
|
| 17 |
+
"VcsInfo",
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
T = TypeVar("T")
|
| 21 |
+
|
| 22 |
+
DIRECT_URL_METADATA_NAME = "direct_url.json"
|
| 23 |
+
ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$")
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
class DirectUrlValidationError(Exception):
|
| 27 |
+
pass
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def _get(
|
| 31 |
+
d: dict[str, Any], expected_type: type[T], key: str, default: T | None = None
|
| 32 |
+
) -> T | None:
|
| 33 |
+
"""Get value from dictionary and verify expected type."""
|
| 34 |
+
if key not in d:
|
| 35 |
+
return default
|
| 36 |
+
value = d[key]
|
| 37 |
+
if not isinstance(value, expected_type):
|
| 38 |
+
raise DirectUrlValidationError(
|
| 39 |
+
f"{value!r} has unexpected type for {key} (expected {expected_type})"
|
| 40 |
+
)
|
| 41 |
+
return value
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
def _get_required(
|
| 45 |
+
d: dict[str, Any], expected_type: type[T], key: str, default: T | None = None
|
| 46 |
+
) -> T:
|
| 47 |
+
value = _get(d, expected_type, key, default)
|
| 48 |
+
if value is None:
|
| 49 |
+
raise DirectUrlValidationError(f"{key} must have a value")
|
| 50 |
+
return value
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def _exactly_one_of(infos: Iterable[InfoType | None]) -> InfoType:
|
| 54 |
+
infos = [info for info in infos if info is not None]
|
| 55 |
+
if not infos:
|
| 56 |
+
raise DirectUrlValidationError(
|
| 57 |
+
"missing one of archive_info, dir_info, vcs_info"
|
| 58 |
+
)
|
| 59 |
+
if len(infos) > 1:
|
| 60 |
+
raise DirectUrlValidationError(
|
| 61 |
+
"more than one of archive_info, dir_info, vcs_info"
|
| 62 |
+
)
|
| 63 |
+
assert infos[0] is not None
|
| 64 |
+
return infos[0]
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
def _filter_none(**kwargs: Any) -> dict[str, Any]:
|
| 68 |
+
"""Make dict excluding None values."""
|
| 69 |
+
return {k: v for k, v in kwargs.items() if v is not None}
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
@dataclass
|
| 73 |
+
class VcsInfo:
|
| 74 |
+
name: ClassVar = "vcs_info"
|
| 75 |
+
|
| 76 |
+
vcs: str
|
| 77 |
+
commit_id: str
|
| 78 |
+
requested_revision: str | None = None
|
| 79 |
+
|
| 80 |
+
@classmethod
|
| 81 |
+
def _from_dict(cls, d: dict[str, Any] | None) -> VcsInfo | None:
|
| 82 |
+
if d is None:
|
| 83 |
+
return None
|
| 84 |
+
return cls(
|
| 85 |
+
vcs=_get_required(d, str, "vcs"),
|
| 86 |
+
commit_id=_get_required(d, str, "commit_id"),
|
| 87 |
+
requested_revision=_get(d, str, "requested_revision"),
|
| 88 |
+
)
|
| 89 |
+
|
| 90 |
+
def _to_dict(self) -> dict[str, Any]:
|
| 91 |
+
return _filter_none(
|
| 92 |
+
vcs=self.vcs,
|
| 93 |
+
requested_revision=self.requested_revision,
|
| 94 |
+
commit_id=self.commit_id,
|
| 95 |
+
)
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
class ArchiveInfo:
|
| 99 |
+
name = "archive_info"
|
| 100 |
+
|
| 101 |
+
def __init__(
|
| 102 |
+
self,
|
| 103 |
+
hash: str | None = None,
|
| 104 |
+
hashes: dict[str, str] | None = None,
|
| 105 |
+
) -> None:
|
| 106 |
+
# set hashes before hash, since the hash setter will further populate hashes
|
| 107 |
+
self.hashes = hashes
|
| 108 |
+
self.hash = hash
|
| 109 |
+
|
| 110 |
+
@property
|
| 111 |
+
def hash(self) -> str | None:
|
| 112 |
+
return self._hash
|
| 113 |
+
|
| 114 |
+
@hash.setter
|
| 115 |
+
def hash(self, value: str | None) -> None:
|
| 116 |
+
if value is not None:
|
| 117 |
+
# Auto-populate the hashes key to upgrade to the new format automatically.
|
| 118 |
+
# We don't back-populate the legacy hash key from hashes.
|
| 119 |
+
try:
|
| 120 |
+
hash_name, hash_value = value.split("=", 1)
|
| 121 |
+
except ValueError:
|
| 122 |
+
raise DirectUrlValidationError(
|
| 123 |
+
f"invalid archive_info.hash format: {value!r}"
|
| 124 |
+
)
|
| 125 |
+
if self.hashes is None:
|
| 126 |
+
self.hashes = {hash_name: hash_value}
|
| 127 |
+
elif hash_name not in self.hashes:
|
| 128 |
+
self.hashes = self.hashes.copy()
|
| 129 |
+
self.hashes[hash_name] = hash_value
|
| 130 |
+
self._hash = value
|
| 131 |
+
|
| 132 |
+
@classmethod
|
| 133 |
+
def _from_dict(cls, d: dict[str, Any] | None) -> ArchiveInfo | None:
|
| 134 |
+
if d is None:
|
| 135 |
+
return None
|
| 136 |
+
return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes"))
|
| 137 |
+
|
| 138 |
+
def _to_dict(self) -> dict[str, Any]:
|
| 139 |
+
return _filter_none(hash=self.hash, hashes=self.hashes)
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
@dataclass
|
| 143 |
+
class DirInfo:
|
| 144 |
+
name: ClassVar = "dir_info"
|
| 145 |
+
|
| 146 |
+
editable: bool = False
|
| 147 |
+
|
| 148 |
+
@classmethod
|
| 149 |
+
def _from_dict(cls, d: dict[str, Any] | None) -> DirInfo | None:
|
| 150 |
+
if d is None:
|
| 151 |
+
return None
|
| 152 |
+
return cls(editable=_get_required(d, bool, "editable", default=False))
|
| 153 |
+
|
| 154 |
+
def _to_dict(self) -> dict[str, Any]:
|
| 155 |
+
return _filter_none(editable=self.editable or None)
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
InfoType = Union[ArchiveInfo, DirInfo, VcsInfo]
|
| 159 |
+
|
| 160 |
+
|
| 161 |
+
@dataclass
|
| 162 |
+
class DirectUrl:
|
| 163 |
+
url: str
|
| 164 |
+
info: InfoType
|
| 165 |
+
subdirectory: str | None = None
|
| 166 |
+
|
| 167 |
+
def _remove_auth_from_netloc(self, netloc: str) -> str:
|
| 168 |
+
if "@" not in netloc:
|
| 169 |
+
return netloc
|
| 170 |
+
user_pass, netloc_no_user_pass = netloc.split("@", 1)
|
| 171 |
+
if (
|
| 172 |
+
isinstance(self.info, VcsInfo)
|
| 173 |
+
and self.info.vcs == "git"
|
| 174 |
+
and user_pass == "git"
|
| 175 |
+
):
|
| 176 |
+
return netloc
|
| 177 |
+
if ENV_VAR_RE.match(user_pass):
|
| 178 |
+
return netloc
|
| 179 |
+
return netloc_no_user_pass
|
| 180 |
+
|
| 181 |
+
@property
|
| 182 |
+
def redacted_url(self) -> str:
|
| 183 |
+
"""url with user:password part removed unless it is formed with
|
| 184 |
+
environment variables as specified in PEP 610, or it is ``git``
|
| 185 |
+
in the case of a git URL.
|
| 186 |
+
"""
|
| 187 |
+
purl = urllib.parse.urlsplit(self.url)
|
| 188 |
+
netloc = self._remove_auth_from_netloc(purl.netloc)
|
| 189 |
+
surl = urllib.parse.urlunsplit(
|
| 190 |
+
(purl.scheme, netloc, purl.path, purl.query, purl.fragment)
|
| 191 |
+
)
|
| 192 |
+
return surl
|
| 193 |
+
|
| 194 |
+
def validate(self) -> None:
|
| 195 |
+
self.from_dict(self.to_dict())
|
| 196 |
+
|
| 197 |
+
@classmethod
|
| 198 |
+
def from_dict(cls, d: dict[str, Any]) -> DirectUrl:
|
| 199 |
+
return DirectUrl(
|
| 200 |
+
url=_get_required(d, str, "url"),
|
| 201 |
+
subdirectory=_get(d, str, "subdirectory"),
|
| 202 |
+
info=_exactly_one_of(
|
| 203 |
+
[
|
| 204 |
+
ArchiveInfo._from_dict(_get(d, dict, "archive_info")),
|
| 205 |
+
DirInfo._from_dict(_get(d, dict, "dir_info")),
|
| 206 |
+
VcsInfo._from_dict(_get(d, dict, "vcs_info")),
|
| 207 |
+
]
|
| 208 |
+
),
|
| 209 |
+
)
|
| 210 |
+
|
| 211 |
+
def to_dict(self) -> dict[str, Any]:
|
| 212 |
+
res = _filter_none(
|
| 213 |
+
url=self.redacted_url,
|
| 214 |
+
subdirectory=self.subdirectory,
|
| 215 |
+
)
|
| 216 |
+
res[self.info.name] = self.info._to_dict()
|
| 217 |
+
return res
|
| 218 |
+
|
| 219 |
+
@classmethod
|
| 220 |
+
def from_json(cls, s: str) -> DirectUrl:
|
| 221 |
+
return cls.from_dict(json.loads(s))
|
| 222 |
+
|
| 223 |
+
def to_json(self) -> str:
|
| 224 |
+
return json.dumps(self.to_dict(), sort_keys=True)
|
| 225 |
+
|
| 226 |
+
def is_local_editable(self) -> bool:
|
| 227 |
+
return isinstance(self.info, DirInfo) and self.info.editable
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/format_control.py
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from pip._vendor.packaging.utils import canonicalize_name
|
| 4 |
+
|
| 5 |
+
from pip._internal.exceptions import CommandError
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
class FormatControl:
|
| 9 |
+
"""Helper for managing formats from which a package can be installed."""
|
| 10 |
+
|
| 11 |
+
__slots__ = ["no_binary", "only_binary"]
|
| 12 |
+
|
| 13 |
+
def __init__(
|
| 14 |
+
self,
|
| 15 |
+
no_binary: set[str] | None = None,
|
| 16 |
+
only_binary: set[str] | None = None,
|
| 17 |
+
) -> None:
|
| 18 |
+
if no_binary is None:
|
| 19 |
+
no_binary = set()
|
| 20 |
+
if only_binary is None:
|
| 21 |
+
only_binary = set()
|
| 22 |
+
|
| 23 |
+
self.no_binary = no_binary
|
| 24 |
+
self.only_binary = only_binary
|
| 25 |
+
|
| 26 |
+
def __eq__(self, other: object) -> bool:
|
| 27 |
+
if not isinstance(other, self.__class__):
|
| 28 |
+
return NotImplemented
|
| 29 |
+
|
| 30 |
+
if self.__slots__ != other.__slots__:
|
| 31 |
+
return False
|
| 32 |
+
|
| 33 |
+
return all(getattr(self, k) == getattr(other, k) for k in self.__slots__)
|
| 34 |
+
|
| 35 |
+
def __repr__(self) -> str:
|
| 36 |
+
return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})"
|
| 37 |
+
|
| 38 |
+
@staticmethod
|
| 39 |
+
def handle_mutual_excludes(value: str, target: set[str], other: set[str]) -> None:
|
| 40 |
+
if value.startswith("-"):
|
| 41 |
+
raise CommandError(
|
| 42 |
+
"--no-binary / --only-binary option requires 1 argument."
|
| 43 |
+
)
|
| 44 |
+
new = value.split(",")
|
| 45 |
+
while ":all:" in new:
|
| 46 |
+
other.clear()
|
| 47 |
+
target.clear()
|
| 48 |
+
target.add(":all:")
|
| 49 |
+
del new[: new.index(":all:") + 1]
|
| 50 |
+
# Without a none, we want to discard everything as :all: covers it
|
| 51 |
+
if ":none:" not in new:
|
| 52 |
+
return
|
| 53 |
+
for name in new:
|
| 54 |
+
if name == ":none:":
|
| 55 |
+
target.clear()
|
| 56 |
+
continue
|
| 57 |
+
name = canonicalize_name(name)
|
| 58 |
+
other.discard(name)
|
| 59 |
+
target.add(name)
|
| 60 |
+
|
| 61 |
+
def get_allowed_formats(self, canonical_name: str) -> frozenset[str]:
|
| 62 |
+
result = {"binary", "source"}
|
| 63 |
+
if canonical_name in self.only_binary:
|
| 64 |
+
result.discard("source")
|
| 65 |
+
elif canonical_name in self.no_binary:
|
| 66 |
+
result.discard("binary")
|
| 67 |
+
elif ":all:" in self.only_binary:
|
| 68 |
+
result.discard("source")
|
| 69 |
+
elif ":all:" in self.no_binary:
|
| 70 |
+
result.discard("binary")
|
| 71 |
+
return frozenset(result)
|
| 72 |
+
|
| 73 |
+
def disallow_binaries(self) -> None:
|
| 74 |
+
self.handle_mutual_excludes(
|
| 75 |
+
":all:",
|
| 76 |
+
self.no_binary,
|
| 77 |
+
self.only_binary,
|
| 78 |
+
)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/index.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import urllib.parse
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
class PackageIndex:
|
| 5 |
+
"""Represents a Package Index and provides easier access to endpoints"""
|
| 6 |
+
|
| 7 |
+
__slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"]
|
| 8 |
+
|
| 9 |
+
def __init__(self, url: str, file_storage_domain: str) -> None:
|
| 10 |
+
super().__init__()
|
| 11 |
+
self.url = url
|
| 12 |
+
self.netloc = urllib.parse.urlsplit(url).netloc
|
| 13 |
+
self.simple_url = self._url_for_path("simple")
|
| 14 |
+
self.pypi_url = self._url_for_path("pypi")
|
| 15 |
+
|
| 16 |
+
# This is part of a temporary hack used to block installs of PyPI
|
| 17 |
+
# packages which depend on external urls only necessary until PyPI can
|
| 18 |
+
# block such packages themselves
|
| 19 |
+
self.file_storage_domain = file_storage_domain
|
| 20 |
+
|
| 21 |
+
def _url_for_path(self, path: str) -> str:
|
| 22 |
+
return urllib.parse.urljoin(self.url, path)
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org")
|
| 26 |
+
TestPyPI = PackageIndex(
|
| 27 |
+
"https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org"
|
| 28 |
+
)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/installation_report.py
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from collections.abc import Sequence
|
| 2 |
+
from typing import Any
|
| 3 |
+
|
| 4 |
+
from pip._vendor.packaging.markers import default_environment
|
| 5 |
+
|
| 6 |
+
from pip import __version__
|
| 7 |
+
from pip._internal.req.req_install import InstallRequirement
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
class InstallationReport:
|
| 11 |
+
def __init__(self, install_requirements: Sequence[InstallRequirement]):
|
| 12 |
+
self._install_requirements = install_requirements
|
| 13 |
+
|
| 14 |
+
@classmethod
|
| 15 |
+
def _install_req_to_dict(cls, ireq: InstallRequirement) -> dict[str, Any]:
|
| 16 |
+
assert ireq.download_info, f"No download_info for {ireq}"
|
| 17 |
+
res = {
|
| 18 |
+
# PEP 610 json for the download URL. download_info.archive_info.hashes may
|
| 19 |
+
# be absent when the requirement was installed from the wheel cache
|
| 20 |
+
# and the cache entry was populated by an older pip version that did not
|
| 21 |
+
# record origin.json.
|
| 22 |
+
"download_info": ireq.download_info.to_dict(),
|
| 23 |
+
# is_direct is true if the requirement was a direct URL reference (which
|
| 24 |
+
# includes editable requirements), and false if the requirement was
|
| 25 |
+
# downloaded from a PEP 503 index or --find-links.
|
| 26 |
+
"is_direct": ireq.is_direct,
|
| 27 |
+
# is_yanked is true if the requirement was yanked from the index, but
|
| 28 |
+
# was still selected by pip to conform to PEP 592.
|
| 29 |
+
"is_yanked": ireq.link.is_yanked if ireq.link else False,
|
| 30 |
+
# requested is true if the requirement was specified by the user (aka
|
| 31 |
+
# top level requirement), and false if it was installed as a dependency of a
|
| 32 |
+
# requirement. https://peps.python.org/pep-0376/#requested
|
| 33 |
+
"requested": ireq.user_supplied,
|
| 34 |
+
# PEP 566 json encoding for metadata
|
| 35 |
+
# https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata
|
| 36 |
+
"metadata": ireq.get_dist().metadata_dict,
|
| 37 |
+
}
|
| 38 |
+
if ireq.user_supplied and ireq.extras:
|
| 39 |
+
# For top level requirements, the list of requested extras, if any.
|
| 40 |
+
res["requested_extras"] = sorted(ireq.extras)
|
| 41 |
+
return res
|
| 42 |
+
|
| 43 |
+
def to_dict(self) -> dict[str, Any]:
|
| 44 |
+
return {
|
| 45 |
+
"version": "1",
|
| 46 |
+
"pip_version": __version__,
|
| 47 |
+
"install": [
|
| 48 |
+
self._install_req_to_dict(ireq) for ireq in self._install_requirements
|
| 49 |
+
],
|
| 50 |
+
# https://peps.python.org/pep-0508/#environment-markers
|
| 51 |
+
# TODO: currently, the resolver uses the default environment to evaluate
|
| 52 |
+
# environment markers, so that is what we report here. In the future, it
|
| 53 |
+
# should also take into account options such as --python-version or
|
| 54 |
+
# --platform, perhaps under the form of an environment_override field?
|
| 55 |
+
# https://github.com/pypa/pip/issues/11198
|
| 56 |
+
"environment": default_environment(),
|
| 57 |
+
}
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/link.py
ADDED
|
@@ -0,0 +1,617 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import datetime
|
| 4 |
+
import functools
|
| 5 |
+
import itertools
|
| 6 |
+
import logging
|
| 7 |
+
import os
|
| 8 |
+
import posixpath
|
| 9 |
+
import re
|
| 10 |
+
import urllib.parse
|
| 11 |
+
import urllib.request
|
| 12 |
+
from collections.abc import Mapping
|
| 13 |
+
from dataclasses import dataclass
|
| 14 |
+
from typing import (
|
| 15 |
+
Any,
|
| 16 |
+
NamedTuple,
|
| 17 |
+
)
|
| 18 |
+
|
| 19 |
+
from pip._internal.exceptions import InvalidEggFragment
|
| 20 |
+
from pip._internal.utils.datetime import parse_iso_datetime
|
| 21 |
+
from pip._internal.utils.filetypes import WHEEL_EXTENSION
|
| 22 |
+
from pip._internal.utils.hashes import Hashes
|
| 23 |
+
from pip._internal.utils.misc import (
|
| 24 |
+
pairwise,
|
| 25 |
+
redact_auth_from_url,
|
| 26 |
+
split_auth_from_netloc,
|
| 27 |
+
splitext,
|
| 28 |
+
)
|
| 29 |
+
from pip._internal.utils.urls import path_to_url, url_to_path
|
| 30 |
+
|
| 31 |
+
logger = logging.getLogger(__name__)
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
# Order matters, earlier hashes have a precedence over later hashes for what
|
| 35 |
+
# we will pick to use.
|
| 36 |
+
_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5")
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
@dataclass(frozen=True)
|
| 40 |
+
class LinkHash:
|
| 41 |
+
"""Links to content may have embedded hash values. This class parses those.
|
| 42 |
+
|
| 43 |
+
`name` must be any member of `_SUPPORTED_HASHES`.
|
| 44 |
+
|
| 45 |
+
This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to
|
| 46 |
+
be JSON-serializable to conform to PEP 610, this class contains the logic for
|
| 47 |
+
parsing a hash name and value for correctness, and then checking whether that hash
|
| 48 |
+
conforms to a schema with `.is_hash_allowed()`."""
|
| 49 |
+
|
| 50 |
+
name: str
|
| 51 |
+
value: str
|
| 52 |
+
|
| 53 |
+
_hash_url_fragment_re = re.compile(
|
| 54 |
+
# NB: we do not validate that the second group (.*) is a valid hex
|
| 55 |
+
# digest. Instead, we simply keep that string in this class, and then check it
|
| 56 |
+
# against Hashes when hash-checking is needed. This is easier to debug than
|
| 57 |
+
# proactively discarding an invalid hex digest, as we handle incorrect hashes
|
| 58 |
+
# and malformed hashes in the same place.
|
| 59 |
+
r"[#&]({choices})=([^&]*)".format(
|
| 60 |
+
choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES)
|
| 61 |
+
),
|
| 62 |
+
)
|
| 63 |
+
|
| 64 |
+
def __post_init__(self) -> None:
|
| 65 |
+
assert self.name in _SUPPORTED_HASHES
|
| 66 |
+
|
| 67 |
+
@classmethod
|
| 68 |
+
@functools.cache
|
| 69 |
+
def find_hash_url_fragment(cls, url: str) -> LinkHash | None:
|
| 70 |
+
"""Search a string for a checksum algorithm name and encoded output value."""
|
| 71 |
+
match = cls._hash_url_fragment_re.search(url)
|
| 72 |
+
if match is None:
|
| 73 |
+
return None
|
| 74 |
+
name, value = match.groups()
|
| 75 |
+
return cls(name=name, value=value)
|
| 76 |
+
|
| 77 |
+
def as_dict(self) -> dict[str, str]:
|
| 78 |
+
return {self.name: self.value}
|
| 79 |
+
|
| 80 |
+
def as_hashes(self) -> Hashes:
|
| 81 |
+
"""Return a Hashes instance which checks only for the current hash."""
|
| 82 |
+
return Hashes({self.name: [self.value]})
|
| 83 |
+
|
| 84 |
+
def is_hash_allowed(self, hashes: Hashes | None) -> bool:
|
| 85 |
+
"""
|
| 86 |
+
Return True if the current hash is allowed by `hashes`.
|
| 87 |
+
"""
|
| 88 |
+
if hashes is None:
|
| 89 |
+
return False
|
| 90 |
+
return hashes.is_hash_allowed(self.name, hex_digest=self.value)
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
@dataclass(frozen=True)
|
| 94 |
+
class MetadataFile:
|
| 95 |
+
"""Information about a core metadata file associated with a distribution."""
|
| 96 |
+
|
| 97 |
+
hashes: dict[str, str] | None
|
| 98 |
+
|
| 99 |
+
def __post_init__(self) -> None:
|
| 100 |
+
if self.hashes is not None:
|
| 101 |
+
assert all(name in _SUPPORTED_HASHES for name in self.hashes)
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
def supported_hashes(hashes: dict[str, str] | None) -> dict[str, str] | None:
|
| 105 |
+
# Remove any unsupported hash types from the mapping. If this leaves no
|
| 106 |
+
# supported hashes, return None
|
| 107 |
+
if hashes is None:
|
| 108 |
+
return None
|
| 109 |
+
hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES}
|
| 110 |
+
if not hashes:
|
| 111 |
+
return None
|
| 112 |
+
return hashes
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
def _clean_url_path_part(part: str) -> str:
|
| 116 |
+
"""
|
| 117 |
+
Clean a "part" of a URL path (i.e. after splitting on "@" characters).
|
| 118 |
+
"""
|
| 119 |
+
# We unquote prior to quoting to make sure nothing is double quoted.
|
| 120 |
+
return urllib.parse.quote(urllib.parse.unquote(part))
|
| 121 |
+
|
| 122 |
+
|
| 123 |
+
def _clean_file_url_path(part: str) -> str:
|
| 124 |
+
"""
|
| 125 |
+
Clean the first part of a URL path that corresponds to a local
|
| 126 |
+
filesystem path (i.e. the first part after splitting on "@" characters).
|
| 127 |
+
"""
|
| 128 |
+
# We unquote prior to quoting to make sure nothing is double quoted.
|
| 129 |
+
# Also, on Windows the path part might contain a drive letter which
|
| 130 |
+
# should not be quoted. On Linux where drive letters do not
|
| 131 |
+
# exist, the colon should be quoted. We rely on urllib.request
|
| 132 |
+
# to do the right thing here.
|
| 133 |
+
ret = urllib.request.pathname2url(urllib.request.url2pathname(part))
|
| 134 |
+
if ret.startswith("///"):
|
| 135 |
+
# Remove any URL authority section, leaving only the URL path.
|
| 136 |
+
ret = ret.removeprefix("//")
|
| 137 |
+
return ret
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
# percent-encoded: /
|
| 141 |
+
_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE)
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
def _clean_url_path(path: str, is_local_path: bool) -> str:
|
| 145 |
+
"""
|
| 146 |
+
Clean the path portion of a URL.
|
| 147 |
+
"""
|
| 148 |
+
if is_local_path:
|
| 149 |
+
clean_func = _clean_file_url_path
|
| 150 |
+
else:
|
| 151 |
+
clean_func = _clean_url_path_part
|
| 152 |
+
|
| 153 |
+
# Split on the reserved characters prior to cleaning so that
|
| 154 |
+
# revision strings in VCS URLs are properly preserved.
|
| 155 |
+
parts = _reserved_chars_re.split(path)
|
| 156 |
+
|
| 157 |
+
cleaned_parts = []
|
| 158 |
+
for to_clean, reserved in pairwise(itertools.chain(parts, [""])):
|
| 159 |
+
cleaned_parts.append(clean_func(to_clean))
|
| 160 |
+
# Normalize %xx escapes (e.g. %2f -> %2F)
|
| 161 |
+
cleaned_parts.append(reserved.upper())
|
| 162 |
+
|
| 163 |
+
return "".join(cleaned_parts)
|
| 164 |
+
|
| 165 |
+
|
| 166 |
+
def _ensure_quoted_url(url: str) -> str:
|
| 167 |
+
"""
|
| 168 |
+
Make sure a link is fully quoted.
|
| 169 |
+
For example, if ' ' occurs in the URL, it will be replaced with "%20",
|
| 170 |
+
and without double-quoting other characters.
|
| 171 |
+
"""
|
| 172 |
+
# Split the URL into parts according to the general structure
|
| 173 |
+
# `scheme://netloc/path?query#fragment`.
|
| 174 |
+
result = urllib.parse.urlsplit(url)
|
| 175 |
+
# If the netloc is empty, then the URL refers to a local filesystem path.
|
| 176 |
+
is_local_path = not result.netloc
|
| 177 |
+
path = _clean_url_path(result.path, is_local_path=is_local_path)
|
| 178 |
+
# Temporarily replace scheme with file to ensure the URL generated by
|
| 179 |
+
# urlunsplit() contains an empty netloc (file://) as per RFC 1738.
|
| 180 |
+
ret = urllib.parse.urlunsplit(result._replace(scheme="file", path=path))
|
| 181 |
+
ret = result.scheme + ret[4:] # Restore original scheme.
|
| 182 |
+
return ret
|
| 183 |
+
|
| 184 |
+
|
| 185 |
+
def _absolute_link_url(base_url: str, url: str) -> str:
|
| 186 |
+
"""
|
| 187 |
+
A faster implementation of urllib.parse.urljoin with a shortcut
|
| 188 |
+
for absolute http/https URLs.
|
| 189 |
+
"""
|
| 190 |
+
if url.startswith(("https://", "http://")):
|
| 191 |
+
return url
|
| 192 |
+
else:
|
| 193 |
+
return urllib.parse.urljoin(base_url, url)
|
| 194 |
+
|
| 195 |
+
|
| 196 |
+
@functools.total_ordering
|
| 197 |
+
class Link:
|
| 198 |
+
"""Represents a parsed link from a Package Index's simple URL"""
|
| 199 |
+
|
| 200 |
+
__slots__ = [
|
| 201 |
+
"_parsed_url",
|
| 202 |
+
"_url",
|
| 203 |
+
"_path",
|
| 204 |
+
"_hashes",
|
| 205 |
+
"comes_from",
|
| 206 |
+
"requires_python",
|
| 207 |
+
"yanked_reason",
|
| 208 |
+
"metadata_file_data",
|
| 209 |
+
"upload_time",
|
| 210 |
+
"cache_link_parsing",
|
| 211 |
+
"egg_fragment",
|
| 212 |
+
]
|
| 213 |
+
|
| 214 |
+
def __init__(
|
| 215 |
+
self,
|
| 216 |
+
url: str,
|
| 217 |
+
comes_from: str | None = None,
|
| 218 |
+
requires_python: str | None = None,
|
| 219 |
+
yanked_reason: str | None = None,
|
| 220 |
+
metadata_file_data: MetadataFile | None = None,
|
| 221 |
+
upload_time: datetime.datetime | None = None,
|
| 222 |
+
cache_link_parsing: bool = True,
|
| 223 |
+
hashes: Mapping[str, str] | None = None,
|
| 224 |
+
) -> None:
|
| 225 |
+
"""
|
| 226 |
+
:param url: url of the resource pointed to (href of the link)
|
| 227 |
+
:param comes_from: URL or string indicating where the link was found.
|
| 228 |
+
:param requires_python: String containing the `Requires-Python`
|
| 229 |
+
metadata field, specified in PEP 345. This may be specified by
|
| 230 |
+
a data-requires-python attribute in the HTML link tag, as
|
| 231 |
+
described in PEP 503.
|
| 232 |
+
:param yanked_reason: the reason the file has been yanked, if the
|
| 233 |
+
file has been yanked, or None if the file hasn't been yanked.
|
| 234 |
+
This is the value of the "data-yanked" attribute, if present, in
|
| 235 |
+
a simple repository HTML link. If the file has been yanked but
|
| 236 |
+
no reason was provided, this should be the empty string. See
|
| 237 |
+
PEP 592 for more information and the specification.
|
| 238 |
+
:param metadata_file_data: the metadata attached to the file, or None if
|
| 239 |
+
no such metadata is provided. This argument, if not None, indicates
|
| 240 |
+
that a separate metadata file exists, and also optionally supplies
|
| 241 |
+
hashes for that file.
|
| 242 |
+
:param upload_time: upload time of the file, or None if the information
|
| 243 |
+
is not available from the server.
|
| 244 |
+
:param cache_link_parsing: A flag that is used elsewhere to determine
|
| 245 |
+
whether resources retrieved from this link should be cached. PyPI
|
| 246 |
+
URLs should generally have this set to False, for example.
|
| 247 |
+
:param hashes: A mapping of hash names to digests to allow us to
|
| 248 |
+
determine the validity of a download.
|
| 249 |
+
"""
|
| 250 |
+
|
| 251 |
+
# The comes_from, requires_python, and metadata_file_data arguments are
|
| 252 |
+
# only used by classmethods of this class, and are not used in client
|
| 253 |
+
# code directly.
|
| 254 |
+
|
| 255 |
+
# url can be a UNC windows share
|
| 256 |
+
if url.startswith("\\\\"):
|
| 257 |
+
url = path_to_url(url)
|
| 258 |
+
|
| 259 |
+
self._parsed_url = urllib.parse.urlsplit(url)
|
| 260 |
+
# Store the url as a private attribute to prevent accidentally
|
| 261 |
+
# trying to set a new value.
|
| 262 |
+
self._url = url
|
| 263 |
+
# The .path property is hot, so calculate its value ahead of time.
|
| 264 |
+
self._path = urllib.parse.unquote(self._parsed_url.path)
|
| 265 |
+
|
| 266 |
+
link_hash = LinkHash.find_hash_url_fragment(url)
|
| 267 |
+
hashes_from_link = {} if link_hash is None else link_hash.as_dict()
|
| 268 |
+
if hashes is None:
|
| 269 |
+
self._hashes = hashes_from_link
|
| 270 |
+
else:
|
| 271 |
+
self._hashes = {**hashes, **hashes_from_link}
|
| 272 |
+
|
| 273 |
+
self.comes_from = comes_from
|
| 274 |
+
self.requires_python = requires_python if requires_python else None
|
| 275 |
+
self.yanked_reason = yanked_reason
|
| 276 |
+
self.metadata_file_data = metadata_file_data
|
| 277 |
+
self.upload_time = upload_time
|
| 278 |
+
|
| 279 |
+
self.cache_link_parsing = cache_link_parsing
|
| 280 |
+
self.egg_fragment = self._egg_fragment()
|
| 281 |
+
|
| 282 |
+
@classmethod
|
| 283 |
+
def from_json(
|
| 284 |
+
cls,
|
| 285 |
+
file_data: dict[str, Any],
|
| 286 |
+
page_url: str,
|
| 287 |
+
) -> Link | None:
|
| 288 |
+
"""
|
| 289 |
+
Convert an pypi json document from a simple repository page into a Link.
|
| 290 |
+
"""
|
| 291 |
+
file_url = file_data.get("url")
|
| 292 |
+
if file_url is None:
|
| 293 |
+
return None
|
| 294 |
+
|
| 295 |
+
url = _ensure_quoted_url(_absolute_link_url(page_url, file_url))
|
| 296 |
+
pyrequire = file_data.get("requires-python")
|
| 297 |
+
yanked_reason = file_data.get("yanked")
|
| 298 |
+
hashes = file_data.get("hashes", {})
|
| 299 |
+
|
| 300 |
+
# PEP 714: Indexes must use the name core-metadata, but
|
| 301 |
+
# clients should support the old name as a fallback for compatibility.
|
| 302 |
+
metadata_info = file_data.get("core-metadata")
|
| 303 |
+
if metadata_info is None:
|
| 304 |
+
metadata_info = file_data.get("dist-info-metadata")
|
| 305 |
+
|
| 306 |
+
if upload_time_data := file_data.get("upload-time"):
|
| 307 |
+
upload_time = parse_iso_datetime(upload_time_data)
|
| 308 |
+
else:
|
| 309 |
+
upload_time = None
|
| 310 |
+
|
| 311 |
+
# The metadata info value may be a boolean, or a dict of hashes.
|
| 312 |
+
if isinstance(metadata_info, dict):
|
| 313 |
+
# The file exists, and hashes have been supplied
|
| 314 |
+
metadata_file_data = MetadataFile(supported_hashes(metadata_info))
|
| 315 |
+
elif metadata_info:
|
| 316 |
+
# The file exists, but there are no hashes
|
| 317 |
+
metadata_file_data = MetadataFile(None)
|
| 318 |
+
else:
|
| 319 |
+
# False or not present: the file does not exist
|
| 320 |
+
metadata_file_data = None
|
| 321 |
+
|
| 322 |
+
# The Link.yanked_reason expects an empty string instead of a boolean.
|
| 323 |
+
if yanked_reason and not isinstance(yanked_reason, str):
|
| 324 |
+
yanked_reason = ""
|
| 325 |
+
# The Link.yanked_reason expects None instead of False.
|
| 326 |
+
elif not yanked_reason:
|
| 327 |
+
yanked_reason = None
|
| 328 |
+
|
| 329 |
+
return cls(
|
| 330 |
+
url,
|
| 331 |
+
comes_from=page_url,
|
| 332 |
+
requires_python=pyrequire,
|
| 333 |
+
yanked_reason=yanked_reason,
|
| 334 |
+
hashes=hashes,
|
| 335 |
+
metadata_file_data=metadata_file_data,
|
| 336 |
+
upload_time=upload_time,
|
| 337 |
+
)
|
| 338 |
+
|
| 339 |
+
@classmethod
|
| 340 |
+
def from_element(
|
| 341 |
+
cls,
|
| 342 |
+
anchor_attribs: dict[str, str | None],
|
| 343 |
+
page_url: str,
|
| 344 |
+
base_url: str,
|
| 345 |
+
) -> Link | None:
|
| 346 |
+
"""
|
| 347 |
+
Convert an anchor element's attributes in a simple repository page to a Link.
|
| 348 |
+
"""
|
| 349 |
+
href = anchor_attribs.get("href")
|
| 350 |
+
if not href:
|
| 351 |
+
return None
|
| 352 |
+
|
| 353 |
+
url = _ensure_quoted_url(_absolute_link_url(base_url, href))
|
| 354 |
+
pyrequire = anchor_attribs.get("data-requires-python")
|
| 355 |
+
yanked_reason = anchor_attribs.get("data-yanked")
|
| 356 |
+
|
| 357 |
+
# PEP 714: Indexes must use the name data-core-metadata, but
|
| 358 |
+
# clients should support the old name as a fallback for compatibility.
|
| 359 |
+
metadata_info = anchor_attribs.get("data-core-metadata")
|
| 360 |
+
if metadata_info is None:
|
| 361 |
+
metadata_info = anchor_attribs.get("data-dist-info-metadata")
|
| 362 |
+
# The metadata info value may be the string "true", or a string of
|
| 363 |
+
# the form "hashname=hashval"
|
| 364 |
+
if metadata_info == "true":
|
| 365 |
+
# The file exists, but there are no hashes
|
| 366 |
+
metadata_file_data = MetadataFile(None)
|
| 367 |
+
elif metadata_info is None:
|
| 368 |
+
# The file does not exist
|
| 369 |
+
metadata_file_data = None
|
| 370 |
+
else:
|
| 371 |
+
# The file exists, and hashes have been supplied
|
| 372 |
+
hashname, sep, hashval = metadata_info.partition("=")
|
| 373 |
+
if sep == "=":
|
| 374 |
+
metadata_file_data = MetadataFile(supported_hashes({hashname: hashval}))
|
| 375 |
+
else:
|
| 376 |
+
# Error - data is wrong. Treat as no hashes supplied.
|
| 377 |
+
logger.debug(
|
| 378 |
+
"Index returned invalid data-dist-info-metadata value: %s",
|
| 379 |
+
metadata_info,
|
| 380 |
+
)
|
| 381 |
+
metadata_file_data = MetadataFile(None)
|
| 382 |
+
|
| 383 |
+
return cls(
|
| 384 |
+
url,
|
| 385 |
+
comes_from=page_url,
|
| 386 |
+
requires_python=pyrequire,
|
| 387 |
+
yanked_reason=yanked_reason,
|
| 388 |
+
metadata_file_data=metadata_file_data,
|
| 389 |
+
)
|
| 390 |
+
|
| 391 |
+
def __str__(self) -> str:
|
| 392 |
+
if self.requires_python:
|
| 393 |
+
rp = f" (requires-python:{self.requires_python})"
|
| 394 |
+
else:
|
| 395 |
+
rp = ""
|
| 396 |
+
if self.comes_from:
|
| 397 |
+
return f"{self.redacted_url} (from {self.comes_from}){rp}"
|
| 398 |
+
else:
|
| 399 |
+
return self.redacted_url
|
| 400 |
+
|
| 401 |
+
def __repr__(self) -> str:
|
| 402 |
+
return f"<Link {self}>"
|
| 403 |
+
|
| 404 |
+
def __hash__(self) -> int:
|
| 405 |
+
return hash(self.url)
|
| 406 |
+
|
| 407 |
+
def __eq__(self, other: Any) -> bool:
|
| 408 |
+
if not isinstance(other, Link):
|
| 409 |
+
return NotImplemented
|
| 410 |
+
return self.url == other.url
|
| 411 |
+
|
| 412 |
+
def __lt__(self, other: Any) -> bool:
|
| 413 |
+
if not isinstance(other, Link):
|
| 414 |
+
return NotImplemented
|
| 415 |
+
return self.url < other.url
|
| 416 |
+
|
| 417 |
+
@property
|
| 418 |
+
def url(self) -> str:
|
| 419 |
+
return self._url
|
| 420 |
+
|
| 421 |
+
@property
|
| 422 |
+
def redacted_url(self) -> str:
|
| 423 |
+
return redact_auth_from_url(self.url)
|
| 424 |
+
|
| 425 |
+
@property
|
| 426 |
+
def filename(self) -> str:
|
| 427 |
+
path = self.path.rstrip("/")
|
| 428 |
+
name = posixpath.basename(path)
|
| 429 |
+
if not name:
|
| 430 |
+
# Make sure we don't leak auth information if the netloc
|
| 431 |
+
# includes a username and password.
|
| 432 |
+
netloc, user_pass = split_auth_from_netloc(self.netloc)
|
| 433 |
+
return netloc
|
| 434 |
+
|
| 435 |
+
name = urllib.parse.unquote(name)
|
| 436 |
+
assert name, f"URL {self._url!r} produced no filename"
|
| 437 |
+
return name
|
| 438 |
+
|
| 439 |
+
@property
|
| 440 |
+
def file_path(self) -> str:
|
| 441 |
+
return url_to_path(self.url)
|
| 442 |
+
|
| 443 |
+
@property
|
| 444 |
+
def scheme(self) -> str:
|
| 445 |
+
return self._parsed_url.scheme
|
| 446 |
+
|
| 447 |
+
@property
|
| 448 |
+
def netloc(self) -> str:
|
| 449 |
+
"""
|
| 450 |
+
This can contain auth information.
|
| 451 |
+
"""
|
| 452 |
+
return self._parsed_url.netloc
|
| 453 |
+
|
| 454 |
+
@property
|
| 455 |
+
def path(self) -> str:
|
| 456 |
+
return self._path
|
| 457 |
+
|
| 458 |
+
def splitext(self) -> tuple[str, str]:
|
| 459 |
+
return splitext(posixpath.basename(self.path.rstrip("/")))
|
| 460 |
+
|
| 461 |
+
@property
|
| 462 |
+
def ext(self) -> str:
|
| 463 |
+
return self.splitext()[1]
|
| 464 |
+
|
| 465 |
+
@property
|
| 466 |
+
def url_without_fragment(self) -> str:
|
| 467 |
+
scheme, netloc, path, query, fragment = self._parsed_url
|
| 468 |
+
return urllib.parse.urlunsplit((scheme, netloc, path, query, ""))
|
| 469 |
+
|
| 470 |
+
_egg_fragment_re = re.compile(r"[#&]egg=([^&]*)")
|
| 471 |
+
|
| 472 |
+
# Per PEP 508.
|
| 473 |
+
_project_name_re = re.compile(
|
| 474 |
+
r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE
|
| 475 |
+
)
|
| 476 |
+
|
| 477 |
+
def _egg_fragment(self) -> str | None:
|
| 478 |
+
match = self._egg_fragment_re.search(self._url)
|
| 479 |
+
if not match:
|
| 480 |
+
return None
|
| 481 |
+
|
| 482 |
+
# An egg fragment looks like a PEP 508 project name, along with
|
| 483 |
+
# an optional extras specifier. Anything else is invalid.
|
| 484 |
+
project_name = match.group(1)
|
| 485 |
+
if not self._project_name_re.match(project_name):
|
| 486 |
+
raise InvalidEggFragment(self, project_name)
|
| 487 |
+
|
| 488 |
+
return project_name
|
| 489 |
+
|
| 490 |
+
_subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)")
|
| 491 |
+
|
| 492 |
+
@property
|
| 493 |
+
def subdirectory_fragment(self) -> str | None:
|
| 494 |
+
match = self._subdirectory_fragment_re.search(self._url)
|
| 495 |
+
if not match:
|
| 496 |
+
return None
|
| 497 |
+
return match.group(1)
|
| 498 |
+
|
| 499 |
+
def metadata_link(self) -> Link | None:
|
| 500 |
+
"""Return a link to the associated core metadata file (if any)."""
|
| 501 |
+
if self.metadata_file_data is None:
|
| 502 |
+
return None
|
| 503 |
+
metadata_url = f"{self.url_without_fragment}.metadata"
|
| 504 |
+
if self.metadata_file_data.hashes is None:
|
| 505 |
+
return Link(metadata_url)
|
| 506 |
+
return Link(metadata_url, hashes=self.metadata_file_data.hashes)
|
| 507 |
+
|
| 508 |
+
def as_hashes(self) -> Hashes:
|
| 509 |
+
return Hashes({k: [v] for k, v in self._hashes.items()})
|
| 510 |
+
|
| 511 |
+
@property
|
| 512 |
+
def hash(self) -> str | None:
|
| 513 |
+
return next(iter(self._hashes.values()), None)
|
| 514 |
+
|
| 515 |
+
@property
|
| 516 |
+
def hash_name(self) -> str | None:
|
| 517 |
+
return next(iter(self._hashes), None)
|
| 518 |
+
|
| 519 |
+
@property
|
| 520 |
+
def show_url(self) -> str:
|
| 521 |
+
return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0])
|
| 522 |
+
|
| 523 |
+
@property
|
| 524 |
+
def is_file(self) -> bool:
|
| 525 |
+
return self.scheme == "file"
|
| 526 |
+
|
| 527 |
+
def is_existing_dir(self) -> bool:
|
| 528 |
+
return self.is_file and os.path.isdir(self.file_path)
|
| 529 |
+
|
| 530 |
+
@property
|
| 531 |
+
def is_wheel(self) -> bool:
|
| 532 |
+
return self.ext == WHEEL_EXTENSION
|
| 533 |
+
|
| 534 |
+
@property
|
| 535 |
+
def is_vcs(self) -> bool:
|
| 536 |
+
from pip._internal.vcs import vcs
|
| 537 |
+
|
| 538 |
+
return self.scheme in vcs.all_schemes
|
| 539 |
+
|
| 540 |
+
@property
|
| 541 |
+
def is_yanked(self) -> bool:
|
| 542 |
+
return self.yanked_reason is not None
|
| 543 |
+
|
| 544 |
+
@property
|
| 545 |
+
def has_hash(self) -> bool:
|
| 546 |
+
return bool(self._hashes)
|
| 547 |
+
|
| 548 |
+
def is_hash_allowed(self, hashes: Hashes | None) -> bool:
|
| 549 |
+
"""
|
| 550 |
+
Return True if the link has a hash and it is allowed by `hashes`.
|
| 551 |
+
"""
|
| 552 |
+
if hashes is None:
|
| 553 |
+
return False
|
| 554 |
+
return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items())
|
| 555 |
+
|
| 556 |
+
|
| 557 |
+
class _CleanResult(NamedTuple):
|
| 558 |
+
"""Convert link for equivalency check.
|
| 559 |
+
|
| 560 |
+
This is used in the resolver to check whether two URL-specified requirements
|
| 561 |
+
likely point to the same distribution and can be considered equivalent. This
|
| 562 |
+
equivalency logic avoids comparing URLs literally, which can be too strict
|
| 563 |
+
(e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users.
|
| 564 |
+
|
| 565 |
+
Currently this does three things:
|
| 566 |
+
|
| 567 |
+
1. Drop the basic auth part. This is technically wrong since a server can
|
| 568 |
+
serve different content based on auth, but if it does that, it is even
|
| 569 |
+
impossible to guarantee two URLs without auth are equivalent, since
|
| 570 |
+
the user can input different auth information when prompted. So the
|
| 571 |
+
practical solution is to assume the auth doesn't affect the response.
|
| 572 |
+
2. Parse the query to avoid the ordering issue. Note that ordering under the
|
| 573 |
+
same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are
|
| 574 |
+
still considered different.
|
| 575 |
+
3. Explicitly drop most of the fragment part, except ``subdirectory=`` and
|
| 576 |
+
hash values, since it should have no impact the downloaded content. Note
|
| 577 |
+
that this drops the "egg=" part historically used to denote the requested
|
| 578 |
+
project (and extras), which is wrong in the strictest sense, but too many
|
| 579 |
+
people are supplying it inconsistently to cause superfluous resolution
|
| 580 |
+
conflicts, so we choose to also ignore them.
|
| 581 |
+
"""
|
| 582 |
+
|
| 583 |
+
parsed: urllib.parse.SplitResult
|
| 584 |
+
query: dict[str, list[str]]
|
| 585 |
+
subdirectory: str
|
| 586 |
+
hashes: dict[str, str]
|
| 587 |
+
|
| 588 |
+
|
| 589 |
+
def _clean_link(link: Link) -> _CleanResult:
|
| 590 |
+
parsed = link._parsed_url
|
| 591 |
+
netloc = parsed.netloc.rsplit("@", 1)[-1]
|
| 592 |
+
# According to RFC 8089, an empty host in file: means localhost.
|
| 593 |
+
if parsed.scheme == "file" and not netloc:
|
| 594 |
+
netloc = "localhost"
|
| 595 |
+
fragment = urllib.parse.parse_qs(parsed.fragment)
|
| 596 |
+
if "egg" in fragment:
|
| 597 |
+
logger.debug("Ignoring egg= fragment in %s", link)
|
| 598 |
+
try:
|
| 599 |
+
# If there are multiple subdirectory values, use the first one.
|
| 600 |
+
# This matches the behavior of Link.subdirectory_fragment.
|
| 601 |
+
subdirectory = fragment["subdirectory"][0]
|
| 602 |
+
except (IndexError, KeyError):
|
| 603 |
+
subdirectory = ""
|
| 604 |
+
# If there are multiple hash values under the same algorithm, use the
|
| 605 |
+
# first one. This matches the behavior of Link.hash_value.
|
| 606 |
+
hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment}
|
| 607 |
+
return _CleanResult(
|
| 608 |
+
parsed=parsed._replace(netloc=netloc, query="", fragment=""),
|
| 609 |
+
query=urllib.parse.parse_qs(parsed.query),
|
| 610 |
+
subdirectory=subdirectory,
|
| 611 |
+
hashes=hashes,
|
| 612 |
+
)
|
| 613 |
+
|
| 614 |
+
|
| 615 |
+
@functools.cache
|
| 616 |
+
def links_equivalent(link1: Link, link2: Link) -> bool:
|
| 617 |
+
return _clean_link(link1) == _clean_link(link2)
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/release_control.py
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from dataclasses import dataclass, field
|
| 4 |
+
|
| 5 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 6 |
+
|
| 7 |
+
from pip._internal.exceptions import CommandError
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
# TODO: add slots=True when Python 3.9 is dropped
|
| 11 |
+
@dataclass
|
| 12 |
+
class ReleaseControl:
|
| 13 |
+
"""Helper for managing which release types can be installed."""
|
| 14 |
+
|
| 15 |
+
all_releases: set[str] = field(default_factory=set)
|
| 16 |
+
only_final: set[str] = field(default_factory=set)
|
| 17 |
+
_order: list[tuple[str, str]] = field(
|
| 18 |
+
init=False, default_factory=list, compare=False, repr=False
|
| 19 |
+
)
|
| 20 |
+
|
| 21 |
+
def handle_mutual_excludes(
|
| 22 |
+
self, value: str, target: set[str], other: set[str], attr_name: str
|
| 23 |
+
) -> None:
|
| 24 |
+
"""Parse and apply release control option value.
|
| 25 |
+
|
| 26 |
+
Processes comma-separated package names or special values `:all:` and `:none:`.
|
| 27 |
+
|
| 28 |
+
When adding packages to target, they're removed from other to maintain mutual
|
| 29 |
+
exclusivity between all_releases and only_final. All operations are tracked in
|
| 30 |
+
order so that the original command-line argument sequence can be reconstructed
|
| 31 |
+
when passing options to build subprocesses.
|
| 32 |
+
"""
|
| 33 |
+
if value.startswith("-"):
|
| 34 |
+
raise CommandError(
|
| 35 |
+
"--all-releases / --only-final option requires 1 argument."
|
| 36 |
+
)
|
| 37 |
+
new = value.split(",")
|
| 38 |
+
while ":all:" in new:
|
| 39 |
+
other.clear()
|
| 40 |
+
target.clear()
|
| 41 |
+
target.add(":all:")
|
| 42 |
+
# Track :all: in order
|
| 43 |
+
self._order.append((attr_name, ":all:"))
|
| 44 |
+
del new[: new.index(":all:") + 1]
|
| 45 |
+
# Without a none, we want to discard everything as :all: covers it
|
| 46 |
+
if ":none:" not in new:
|
| 47 |
+
return
|
| 48 |
+
for name in new:
|
| 49 |
+
if name == ":none:":
|
| 50 |
+
target.clear()
|
| 51 |
+
# Track :none: in order
|
| 52 |
+
self._order.append((attr_name, ":none:"))
|
| 53 |
+
continue
|
| 54 |
+
name = canonicalize_name(name)
|
| 55 |
+
other.discard(name)
|
| 56 |
+
target.add(name)
|
| 57 |
+
# Track package-specific setting in order
|
| 58 |
+
self._order.append((attr_name, name))
|
| 59 |
+
|
| 60 |
+
def get_ordered_args(self) -> list[tuple[str, str]]:
|
| 61 |
+
"""
|
| 62 |
+
Get ordered list of (flag_name, value) tuples for reconstructing CLI args.
|
| 63 |
+
|
| 64 |
+
Returns:
|
| 65 |
+
List of tuples where each tuple is (attribute_name, value).
|
| 66 |
+
The attribute_name is either 'all_releases' or 'only_final'.
|
| 67 |
+
|
| 68 |
+
Example:
|
| 69 |
+
[("all_releases", ":all:"), ("only_final", "simple")]
|
| 70 |
+
would be reconstructed as:
|
| 71 |
+
["--all-releases", ":all:", "--only-final", "simple"]
|
| 72 |
+
"""
|
| 73 |
+
return self._order[:]
|
| 74 |
+
|
| 75 |
+
def allows_prereleases(self, canonical_name: NormalizedName) -> bool | None:
|
| 76 |
+
"""
|
| 77 |
+
Determine if pre-releases are allowed for a package.
|
| 78 |
+
|
| 79 |
+
Returns:
|
| 80 |
+
True: Pre-releases are allowed (package in all_releases)
|
| 81 |
+
False: Only final releases allowed (package in only_final)
|
| 82 |
+
None: No specific setting, use default behavior
|
| 83 |
+
"""
|
| 84 |
+
if canonical_name in self.all_releases:
|
| 85 |
+
return True
|
| 86 |
+
elif canonical_name in self.only_final:
|
| 87 |
+
return False
|
| 88 |
+
elif ":all:" in self.all_releases:
|
| 89 |
+
return True
|
| 90 |
+
elif ":all:" in self.only_final:
|
| 91 |
+
return False
|
| 92 |
+
return None
|
miniconda3/pkgs/pip-26.0.1-pyhc872135_0/site-packages/pip/_internal/models/scheme.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
For types associated with installation schemes.
|
| 3 |
+
|
| 4 |
+
For a general overview of available schemes and their context, see
|
| 5 |
+
https://docs.python.org/3/install/index.html#alternate-installation.
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
from dataclasses import dataclass
|
| 9 |
+
|
| 10 |
+
SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"]
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
@dataclass(frozen=True)
|
| 14 |
+
class Scheme:
|
| 15 |
+
"""A Scheme holds paths which are used as the base directories for
|
| 16 |
+
artifacts associated with a Python package.
|
| 17 |
+
"""
|
| 18 |
+
|
| 19 |
+
__slots__ = SCHEME_KEYS
|
| 20 |
+
|
| 21 |
+
platlib: str
|
| 22 |
+
purelib: str
|
| 23 |
+
headers: str
|
| 24 |
+
scripts: str
|
| 25 |
+
data: str
|