18 |
{{ diagram.title }}
19 |
{{ diagram.text }}
20 |
21 | {{ diagram.svg }}
22 |
23 |
24 | {% endfor %}
25 |
26 |
27 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/.layout.json:
--------------------------------------------------------------------------------
1 | {"fingerprint": "2752c146bc83b54ff1b8e075b9c0be67eb08afa19a3b140c4bd6455ea71fab5e", "record_relpath": "packaging-24.0.dist-info/RECORD", "root_is_purelib": true, "stash_dir": ".prefix"}
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pex-tool/pex/6c8c3fe8565196be213caee75b782dc7063e8ce9/pex/vendor/_vendored/packaging_24_0/__init__.py
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/constraints.txt:
--------------------------------------------------------------------------------
1 | packaging==24.0
2 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/INSTALLER:
--------------------------------------------------------------------------------
1 | pex
2 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/LICENSE:
--------------------------------------------------------------------------------
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.
4 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/packaging-24.0.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: flit 3.9.0
3 | Root-Is-Purelib: true
4 | Tag: py3-none-any
5 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/packaging/__init__.py:
--------------------------------------------------------------------------------
1 | # This file is dual licensed under the terms of the Apache License, Version
2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3 | # for complete details.
4 |
5 | __title__ = "packaging"
6 | __summary__ = "Core utilities for Python packages"
7 | __uri__ = "https://github.com/pypa/packaging"
8 |
9 | __version__ = "24.0"
10 |
11 | __author__ = "Donald Stufft and individual contributors"
12 | __email__ = "donald@stufft.io"
13 |
14 | __license__ = "BSD-2-Clause or Apache-2.0"
15 | __copyright__ = "2014 %s" % __author__
16 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_24_0/packaging/py.typed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pex-tool/pex/6c8c3fe8565196be213caee75b782dc7063e8ce9/pex/vendor/_vendored/packaging_24_0/packaging/py.typed
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/.layout.json:
--------------------------------------------------------------------------------
1 | {"fingerprint": "4390b6077435abbfa59ee50812f10d070650a9169b2bac4c0885764cbc6d2453", "record_relpath": "packaging-25.0.dist-info/RECORD", "root_is_purelib": true, "stash_dir": ".prefix"}
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pex-tool/pex/6c8c3fe8565196be213caee75b782dc7063e8ce9/pex/vendor/_vendored/packaging_25_0/__init__.py
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/constraints.txt:
--------------------------------------------------------------------------------
1 | packaging==25.0
2 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/INSTALLER:
--------------------------------------------------------------------------------
1 | pex
2 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: flit 3.12.0
3 | Root-Is-Purelib: true
4 | Tag: py3-none-any
5 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/packaging-25.0.dist-info/licenses/LICENSE:
--------------------------------------------------------------------------------
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.
4 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/packaging/__init__.py:
--------------------------------------------------------------------------------
1 | # This file is dual licensed under the terms of the Apache License, Version
2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3 | # for complete details.
4 |
5 | __title__ = "packaging"
6 | __summary__ = "Core utilities for Python packages"
7 | __uri__ = "https://github.com/pypa/packaging"
8 |
9 | __version__ = "25.0"
10 |
11 | __author__ = "Donald Stufft and individual contributors"
12 | __email__ = "donald@stufft.io"
13 |
14 | __license__ = "BSD-2-Clause or Apache-2.0"
15 | __copyright__ = f"2014 {__author__}"
16 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/packaging_25_0/packaging/py.typed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pex-tool/pex/6c8c3fe8565196be213caee75b782dc7063e8ce9/pex/vendor/_vendored/packaging_25_0/packaging/py.typed
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/.layout.json:
--------------------------------------------------------------------------------
1 | {"fingerprint": "ba38180edf5b3ac4ad8ff078b3d4ef7d75d778a203f18fe3f7913c96b76fa870", "record_relpath": "pip-20.3.4.dist-info/RECORD", "root_is_purelib": true, "stash_dir": ".prefix"}
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/.prefix/bin/pip:
--------------------------------------------------------------------------------
1 | #!python
2 | # -*- coding: utf-8 -*-
3 | import importlib
4 | import sys
5 |
6 | entry_point = importlib.import_module('pip._internal.cli.main')
7 | for attr in ('main',):
8 | entry_point = getattr(entry_point, attr)
9 |
10 | if __name__ == "__main__":
11 | sys.exit(entry_point())
12 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/.prefix/bin/pip3:
--------------------------------------------------------------------------------
1 | #!python
2 | # -*- coding: utf-8 -*-
3 | import importlib
4 | import sys
5 |
6 | entry_point = importlib.import_module('pip._internal.cli.main')
7 | for attr in ('main',):
8 | entry_point = getattr(entry_point, attr)
9 |
10 | if __name__ == "__main__":
11 | sys.exit(entry_point())
12 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/.prefix/bin/pip3.9:
--------------------------------------------------------------------------------
1 | #!python
2 | # -*- coding: utf-8 -*-
3 | import importlib
4 | import sys
5 |
6 | entry_point = importlib.import_module('pip._internal.cli.main')
7 | for attr in ('main',):
8 | entry_point = getattr(entry_point, attr)
9 |
10 | if __name__ == "__main__":
11 | sys.exit(entry_point())
12 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pex-tool/pex/6c8c3fe8565196be213caee75b782dc7063e8ce9/pex/vendor/_vendored/pip/__init__.py
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/INSTALLER:
--------------------------------------------------------------------------------
1 | pex
2 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2008-2020 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.
21 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.35.1)
3 | Root-Is-Purelib: true
4 | Tag: py2-none-any
5 | Tag: py3-none-any
6 |
7 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/entry_points.txt:
--------------------------------------------------------------------------------
1 | [console_scripts]
2 | pip = pip._internal.cli.main:main
3 | pip3 = pip._internal.cli.main:main
4 | pip3.9 = pip._internal.cli.main:main
5 |
6 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip-20.3.4.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip/__init__.py:
--------------------------------------------------------------------------------
1 | from pip._internal.utils.typing import MYPY_CHECK_RUNNING
2 |
3 | if MYPY_CHECK_RUNNING:
4 | from typing import List, Optional
5 |
6 |
7 | __version__ = "20.3.4"
8 |
9 |
10 | def main(args=None):
11 | # type: (Optional[List[str]]) -> int
12 | """This is an internal API only meant for use by pip's own console scripts.
13 |
14 | For additional details, see https://github.com/pypa/pip/issues/7498.
15 | """
16 | from pip._internal.utils.entrypoints import _wrapper
17 |
18 | return _wrapper(args)
19 |
--------------------------------------------------------------------------------
/pex/vendor/_vendored/pip/pip/__main__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | import os
4 | import sys
5 |
6 | # Remove '' and current working directory from the first entry
7 | # of sys.path, if present to avoid using current directory
8 | # in pip commands check, freeze, install, list and show,
9 | # when invoked as python -m pip