@scrypted/server 0.0.134 → 0.0.139
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @scrypted/server might be problematic. Click here for more details.
- package/.venv/bin/Activate.ps1 +241 -0
- package/.venv/bin/activate +66 -0
- package/.venv/bin/activate.csh +25 -0
- package/.venv/bin/activate.fish +64 -0
- package/.venv/bin/pip +8 -0
- package/.venv/bin/pip3 +8 -0
- package/.venv/bin/pip3.9 +8 -0
- package/.venv/lib/python3.9/site-packages/_distutils_hack/__init__.py +198 -0
- package/.venv/lib/python3.9/site-packages/_distutils_hack/override.py +1 -0
- package/.venv/lib/python3.9/site-packages/distutils-precedence.pth +1 -0
- package/.venv/lib/python3.9/site-packages/pgi/__init__.py +62 -0
- package/.venv/lib/python3.9/site-packages/pgi/_compat.py +74 -0
- package/.venv/lib/python3.9/site-packages/pgi/callback.py +15 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/__init__.py +12 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/_compat.py +25 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/_utils.py +119 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/__init__.py +60 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/_cdef.py +574 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/_ffi.py +25 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/error.py +13 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giarginfo.py +73 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giargument.py +36 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gibaseinfo.py +113 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gicallableinfo.py +75 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giconstantinfo.py +22 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gienuminfo.py +59 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gifieldinfo.py +40 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gifunctioninfo.py +64 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giinterfaceinfo.py +93 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giobjectinfo.py +143 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gipropertyinfo.py +28 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giregisteredtypeinfo.py +27 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/girepository.py +143 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gisignalinfo.py +55 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gistructinfo.py +55 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gitypeinfo.py +66 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/gitypelib.py +40 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gir/giunioninfo.py +66 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/glib/__init__.py +8 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/glib/_cdef.py +101 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/glib/glib.py +260 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gobject/__init__.py +15 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gobject/_cdef.py +45 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gobject/_ffi.py +26 -0
- package/.venv/lib/python3.9/site-packages/pgi/cffilib/gobject/gobject.py +27 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/__init__.py +11 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/_compat.py +20 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/_utils.py +213 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/__init__.py +71 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/error.py +13 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giarginfo.py +65 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giargument.py +58 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gibaseinfo.py +152 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gicallableinfo.py +203 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giconstantinfo.py +35 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gienuminfo.py +64 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gifieldinfo.py +46 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giinterfaceinfo.py +83 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giobjectinfo.py +134 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gipropertyinfo.py +36 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giregisteredtypeinfo.py +34 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/girepository.py +200 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gistructinfo.py +55 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gitypeinfo.py +97 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/gitypelib.py +56 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gir/giunioninfo.py +60 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/glib.py +336 -0
- package/.venv/lib/python3.9/site-packages/pgi/clib/gobject.py +405 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/__init__.py +28 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/arguments.py +640 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/backend.py +95 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/cbargs.py +152 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/cbreturn.py +77 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/cffi_backend.py +424 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/construct.py +222 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/__init__.py +11 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/main.py +184 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/types_basic.py +705 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/types_container.py +236 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/types_interface.py +402 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/types_other.py +93 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/ctypes_backend/utils.py +168 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/fieldgen.py +114 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/fields.py +244 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/funcgen.py +376 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/null_backend.py +110 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/returnvalues.py +443 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/siggen.py +157 -0
- package/.venv/lib/python3.9/site-packages/pgi/codegen/utils.py +248 -0
- package/.venv/lib/python3.9/site-packages/pgi/const.py +9 -0
- package/.venv/lib/python3.9/site-packages/pgi/constant.py +32 -0
- package/.venv/lib/python3.9/site-packages/pgi/debug.py +31 -0
- package/.venv/lib/python3.9/site-packages/pgi/enum.py +244 -0
- package/.venv/lib/python3.9/site-packages/pgi/field.py +58 -0
- package/.venv/lib/python3.9/site-packages/pgi/finalizer.py +3 -0
- package/.venv/lib/python3.9/site-packages/pgi/foreign/__init__.py +71 -0
- package/.venv/lib/python3.9/site-packages/pgi/foreign/_base.py +43 -0
- package/.venv/lib/python3.9/site-packages/pgi/foreign/cairo.py +41 -0
- package/.venv/lib/python3.9/site-packages/pgi/function.py +12 -0
- package/.venv/lib/python3.9/site-packages/pgi/gerror.py +58 -0
- package/.venv/lib/python3.9/site-packages/pgi/gtype.py +168 -0
- package/.venv/lib/python3.9/site-packages/pgi/importer.py +189 -0
- package/.venv/lib/python3.9/site-packages/pgi/module.py +141 -0
- package/.venv/lib/python3.9/site-packages/pgi/obj.py +519 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/GLib.py +1013 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/GObject.py +583 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/Gdk.py +454 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/Gio.py +237 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/Gtk.py +2412 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/Pango.py +53 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/Poppler.py +61 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/__init__.py +327 -0
- package/.venv/lib/python3.9/site-packages/pgi/overrides/keysyms.py +54 -0
- package/.venv/lib/python3.9/site-packages/pgi/properties.py +313 -0
- package/.venv/lib/python3.9/site-packages/pgi/propertyhelper.py +12 -0
- package/.venv/lib/python3.9/site-packages/pgi/repository/__init__.py +10 -0
- package/.venv/lib/python3.9/site-packages/pgi/signalhelper.py +18 -0
- package/.venv/lib/python3.9/site-packages/pgi/signals.py +122 -0
- package/.venv/lib/python3.9/site-packages/pgi/static.py +189 -0
- package/.venv/lib/python3.9/site-packages/pgi/structure.py +131 -0
- package/.venv/lib/python3.9/site-packages/pgi/util.py +342 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/COPYING +502 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/INSTALLER +1 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/METADATA +22 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/RECORD +229 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/REQUESTED +0 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/WHEEL +5 -0
- package/.venv/lib/python3.9/site-packages/pgi-0.0.11.2.dist-info/top_level.txt +1 -0
- package/.venv/lib/python3.9/site-packages/pip/__init__.py +13 -0
- package/.venv/lib/python3.9/site-packages/pip/__main__.py +31 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/__init__.py +19 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/build_env.py +293 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cache.py +264 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/__init__.py +4 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/autocompletion.py +163 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/base_command.py +214 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/cmdoptions.py +1010 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/command_context.py +27 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/main.py +70 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/main_parser.py +87 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/parser.py +292 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/progress_bars.py +250 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/req_command.py +469 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/spinners.py +157 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/__init__.py +127 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/cache.py +223 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/check.py +53 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/completion.py +96 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/configuration.py +266 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/debug.py +202 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/download.py +139 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/freeze.py +97 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/hash.py +59 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/help.py +41 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/index.py +138 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/install.py +770 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/list.py +361 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/search.py +174 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/show.py +235 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/uninstall.py +105 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/commands/wheel.py +177 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/configuration.py +367 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/distributions/base.py +36 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/distributions/installed.py +22 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/distributions/sdist.py +129 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/distributions/wheel.py +31 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/exceptions.py +402 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/index/__init__.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/index/collector.py +536 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/index/package_finder.py +993 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/index/sources.py +224 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/locations/__init__.py +446 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/locations/_distutils.py +169 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/locations/_sysconfig.py +219 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/locations/base.py +52 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/main.py +12 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/metadata/__init__.py +51 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/metadata/base.py +330 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/metadata/pkg_resources.py +146 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/__init__.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/candidate.py +34 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/direct_url.py +220 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/format_control.py +80 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/index.py +28 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/link.py +288 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/scheme.py +31 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/search_scope.py +129 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/selection_prefs.py +51 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/target_python.py +110 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/models/wheel.py +89 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/__init__.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/auth.py +323 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/cache.py +69 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/download.py +184 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/session.py +454 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/utils.py +96 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/network/xmlrpc.py +60 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/metadata.py +30 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_editable.py +34 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/metadata_legacy.py +67 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/build/wheel_legacy.py +105 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/check.py +149 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/freeze.py +254 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/install/editable_legacy.py +46 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/install/legacy.py +125 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/install/wheel.py +738 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/operations/prepare.py +632 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/pyproject.py +183 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/__init__.py +94 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/constructors.py +466 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/req_file.py +536 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/req_install.py +891 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/req_set.py +189 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/req_tracker.py +124 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/base.py +20 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py +467 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/candidates.py +540 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/factory.py +701 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +155 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/provider.py +215 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/reporter.py +68 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/requirements.py +166 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/resolver.py +251 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/self_outdated_check.py +182 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/_log.py +38 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/compat.py +63 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/compatibility_tags.py +165 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/datetime.py +11 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/deprecation.py +120 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/distutils_args.py +42 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/egg_link.py +75 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/encoding.py +36 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/entrypoints.py +27 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/filesystem.py +182 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/filetypes.py +27 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/glibc.py +88 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/hashes.py +144 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/inject_securetransport.py +35 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/logging.py +358 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/misc.py +689 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/models.py +39 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/packaging.py +84 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/parallel.py +103 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/pkg_resources.py +33 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/setuptools_build.py +167 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/subprocess.py +289 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/temp_dir.py +246 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/unpacking.py +258 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/urls.py +62 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/utils/wheel.py +182 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/vcs/bazaar.py +93 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/vcs/git.py +513 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/vcs/mercurial.py +153 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/vcs/subversion.py +318 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/vcs/versioncontrol.py +693 -0
- package/.venv/lib/python3.9/site-packages/pip/_internal/wheel_builder.py +375 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/__init__.py +111 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/__init__.py +11 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/_cmd.py +57 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py +133 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/cache.py +39 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +146 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +33 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/compat.py +29 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/controller.py +376 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/filewrapper.py +80 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/heuristics.py +135 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/serialize.py +188 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/cachecontrol/wrapper.py +29 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py +3 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/certifi/cacert.pem +4257 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/certifi/core.py +76 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/__init__.py +83 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/chardistribution.py +233 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/charsetgroupprober.py +107 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/charsetprober.py +145 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py +1 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/cli/chardetect.py +84 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/codingstatemachine.py +88 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/compat.py +36 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/enums.py +76 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/escprober.py +101 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/escsm.py +246 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/eucjpprober.py +92 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/euckrfreq.py +195 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/euctwfreq.py +387 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/euctwprober.py +46 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312freq.py +283 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/gb2312prober.py +46 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/hebrewprober.py +292 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/jpcntx.py +233 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4650 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langgreekmodel.py +4398 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4383 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4650 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langrussianmodel.py +5718 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langthaimodel.py +4383 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/langturkishmodel.py +4383 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/latin1prober.py +145 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcharsetprober.py +91 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +54 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/mbcssm.py +572 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/metadata/languages.py +310 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/sbcharsetprober.py +145 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +83 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/sjisprober.py +92 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/universaldetector.py +286 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/chardet/version.py +9 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/colorama/__init__.py +6 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/colorama/ansi.py +102 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/colorama/ansitowin32.py +258 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/colorama/initialise.py +80 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/colorama/win32.py +152 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/colorama/winterm.py +169 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/__init__.py +23 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/__init__.py +6 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/misc.py +41 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/shutil.py +764 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +84 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +786 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/_backport/tarfile.py +2607 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/compat.py +1122 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/database.py +1339 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/index.py +509 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/locators.py +1300 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/manifest.py +393 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/markers.py +147 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/metadata.py +1058 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/scripts.py +429 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/util.py +1969 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/version.py +739 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distlib/wheel.py +1053 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/distro.py +1386 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/__init__.py +35 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_ihatexml.py +289 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_inputstream.py +918 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_tokenizer.py +1735 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/__init__.py +5 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/_base.py +40 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_trie/py.py +67 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/_utils.py +159 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/constants.py +2946 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +29 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/base.py +12 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +73 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +207 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +916 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/html5parser.py +2795 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/serializer.py +409 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +30 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py +54 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +50 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +88 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/base.py +417 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +239 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +343 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +392 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +154 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/base.py +252 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +43 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +131 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py +215 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py +69 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/__init__.py +44 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/codec.py +117 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/compat.py +16 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/core.py +409 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/idnadata.py +2050 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/intranges.py +58 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/idna/uts46data.py +8438 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/msgpack/__init__.py +54 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/msgpack/_version.py +1 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/msgpack/ext.py +193 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/msgpack/fallback.py +1087 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/__about__.py +26 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/__init__.py +25 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/_manylinux.py +301 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/_musllinux.py +136 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/_structures.py +67 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/markers.py +304 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/requirements.py +146 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/specifiers.py +828 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/tags.py +484 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/utils.py +136 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/packaging/version.py +504 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/__init__.py +6 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/build.py +127 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/check.py +207 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/colorlog.py +115 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/compat.py +51 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/dirtools.py +44 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/envbuild.py +171 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/__init__.py +17 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py +363 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/meta.py +92 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pep517/wrappers.py +375 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pkg_resources/__init__.py +3296 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pkg_resources/py31compat.py +23 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/__init__.py +329 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/__main__.py +44 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/android.py +117 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/api.py +155 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/macos.py +62 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/unix.py +180 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/version.py +4 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/platformdirs/windows.py +180 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/progress/__init__.py +189 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/progress/bar.py +93 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/progress/colors.py +79 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/progress/counter.py +47 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/progress/spinner.py +45 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/pyparsing.py +7107 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py +154 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/_internal_utils.py +42 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py +533 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/api.py +159 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/auth.py +305 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/certs.py +18 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/compat.py +76 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/cookies.py +549 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/exceptions.py +127 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/help.py +132 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/hooks.py +34 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/models.py +966 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/packages.py +16 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py +781 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/status_codes.py +123 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/structures.py +105 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/requests/utils.py +1013 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/reporters.py +37 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/resolvers.py +483 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/resolvelib/structs.py +165 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/six.py +998 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/__init__.py +517 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/_asyncio.py +92 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/_utils.py +68 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/after.py +46 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/before.py +41 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/before_sleep.py +58 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/nap.py +43 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/retry.py +213 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/stop.py +96 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tenacity/wait.py +191 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tomli/__init__.py +6 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tomli/_parser.py +703 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/tomli/_re.py +83 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/__init__.py +85 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/_collections.py +337 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py +569 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py +1078 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +511 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +922 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/__init__.py +5 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/six.py +1077 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +24 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +160 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/poolmanager.py +536 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/request.py +170 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/response.py +821 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/connection.py +150 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/request.py +143 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py +602 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py +495 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/timeout.py +268 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/url.py +432 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/urllib3/util/wait.py +153 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/vendor.txt +22 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/webencodings/__init__.py +342 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/webencodings/labels.py +231 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/webencodings/mklabels.py +59 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/webencodings/tests.py +153 -0
- package/.venv/lib/python3.9/site-packages/pip/_vendor/webencodings/x_user_defined.py +325 -0
- package/.venv/lib/python3.9/site-packages/pip/py.typed +4 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/INSTALLER +1 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/LICENSE.txt +20 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/METADATA +93 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/RECORD +819 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/REQUESTED +0 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/WHEEL +5 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/entry_points.txt +5 -0
- package/.venv/lib/python3.9/site-packages/pip-21.3.1.dist-info/top_level.txt +1 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/__init__.py +3303 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/_structures.py +67 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/specifiers.py +828 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/tags.py +484 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/_vendor/pyparsing.py +5742 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/extern/__init__.py +73 -0
- package/.venv/lib/python3.9/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +6 -0
- package/.venv/lib/python3.9/site-packages/setuptools/__init__.py +244 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_deprecation_warning.py +7 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/__init__.py +24 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/_collections.py +56 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/_msvccompiler.py +561 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/archive_util.py +256 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/bcppcompiler.py +393 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/ccompiler.py +1123 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/cmd.py +403 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/__init__.py +31 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/bdist.py +143 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_dumb.py +123 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_msi.py +749 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_rpm.py +579 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/bdist_wininst.py +377 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/build.py +157 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/build_clib.py +209 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/build_ext.py +755 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/build_py.py +392 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/build_scripts.py +152 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/check.py +148 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/clean.py +76 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/config.py +344 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/install.py +775 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/install_data.py +79 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/install_egg_info.py +84 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/install_headers.py +47 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/install_lib.py +217 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/install_scripts.py +60 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/py37compat.py +30 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/register.py +304 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/sdist.py +494 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/command/upload.py +214 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/config.py +130 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/core.py +249 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/cygwinccompiler.py +362 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/debug.py +5 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/dep_util.py +92 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/dir_util.py +210 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/dist.py +1257 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/errors.py +97 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/extension.py +240 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/fancy_getopt.py +457 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/file_util.py +238 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/filelist.py +355 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/log.py +81 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/msvc9compiler.py +788 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/msvccompiler.py +643 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/py35compat.py +19 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/py38compat.py +7 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/spawn.py +106 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py +567 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/text_file.py +286 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/unixccompiler.py +325 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/util.py +548 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/version.py +363 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_distutils/versionpredicate.py +169 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_imp.py +82 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/more.py +3825 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/ordered_set.py +488 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/_structures.py +67 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/specifiers.py +828 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/tags.py +484 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/packaging/version.py +504 -0
- package/.venv/lib/python3.9/site-packages/setuptools/_vendor/pyparsing.py +5742 -0
- package/.venv/lib/python3.9/site-packages/setuptools/archive_util.py +205 -0
- package/.venv/lib/python3.9/site-packages/setuptools/build_meta.py +290 -0
- package/.venv/lib/python3.9/site-packages/setuptools/cli-32.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/cli-64.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/cli-arm64.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/cli.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/__init__.py +8 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/alias.py +78 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/bdist_egg.py +456 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/bdist_rpm.py +40 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/build_clib.py +101 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/build_ext.py +328 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/build_py.py +242 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/develop.py +193 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/dist_info.py +36 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/easy_install.py +2304 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/egg_info.py +755 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/install.py +132 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/install_egg_info.py +62 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/install_lib.py +122 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/install_scripts.py +69 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/py36compat.py +134 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/register.py +18 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/rotate.py +64 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/saveopts.py +22 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/sdist.py +196 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/setopt.py +149 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/test.py +252 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/upload.py +17 -0
- package/.venv/lib/python3.9/site-packages/setuptools/command/upload_docs.py +202 -0
- package/.venv/lib/python3.9/site-packages/setuptools/config.py +751 -0
- package/.venv/lib/python3.9/site-packages/setuptools/dep_util.py +25 -0
- package/.venv/lib/python3.9/site-packages/setuptools/depends.py +176 -0
- package/.venv/lib/python3.9/site-packages/setuptools/dist.py +1156 -0
- package/.venv/lib/python3.9/site-packages/setuptools/errors.py +40 -0
- package/.venv/lib/python3.9/site-packages/setuptools/extension.py +55 -0
- package/.venv/lib/python3.9/site-packages/setuptools/extern/__init__.py +73 -0
- package/.venv/lib/python3.9/site-packages/setuptools/glob.py +167 -0
- package/.venv/lib/python3.9/site-packages/setuptools/gui-32.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/gui-64.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/gui-arm64.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/gui.exe +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/installer.py +104 -0
- package/.venv/lib/python3.9/site-packages/setuptools/launch.py +36 -0
- package/.venv/lib/python3.9/site-packages/setuptools/logging.py +30 -0
- package/.venv/lib/python3.9/site-packages/setuptools/monkey.py +177 -0
- package/.venv/lib/python3.9/site-packages/setuptools/msvc.py +1805 -0
- package/.venv/lib/python3.9/site-packages/setuptools/namespaces.py +107 -0
- package/.venv/lib/python3.9/site-packages/setuptools/package_index.py +1127 -0
- package/.venv/lib/python3.9/site-packages/setuptools/py34compat.py +13 -0
- package/.venv/lib/python3.9/site-packages/setuptools/sandbox.py +530 -0
- package/.venv/lib/python3.9/site-packages/setuptools/script (dev).tmpl +6 -0
- package/.venv/lib/python3.9/site-packages/setuptools/script.tmpl +3 -0
- package/.venv/lib/python3.9/site-packages/setuptools/tests/integration/__init__.py +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools/tests/integration/helpers.py +61 -0
- package/.venv/lib/python3.9/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +218 -0
- package/.venv/lib/python3.9/site-packages/setuptools/unicode_utils.py +42 -0
- package/.venv/lib/python3.9/site-packages/setuptools/version.py +6 -0
- package/.venv/lib/python3.9/site-packages/setuptools/wheel.py +213 -0
- package/.venv/lib/python3.9/site-packages/setuptools/windows_support.py +29 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/INSTALLER +1 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/LICENSE +19 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/METADATA +142 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/RECORD +308 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/REQUESTED +0 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/WHEEL +5 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/entry_points.txt +56 -0
- package/.venv/lib/python3.9/site-packages/setuptools-60.5.0.dist-info/top_level.txt +3 -0
- package/.venv/pyvenv.cfg +3 -0
- package/.vscode/settings.json +1 -1
- package/dist/event-registry.js +1 -1
- package/dist/event-registry.js.map +1 -1
- package/dist/http-interfaces.js +8 -4
- package/dist/http-interfaces.js.map +1 -1
- package/dist/infer-defaults.js +1 -1
- package/dist/infer-defaults.js.map +1 -1
- package/dist/media-helpers.js +9 -25
- package/dist/media-helpers.js.map +1 -1
- package/dist/plugin/descriptor.js +1 -1
- package/dist/plugin/descriptor.js.map +1 -1
- package/dist/plugin/media.js +217 -101
- package/dist/plugin/media.js.map +1 -1
- package/dist/plugin/plugin-console.js +13 -3
- package/dist/plugin/plugin-console.js.map +1 -1
- package/dist/plugin/plugin-device.js +2 -2
- package/dist/plugin/plugin-device.js.map +1 -1
- package/dist/plugin/plugin-host-api.js +2 -2
- package/dist/plugin/plugin-host-api.js.map +1 -1
- package/dist/plugin/plugin-host.js +36 -118
- package/dist/plugin/plugin-host.js.map +1 -1
- package/dist/plugin/plugin-remote-worker.js +5 -42
- package/dist/plugin/plugin-remote-worker.js.map +1 -1
- package/dist/plugin/plugin-remote.js +4 -4
- package/dist/plugin/plugin-remote.js.map +1 -1
- package/dist/plugin/runtime/child-process-worker.js +42 -0
- package/dist/plugin/runtime/child-process-worker.js.map +1 -0
- package/dist/plugin/runtime/node-fork-worker.js +51 -0
- package/dist/plugin/runtime/node-fork-worker.js.map +1 -0
- package/dist/plugin/runtime/node-thread-worker.js +73 -0
- package/dist/plugin/runtime/node-thread-worker.js.map +1 -0
- package/dist/plugin/runtime/python-worker.js +54 -0
- package/dist/plugin/runtime/python-worker.js.map +1 -0
- package/dist/plugin/runtime/runtime-worker.js +3 -0
- package/dist/plugin/runtime/runtime-worker.js.map +1 -0
- package/dist/plugin/system.js +4 -4
- package/dist/plugin/system.js.map +1 -1
- package/dist/rpc.js +79 -55
- package/dist/rpc.js.map +1 -1
- package/dist/runtime.js +4 -3
- package/dist/runtime.js.map +1 -1
- package/dist/scrypted-main.js +14 -7
- package/dist/scrypted-main.js.map +1 -1
- package/dist/scrypted-plugin-main.js +31 -4
- package/dist/scrypted-plugin-main.js.map +1 -1
- package/dist/scrypted-server-main.js +1 -1
- package/dist/scrypted-server-main.js.map +1 -1
- package/dist/services/plugin.js +1 -1
- package/dist/services/plugin.js.map +1 -1
- package/dist/state.js +1 -1
- package/dist/state.js.map +1 -1
- package/dist/threading.js +99 -0
- package/dist/threading.js.map +1 -0
- package/package.json +10 -7
- package/python/plugin-remote.py +36 -7
- package/python/rpc.py +6 -0
- package/src/db-types.ts +1 -1
- package/src/event-registry.ts +1 -1
- package/src/http-interfaces.ts +11 -6
- package/src/infer-defaults.ts +1 -1
- package/src/media-helpers.ts +6 -27
- package/src/plugin/descriptor.ts +1 -1
- package/src/plugin/media.ts +246 -117
- package/src/plugin/plugin-api.ts +1 -1
- package/src/plugin/plugin-console.ts +16 -7
- package/src/plugin/plugin-device.ts +4 -4
- package/src/plugin/plugin-host-api.ts +3 -3
- package/src/plugin/plugin-host.ts +43 -137
- package/src/plugin/plugin-http.ts +1 -1
- package/src/plugin/plugin-lazy-remote.ts +1 -1
- package/src/plugin/plugin-remote-websocket.ts +1 -1
- package/src/plugin/plugin-remote-worker.ts +8 -45
- package/src/plugin/plugin-remote.ts +6 -6
- package/src/plugin/plugin-repl.ts +1 -1
- package/src/plugin/runtime/child-process-worker.ts +49 -0
- package/src/plugin/runtime/node-fork-worker.ts +54 -0
- package/src/plugin/runtime/node-thread-worker.ts +76 -0
- package/src/plugin/runtime/python-worker.ts +67 -0
- package/src/plugin/runtime/runtime-worker.ts +28 -0
- package/src/plugin/system.ts +5 -5
- package/src/rpc.ts +92 -66
- package/src/runtime.ts +4 -3
- package/src/scrypted-main.ts +15 -7
- package/src/scrypted-plugin-main.ts +31 -5
- package/src/scrypted-server-main.ts +1 -1
- package/src/services/plugin.ts +1 -1
- package/src/state.ts +1 -1
- package/src/threading.ts +108 -0
- package/dist/convert.js +0 -117
- package/dist/convert.js.map +0 -1
- package/src/convert.ts +0 -122
|
@@ -0,0 +1,770 @@
|
|
|
1
|
+
import errno
|
|
2
|
+
import operator
|
|
3
|
+
import os
|
|
4
|
+
import shutil
|
|
5
|
+
import site
|
|
6
|
+
from optparse import SUPPRESS_HELP, Values
|
|
7
|
+
from typing import Iterable, List, Optional
|
|
8
|
+
|
|
9
|
+
from pip._vendor.packaging.utils import canonicalize_name
|
|
10
|
+
|
|
11
|
+
from pip._internal.cache import WheelCache
|
|
12
|
+
from pip._internal.cli import cmdoptions
|
|
13
|
+
from pip._internal.cli.cmdoptions import make_target_python
|
|
14
|
+
from pip._internal.cli.req_command import (
|
|
15
|
+
RequirementCommand,
|
|
16
|
+
warn_if_run_as_root,
|
|
17
|
+
with_cleanup,
|
|
18
|
+
)
|
|
19
|
+
from pip._internal.cli.status_codes import ERROR, SUCCESS
|
|
20
|
+
from pip._internal.exceptions import CommandError, InstallationError
|
|
21
|
+
from pip._internal.locations import get_scheme
|
|
22
|
+
from pip._internal.metadata import get_environment
|
|
23
|
+
from pip._internal.models.format_control import FormatControl
|
|
24
|
+
from pip._internal.operations.check import ConflictDetails, check_install_conflicts
|
|
25
|
+
from pip._internal.req import install_given_reqs
|
|
26
|
+
from pip._internal.req.req_install import InstallRequirement
|
|
27
|
+
from pip._internal.req.req_tracker import get_requirement_tracker
|
|
28
|
+
from pip._internal.utils.compat import WINDOWS
|
|
29
|
+
from pip._internal.utils.distutils_args import parse_distutils_args
|
|
30
|
+
from pip._internal.utils.filesystem import test_writable_dir
|
|
31
|
+
from pip._internal.utils.logging import getLogger
|
|
32
|
+
from pip._internal.utils.misc import (
|
|
33
|
+
ensure_dir,
|
|
34
|
+
get_pip_version,
|
|
35
|
+
protect_pip_from_modification_on_windows,
|
|
36
|
+
write_output,
|
|
37
|
+
)
|
|
38
|
+
from pip._internal.utils.temp_dir import TempDirectory
|
|
39
|
+
from pip._internal.utils.virtualenv import (
|
|
40
|
+
running_under_virtualenv,
|
|
41
|
+
virtualenv_no_global,
|
|
42
|
+
)
|
|
43
|
+
from pip._internal.wheel_builder import (
|
|
44
|
+
BinaryAllowedPredicate,
|
|
45
|
+
build,
|
|
46
|
+
should_build_for_install_command,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
logger = getLogger(__name__)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def get_check_binary_allowed(format_control: FormatControl) -> BinaryAllowedPredicate:
|
|
53
|
+
def check_binary_allowed(req: InstallRequirement) -> bool:
|
|
54
|
+
canonical_name = canonicalize_name(req.name or "")
|
|
55
|
+
allowed_formats = format_control.get_allowed_formats(canonical_name)
|
|
56
|
+
return "binary" in allowed_formats
|
|
57
|
+
|
|
58
|
+
return check_binary_allowed
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class InstallCommand(RequirementCommand):
|
|
62
|
+
"""
|
|
63
|
+
Install packages from:
|
|
64
|
+
|
|
65
|
+
- PyPI (and other indexes) using requirement specifiers.
|
|
66
|
+
- VCS project urls.
|
|
67
|
+
- Local project directories.
|
|
68
|
+
- Local or remote source archives.
|
|
69
|
+
|
|
70
|
+
pip also supports installing from "requirements files", which provide
|
|
71
|
+
an easy way to specify a whole environment to be installed.
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
usage = """
|
|
75
|
+
%prog [options] <requirement specifier> [package-index-options] ...
|
|
76
|
+
%prog [options] -r <requirements file> [package-index-options] ...
|
|
77
|
+
%prog [options] [-e] <vcs project url> ...
|
|
78
|
+
%prog [options] [-e] <local project path> ...
|
|
79
|
+
%prog [options] <archive url/path> ..."""
|
|
80
|
+
|
|
81
|
+
def add_options(self) -> None:
|
|
82
|
+
self.cmd_opts.add_option(cmdoptions.requirements())
|
|
83
|
+
self.cmd_opts.add_option(cmdoptions.constraints())
|
|
84
|
+
self.cmd_opts.add_option(cmdoptions.no_deps())
|
|
85
|
+
self.cmd_opts.add_option(cmdoptions.pre())
|
|
86
|
+
|
|
87
|
+
self.cmd_opts.add_option(cmdoptions.editable())
|
|
88
|
+
self.cmd_opts.add_option(
|
|
89
|
+
"-t",
|
|
90
|
+
"--target",
|
|
91
|
+
dest="target_dir",
|
|
92
|
+
metavar="dir",
|
|
93
|
+
default=None,
|
|
94
|
+
help=(
|
|
95
|
+
"Install packages into <dir>. "
|
|
96
|
+
"By default this will not replace existing files/folders in "
|
|
97
|
+
"<dir>. Use --upgrade to replace existing packages in <dir> "
|
|
98
|
+
"with new versions."
|
|
99
|
+
),
|
|
100
|
+
)
|
|
101
|
+
cmdoptions.add_target_python_options(self.cmd_opts)
|
|
102
|
+
|
|
103
|
+
self.cmd_opts.add_option(
|
|
104
|
+
"--user",
|
|
105
|
+
dest="use_user_site",
|
|
106
|
+
action="store_true",
|
|
107
|
+
help=(
|
|
108
|
+
"Install to the Python user install directory for your "
|
|
109
|
+
"platform. Typically ~/.local/, or %APPDATA%\\Python on "
|
|
110
|
+
"Windows. (See the Python documentation for site.USER_BASE "
|
|
111
|
+
"for full details.)"
|
|
112
|
+
),
|
|
113
|
+
)
|
|
114
|
+
self.cmd_opts.add_option(
|
|
115
|
+
"--no-user",
|
|
116
|
+
dest="use_user_site",
|
|
117
|
+
action="store_false",
|
|
118
|
+
help=SUPPRESS_HELP,
|
|
119
|
+
)
|
|
120
|
+
self.cmd_opts.add_option(
|
|
121
|
+
"--root",
|
|
122
|
+
dest="root_path",
|
|
123
|
+
metavar="dir",
|
|
124
|
+
default=None,
|
|
125
|
+
help="Install everything relative to this alternate root directory.",
|
|
126
|
+
)
|
|
127
|
+
self.cmd_opts.add_option(
|
|
128
|
+
"--prefix",
|
|
129
|
+
dest="prefix_path",
|
|
130
|
+
metavar="dir",
|
|
131
|
+
default=None,
|
|
132
|
+
help=(
|
|
133
|
+
"Installation prefix where lib, bin and other top-level "
|
|
134
|
+
"folders are placed"
|
|
135
|
+
),
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
self.cmd_opts.add_option(cmdoptions.src())
|
|
139
|
+
|
|
140
|
+
self.cmd_opts.add_option(
|
|
141
|
+
"-U",
|
|
142
|
+
"--upgrade",
|
|
143
|
+
dest="upgrade",
|
|
144
|
+
action="store_true",
|
|
145
|
+
help=(
|
|
146
|
+
"Upgrade all specified packages to the newest available "
|
|
147
|
+
"version. The handling of dependencies depends on the "
|
|
148
|
+
"upgrade-strategy used."
|
|
149
|
+
),
|
|
150
|
+
)
|
|
151
|
+
|
|
152
|
+
self.cmd_opts.add_option(
|
|
153
|
+
"--upgrade-strategy",
|
|
154
|
+
dest="upgrade_strategy",
|
|
155
|
+
default="only-if-needed",
|
|
156
|
+
choices=["only-if-needed", "eager"],
|
|
157
|
+
help=(
|
|
158
|
+
"Determines how dependency upgrading should be handled "
|
|
159
|
+
"[default: %default]. "
|
|
160
|
+
'"eager" - dependencies are upgraded regardless of '
|
|
161
|
+
"whether the currently installed version satisfies the "
|
|
162
|
+
"requirements of the upgraded package(s). "
|
|
163
|
+
'"only-if-needed" - are upgraded only when they do not '
|
|
164
|
+
"satisfy the requirements of the upgraded package(s)."
|
|
165
|
+
),
|
|
166
|
+
)
|
|
167
|
+
|
|
168
|
+
self.cmd_opts.add_option(
|
|
169
|
+
"--force-reinstall",
|
|
170
|
+
dest="force_reinstall",
|
|
171
|
+
action="store_true",
|
|
172
|
+
help="Reinstall all packages even if they are already up-to-date.",
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
self.cmd_opts.add_option(
|
|
176
|
+
"-I",
|
|
177
|
+
"--ignore-installed",
|
|
178
|
+
dest="ignore_installed",
|
|
179
|
+
action="store_true",
|
|
180
|
+
help=(
|
|
181
|
+
"Ignore the installed packages, overwriting them. "
|
|
182
|
+
"This can break your system if the existing package "
|
|
183
|
+
"is of a different version or was installed "
|
|
184
|
+
"with a different package manager!"
|
|
185
|
+
),
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
self.cmd_opts.add_option(cmdoptions.ignore_requires_python())
|
|
189
|
+
self.cmd_opts.add_option(cmdoptions.no_build_isolation())
|
|
190
|
+
self.cmd_opts.add_option(cmdoptions.use_pep517())
|
|
191
|
+
self.cmd_opts.add_option(cmdoptions.no_use_pep517())
|
|
192
|
+
|
|
193
|
+
self.cmd_opts.add_option(cmdoptions.install_options())
|
|
194
|
+
self.cmd_opts.add_option(cmdoptions.global_options())
|
|
195
|
+
|
|
196
|
+
self.cmd_opts.add_option(
|
|
197
|
+
"--compile",
|
|
198
|
+
action="store_true",
|
|
199
|
+
dest="compile",
|
|
200
|
+
default=True,
|
|
201
|
+
help="Compile Python source files to bytecode",
|
|
202
|
+
)
|
|
203
|
+
|
|
204
|
+
self.cmd_opts.add_option(
|
|
205
|
+
"--no-compile",
|
|
206
|
+
action="store_false",
|
|
207
|
+
dest="compile",
|
|
208
|
+
help="Do not compile Python source files to bytecode",
|
|
209
|
+
)
|
|
210
|
+
|
|
211
|
+
self.cmd_opts.add_option(
|
|
212
|
+
"--no-warn-script-location",
|
|
213
|
+
action="store_false",
|
|
214
|
+
dest="warn_script_location",
|
|
215
|
+
default=True,
|
|
216
|
+
help="Do not warn when installing scripts outside PATH",
|
|
217
|
+
)
|
|
218
|
+
self.cmd_opts.add_option(
|
|
219
|
+
"--no-warn-conflicts",
|
|
220
|
+
action="store_false",
|
|
221
|
+
dest="warn_about_conflicts",
|
|
222
|
+
default=True,
|
|
223
|
+
help="Do not warn about broken dependencies",
|
|
224
|
+
)
|
|
225
|
+
|
|
226
|
+
self.cmd_opts.add_option(cmdoptions.no_binary())
|
|
227
|
+
self.cmd_opts.add_option(cmdoptions.only_binary())
|
|
228
|
+
self.cmd_opts.add_option(cmdoptions.prefer_binary())
|
|
229
|
+
self.cmd_opts.add_option(cmdoptions.require_hashes())
|
|
230
|
+
self.cmd_opts.add_option(cmdoptions.progress_bar())
|
|
231
|
+
|
|
232
|
+
index_opts = cmdoptions.make_option_group(
|
|
233
|
+
cmdoptions.index_group,
|
|
234
|
+
self.parser,
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
self.parser.insert_option_group(0, index_opts)
|
|
238
|
+
self.parser.insert_option_group(0, self.cmd_opts)
|
|
239
|
+
|
|
240
|
+
@with_cleanup
|
|
241
|
+
def run(self, options: Values, args: List[str]) -> int:
|
|
242
|
+
if options.use_user_site and options.target_dir is not None:
|
|
243
|
+
raise CommandError("Can not combine '--user' and '--target'")
|
|
244
|
+
|
|
245
|
+
cmdoptions.check_install_build_global(options)
|
|
246
|
+
upgrade_strategy = "to-satisfy-only"
|
|
247
|
+
if options.upgrade:
|
|
248
|
+
upgrade_strategy = options.upgrade_strategy
|
|
249
|
+
|
|
250
|
+
cmdoptions.check_dist_restriction(options, check_target=True)
|
|
251
|
+
|
|
252
|
+
install_options = options.install_options or []
|
|
253
|
+
|
|
254
|
+
logger.verbose("Using %s", get_pip_version())
|
|
255
|
+
options.use_user_site = decide_user_install(
|
|
256
|
+
options.use_user_site,
|
|
257
|
+
prefix_path=options.prefix_path,
|
|
258
|
+
target_dir=options.target_dir,
|
|
259
|
+
root_path=options.root_path,
|
|
260
|
+
isolated_mode=options.isolated_mode,
|
|
261
|
+
)
|
|
262
|
+
|
|
263
|
+
target_temp_dir: Optional[TempDirectory] = None
|
|
264
|
+
target_temp_dir_path: Optional[str] = None
|
|
265
|
+
if options.target_dir:
|
|
266
|
+
options.ignore_installed = True
|
|
267
|
+
options.target_dir = os.path.abspath(options.target_dir)
|
|
268
|
+
if (
|
|
269
|
+
# fmt: off
|
|
270
|
+
os.path.exists(options.target_dir) and
|
|
271
|
+
not os.path.isdir(options.target_dir)
|
|
272
|
+
# fmt: on
|
|
273
|
+
):
|
|
274
|
+
raise CommandError(
|
|
275
|
+
"Target path exists but is not a directory, will not continue."
|
|
276
|
+
)
|
|
277
|
+
|
|
278
|
+
# Create a target directory for using with the target option
|
|
279
|
+
target_temp_dir = TempDirectory(kind="target")
|
|
280
|
+
target_temp_dir_path = target_temp_dir.path
|
|
281
|
+
self.enter_context(target_temp_dir)
|
|
282
|
+
|
|
283
|
+
global_options = options.global_options or []
|
|
284
|
+
|
|
285
|
+
session = self.get_default_session(options)
|
|
286
|
+
|
|
287
|
+
target_python = make_target_python(options)
|
|
288
|
+
finder = self._build_package_finder(
|
|
289
|
+
options=options,
|
|
290
|
+
session=session,
|
|
291
|
+
target_python=target_python,
|
|
292
|
+
ignore_requires_python=options.ignore_requires_python,
|
|
293
|
+
)
|
|
294
|
+
wheel_cache = WheelCache(options.cache_dir, options.format_control)
|
|
295
|
+
|
|
296
|
+
req_tracker = self.enter_context(get_requirement_tracker())
|
|
297
|
+
|
|
298
|
+
directory = TempDirectory(
|
|
299
|
+
delete=not options.no_clean,
|
|
300
|
+
kind="install",
|
|
301
|
+
globally_managed=True,
|
|
302
|
+
)
|
|
303
|
+
|
|
304
|
+
try:
|
|
305
|
+
reqs = self.get_requirements(args, options, finder, session)
|
|
306
|
+
|
|
307
|
+
# Only when installing is it permitted to use PEP 660.
|
|
308
|
+
# In other circumstances (pip wheel, pip download) we generate
|
|
309
|
+
# regular (i.e. non editable) metadata and wheels.
|
|
310
|
+
for req in reqs:
|
|
311
|
+
req.permit_editable_wheels = True
|
|
312
|
+
|
|
313
|
+
reject_location_related_install_options(reqs, options.install_options)
|
|
314
|
+
|
|
315
|
+
preparer = self.make_requirement_preparer(
|
|
316
|
+
temp_build_dir=directory,
|
|
317
|
+
options=options,
|
|
318
|
+
req_tracker=req_tracker,
|
|
319
|
+
session=session,
|
|
320
|
+
finder=finder,
|
|
321
|
+
use_user_site=options.use_user_site,
|
|
322
|
+
)
|
|
323
|
+
resolver = self.make_resolver(
|
|
324
|
+
preparer=preparer,
|
|
325
|
+
finder=finder,
|
|
326
|
+
options=options,
|
|
327
|
+
wheel_cache=wheel_cache,
|
|
328
|
+
use_user_site=options.use_user_site,
|
|
329
|
+
ignore_installed=options.ignore_installed,
|
|
330
|
+
ignore_requires_python=options.ignore_requires_python,
|
|
331
|
+
force_reinstall=options.force_reinstall,
|
|
332
|
+
upgrade_strategy=upgrade_strategy,
|
|
333
|
+
use_pep517=options.use_pep517,
|
|
334
|
+
)
|
|
335
|
+
|
|
336
|
+
self.trace_basic_info(finder)
|
|
337
|
+
|
|
338
|
+
requirement_set = resolver.resolve(
|
|
339
|
+
reqs, check_supported_wheels=not options.target_dir
|
|
340
|
+
)
|
|
341
|
+
|
|
342
|
+
try:
|
|
343
|
+
pip_req = requirement_set.get_requirement("pip")
|
|
344
|
+
except KeyError:
|
|
345
|
+
modifying_pip = False
|
|
346
|
+
else:
|
|
347
|
+
# If we're not replacing an already installed pip,
|
|
348
|
+
# we're not modifying it.
|
|
349
|
+
modifying_pip = pip_req.satisfied_by is None
|
|
350
|
+
protect_pip_from_modification_on_windows(modifying_pip=modifying_pip)
|
|
351
|
+
|
|
352
|
+
check_binary_allowed = get_check_binary_allowed(finder.format_control)
|
|
353
|
+
|
|
354
|
+
reqs_to_build = [
|
|
355
|
+
r
|
|
356
|
+
for r in requirement_set.requirements.values()
|
|
357
|
+
if should_build_for_install_command(r, check_binary_allowed)
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
_, build_failures = build(
|
|
361
|
+
reqs_to_build,
|
|
362
|
+
wheel_cache=wheel_cache,
|
|
363
|
+
verify=True,
|
|
364
|
+
build_options=[],
|
|
365
|
+
global_options=[],
|
|
366
|
+
)
|
|
367
|
+
|
|
368
|
+
# If we're using PEP 517, we cannot do a legacy setup.py install
|
|
369
|
+
# so we fail here.
|
|
370
|
+
pep517_build_failure_names: List[str] = [
|
|
371
|
+
r.name for r in build_failures if r.use_pep517 # type: ignore
|
|
372
|
+
]
|
|
373
|
+
if pep517_build_failure_names:
|
|
374
|
+
raise InstallationError(
|
|
375
|
+
"Could not build wheels for {}, which is required to "
|
|
376
|
+
"install pyproject.toml-based projects".format(
|
|
377
|
+
", ".join(pep517_build_failure_names)
|
|
378
|
+
)
|
|
379
|
+
)
|
|
380
|
+
|
|
381
|
+
# For now, we just warn about failures building legacy
|
|
382
|
+
# requirements, as we'll fall through to a setup.py install for
|
|
383
|
+
# those.
|
|
384
|
+
for r in build_failures:
|
|
385
|
+
if not r.use_pep517:
|
|
386
|
+
r.legacy_install_reason = 8368
|
|
387
|
+
|
|
388
|
+
to_install = resolver.get_installation_order(requirement_set)
|
|
389
|
+
|
|
390
|
+
# Check for conflicts in the package set we're installing.
|
|
391
|
+
conflicts: Optional[ConflictDetails] = None
|
|
392
|
+
should_warn_about_conflicts = (
|
|
393
|
+
not options.ignore_dependencies and options.warn_about_conflicts
|
|
394
|
+
)
|
|
395
|
+
if should_warn_about_conflicts:
|
|
396
|
+
conflicts = self._determine_conflicts(to_install)
|
|
397
|
+
|
|
398
|
+
# Don't warn about script install locations if
|
|
399
|
+
# --target or --prefix has been specified
|
|
400
|
+
warn_script_location = options.warn_script_location
|
|
401
|
+
if options.target_dir or options.prefix_path:
|
|
402
|
+
warn_script_location = False
|
|
403
|
+
|
|
404
|
+
installed = install_given_reqs(
|
|
405
|
+
to_install,
|
|
406
|
+
install_options,
|
|
407
|
+
global_options,
|
|
408
|
+
root=options.root_path,
|
|
409
|
+
home=target_temp_dir_path,
|
|
410
|
+
prefix=options.prefix_path,
|
|
411
|
+
warn_script_location=warn_script_location,
|
|
412
|
+
use_user_site=options.use_user_site,
|
|
413
|
+
pycompile=options.compile,
|
|
414
|
+
)
|
|
415
|
+
|
|
416
|
+
lib_locations = get_lib_location_guesses(
|
|
417
|
+
user=options.use_user_site,
|
|
418
|
+
home=target_temp_dir_path,
|
|
419
|
+
root=options.root_path,
|
|
420
|
+
prefix=options.prefix_path,
|
|
421
|
+
isolated=options.isolated_mode,
|
|
422
|
+
)
|
|
423
|
+
env = get_environment(lib_locations)
|
|
424
|
+
|
|
425
|
+
installed.sort(key=operator.attrgetter("name"))
|
|
426
|
+
items = []
|
|
427
|
+
for result in installed:
|
|
428
|
+
item = result.name
|
|
429
|
+
try:
|
|
430
|
+
installed_dist = env.get_distribution(item)
|
|
431
|
+
if installed_dist is not None:
|
|
432
|
+
item = f"{item}-{installed_dist.version}"
|
|
433
|
+
except Exception:
|
|
434
|
+
pass
|
|
435
|
+
items.append(item)
|
|
436
|
+
|
|
437
|
+
if conflicts is not None:
|
|
438
|
+
self._warn_about_conflicts(
|
|
439
|
+
conflicts,
|
|
440
|
+
resolver_variant=self.determine_resolver_variant(options),
|
|
441
|
+
)
|
|
442
|
+
|
|
443
|
+
installed_desc = " ".join(items)
|
|
444
|
+
if installed_desc:
|
|
445
|
+
write_output(
|
|
446
|
+
"Successfully installed %s",
|
|
447
|
+
installed_desc,
|
|
448
|
+
)
|
|
449
|
+
except OSError as error:
|
|
450
|
+
show_traceback = self.verbosity >= 1
|
|
451
|
+
|
|
452
|
+
message = create_os_error_message(
|
|
453
|
+
error,
|
|
454
|
+
show_traceback,
|
|
455
|
+
options.use_user_site,
|
|
456
|
+
)
|
|
457
|
+
logger.error(message, exc_info=show_traceback) # noqa
|
|
458
|
+
|
|
459
|
+
return ERROR
|
|
460
|
+
|
|
461
|
+
if options.target_dir:
|
|
462
|
+
assert target_temp_dir
|
|
463
|
+
self._handle_target_dir(
|
|
464
|
+
options.target_dir, target_temp_dir, options.upgrade
|
|
465
|
+
)
|
|
466
|
+
|
|
467
|
+
warn_if_run_as_root()
|
|
468
|
+
return SUCCESS
|
|
469
|
+
|
|
470
|
+
def _handle_target_dir(
|
|
471
|
+
self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool
|
|
472
|
+
) -> None:
|
|
473
|
+
ensure_dir(target_dir)
|
|
474
|
+
|
|
475
|
+
# Checking both purelib and platlib directories for installed
|
|
476
|
+
# packages to be moved to target directory
|
|
477
|
+
lib_dir_list = []
|
|
478
|
+
|
|
479
|
+
# Checking both purelib and platlib directories for installed
|
|
480
|
+
# packages to be moved to target directory
|
|
481
|
+
scheme = get_scheme("", home=target_temp_dir.path)
|
|
482
|
+
purelib_dir = scheme.purelib
|
|
483
|
+
platlib_dir = scheme.platlib
|
|
484
|
+
data_dir = scheme.data
|
|
485
|
+
|
|
486
|
+
if os.path.exists(purelib_dir):
|
|
487
|
+
lib_dir_list.append(purelib_dir)
|
|
488
|
+
if os.path.exists(platlib_dir) and platlib_dir != purelib_dir:
|
|
489
|
+
lib_dir_list.append(platlib_dir)
|
|
490
|
+
if os.path.exists(data_dir):
|
|
491
|
+
lib_dir_list.append(data_dir)
|
|
492
|
+
|
|
493
|
+
for lib_dir in lib_dir_list:
|
|
494
|
+
for item in os.listdir(lib_dir):
|
|
495
|
+
if lib_dir == data_dir:
|
|
496
|
+
ddir = os.path.join(data_dir, item)
|
|
497
|
+
if any(s.startswith(ddir) for s in lib_dir_list[:-1]):
|
|
498
|
+
continue
|
|
499
|
+
target_item_dir = os.path.join(target_dir, item)
|
|
500
|
+
if os.path.exists(target_item_dir):
|
|
501
|
+
if not upgrade:
|
|
502
|
+
logger.warning(
|
|
503
|
+
"Target directory %s already exists. Specify "
|
|
504
|
+
"--upgrade to force replacement.",
|
|
505
|
+
target_item_dir,
|
|
506
|
+
)
|
|
507
|
+
continue
|
|
508
|
+
if os.path.islink(target_item_dir):
|
|
509
|
+
logger.warning(
|
|
510
|
+
"Target directory %s already exists and is "
|
|
511
|
+
"a link. pip will not automatically replace "
|
|
512
|
+
"links, please remove if replacement is "
|
|
513
|
+
"desired.",
|
|
514
|
+
target_item_dir,
|
|
515
|
+
)
|
|
516
|
+
continue
|
|
517
|
+
if os.path.isdir(target_item_dir):
|
|
518
|
+
shutil.rmtree(target_item_dir)
|
|
519
|
+
else:
|
|
520
|
+
os.remove(target_item_dir)
|
|
521
|
+
|
|
522
|
+
shutil.move(os.path.join(lib_dir, item), target_item_dir)
|
|
523
|
+
|
|
524
|
+
def _determine_conflicts(
|
|
525
|
+
self, to_install: List[InstallRequirement]
|
|
526
|
+
) -> Optional[ConflictDetails]:
|
|
527
|
+
try:
|
|
528
|
+
return check_install_conflicts(to_install)
|
|
529
|
+
except Exception:
|
|
530
|
+
logger.exception(
|
|
531
|
+
"Error while checking for conflicts. Please file an issue on "
|
|
532
|
+
"pip's issue tracker: https://github.com/pypa/pip/issues/new"
|
|
533
|
+
)
|
|
534
|
+
return None
|
|
535
|
+
|
|
536
|
+
def _warn_about_conflicts(
|
|
537
|
+
self, conflict_details: ConflictDetails, resolver_variant: str
|
|
538
|
+
) -> None:
|
|
539
|
+
package_set, (missing, conflicting) = conflict_details
|
|
540
|
+
if not missing and not conflicting:
|
|
541
|
+
return
|
|
542
|
+
|
|
543
|
+
parts: List[str] = []
|
|
544
|
+
if resolver_variant == "legacy":
|
|
545
|
+
parts.append(
|
|
546
|
+
"pip's legacy dependency resolver does not consider dependency "
|
|
547
|
+
"conflicts when selecting packages. This behaviour is the "
|
|
548
|
+
"source of the following dependency conflicts."
|
|
549
|
+
)
|
|
550
|
+
else:
|
|
551
|
+
assert resolver_variant == "2020-resolver"
|
|
552
|
+
parts.append(
|
|
553
|
+
"pip's dependency resolver does not currently take into account "
|
|
554
|
+
"all the packages that are installed. This behaviour is the "
|
|
555
|
+
"source of the following dependency conflicts."
|
|
556
|
+
)
|
|
557
|
+
|
|
558
|
+
# NOTE: There is some duplication here, with commands/check.py
|
|
559
|
+
for project_name in missing:
|
|
560
|
+
version = package_set[project_name][0]
|
|
561
|
+
for dependency in missing[project_name]:
|
|
562
|
+
message = (
|
|
563
|
+
"{name} {version} requires {requirement}, "
|
|
564
|
+
"which is not installed."
|
|
565
|
+
).format(
|
|
566
|
+
name=project_name,
|
|
567
|
+
version=version,
|
|
568
|
+
requirement=dependency[1],
|
|
569
|
+
)
|
|
570
|
+
parts.append(message)
|
|
571
|
+
|
|
572
|
+
for project_name in conflicting:
|
|
573
|
+
version = package_set[project_name][0]
|
|
574
|
+
for dep_name, dep_version, req in conflicting[project_name]:
|
|
575
|
+
message = (
|
|
576
|
+
"{name} {version} requires {requirement}, but {you} have "
|
|
577
|
+
"{dep_name} {dep_version} which is incompatible."
|
|
578
|
+
).format(
|
|
579
|
+
name=project_name,
|
|
580
|
+
version=version,
|
|
581
|
+
requirement=req,
|
|
582
|
+
dep_name=dep_name,
|
|
583
|
+
dep_version=dep_version,
|
|
584
|
+
you=("you" if resolver_variant == "2020-resolver" else "you'll"),
|
|
585
|
+
)
|
|
586
|
+
parts.append(message)
|
|
587
|
+
|
|
588
|
+
logger.critical("\n".join(parts))
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
def get_lib_location_guesses(
|
|
592
|
+
user: bool = False,
|
|
593
|
+
home: Optional[str] = None,
|
|
594
|
+
root: Optional[str] = None,
|
|
595
|
+
isolated: bool = False,
|
|
596
|
+
prefix: Optional[str] = None,
|
|
597
|
+
) -> List[str]:
|
|
598
|
+
scheme = get_scheme(
|
|
599
|
+
"",
|
|
600
|
+
user=user,
|
|
601
|
+
home=home,
|
|
602
|
+
root=root,
|
|
603
|
+
isolated=isolated,
|
|
604
|
+
prefix=prefix,
|
|
605
|
+
)
|
|
606
|
+
return [scheme.purelib, scheme.platlib]
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
def site_packages_writable(root: Optional[str], isolated: bool) -> bool:
|
|
610
|
+
return all(
|
|
611
|
+
test_writable_dir(d)
|
|
612
|
+
for d in set(get_lib_location_guesses(root=root, isolated=isolated))
|
|
613
|
+
)
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
def decide_user_install(
|
|
617
|
+
use_user_site: Optional[bool],
|
|
618
|
+
prefix_path: Optional[str] = None,
|
|
619
|
+
target_dir: Optional[str] = None,
|
|
620
|
+
root_path: Optional[str] = None,
|
|
621
|
+
isolated_mode: bool = False,
|
|
622
|
+
) -> bool:
|
|
623
|
+
"""Determine whether to do a user install based on the input options.
|
|
624
|
+
|
|
625
|
+
If use_user_site is False, no additional checks are done.
|
|
626
|
+
If use_user_site is True, it is checked for compatibility with other
|
|
627
|
+
options.
|
|
628
|
+
If use_user_site is None, the default behaviour depends on the environment,
|
|
629
|
+
which is provided by the other arguments.
|
|
630
|
+
"""
|
|
631
|
+
# In some cases (config from tox), use_user_site can be set to an integer
|
|
632
|
+
# rather than a bool, which 'use_user_site is False' wouldn't catch.
|
|
633
|
+
if (use_user_site is not None) and (not use_user_site):
|
|
634
|
+
logger.debug("Non-user install by explicit request")
|
|
635
|
+
return False
|
|
636
|
+
|
|
637
|
+
if use_user_site:
|
|
638
|
+
if prefix_path:
|
|
639
|
+
raise CommandError(
|
|
640
|
+
"Can not combine '--user' and '--prefix' as they imply "
|
|
641
|
+
"different installation locations"
|
|
642
|
+
)
|
|
643
|
+
if virtualenv_no_global():
|
|
644
|
+
raise InstallationError(
|
|
645
|
+
"Can not perform a '--user' install. User site-packages "
|
|
646
|
+
"are not visible in this virtualenv."
|
|
647
|
+
)
|
|
648
|
+
logger.debug("User install by explicit request")
|
|
649
|
+
return True
|
|
650
|
+
|
|
651
|
+
# If we are here, user installs have not been explicitly requested/avoided
|
|
652
|
+
assert use_user_site is None
|
|
653
|
+
|
|
654
|
+
# user install incompatible with --prefix/--target
|
|
655
|
+
if prefix_path or target_dir:
|
|
656
|
+
logger.debug("Non-user install due to --prefix or --target option")
|
|
657
|
+
return False
|
|
658
|
+
|
|
659
|
+
# If user installs are not enabled, choose a non-user install
|
|
660
|
+
if not site.ENABLE_USER_SITE:
|
|
661
|
+
logger.debug("Non-user install because user site-packages disabled")
|
|
662
|
+
return False
|
|
663
|
+
|
|
664
|
+
# If we have permission for a non-user install, do that,
|
|
665
|
+
# otherwise do a user install.
|
|
666
|
+
if site_packages_writable(root=root_path, isolated=isolated_mode):
|
|
667
|
+
logger.debug("Non-user install because site-packages writeable")
|
|
668
|
+
return False
|
|
669
|
+
|
|
670
|
+
logger.info(
|
|
671
|
+
"Defaulting to user installation because normal site-packages "
|
|
672
|
+
"is not writeable"
|
|
673
|
+
)
|
|
674
|
+
return True
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
def reject_location_related_install_options(
|
|
678
|
+
requirements: List[InstallRequirement], options: Optional[List[str]]
|
|
679
|
+
) -> None:
|
|
680
|
+
"""If any location-changing --install-option arguments were passed for
|
|
681
|
+
requirements or on the command-line, then show a deprecation warning.
|
|
682
|
+
"""
|
|
683
|
+
|
|
684
|
+
def format_options(option_names: Iterable[str]) -> List[str]:
|
|
685
|
+
return ["--{}".format(name.replace("_", "-")) for name in option_names]
|
|
686
|
+
|
|
687
|
+
offenders = []
|
|
688
|
+
|
|
689
|
+
for requirement in requirements:
|
|
690
|
+
install_options = requirement.install_options
|
|
691
|
+
location_options = parse_distutils_args(install_options)
|
|
692
|
+
if location_options:
|
|
693
|
+
offenders.append(
|
|
694
|
+
"{!r} from {}".format(
|
|
695
|
+
format_options(location_options.keys()), requirement
|
|
696
|
+
)
|
|
697
|
+
)
|
|
698
|
+
|
|
699
|
+
if options:
|
|
700
|
+
location_options = parse_distutils_args(options)
|
|
701
|
+
if location_options:
|
|
702
|
+
offenders.append(
|
|
703
|
+
"{!r} from command line".format(format_options(location_options.keys()))
|
|
704
|
+
)
|
|
705
|
+
|
|
706
|
+
if not offenders:
|
|
707
|
+
return
|
|
708
|
+
|
|
709
|
+
raise CommandError(
|
|
710
|
+
"Location-changing options found in --install-option: {}."
|
|
711
|
+
" This is unsupported, use pip-level options like --user,"
|
|
712
|
+
" --prefix, --root, and --target instead.".format("; ".join(offenders))
|
|
713
|
+
)
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
def create_os_error_message(
|
|
717
|
+
error: OSError, show_traceback: bool, using_user_site: bool
|
|
718
|
+
) -> str:
|
|
719
|
+
"""Format an error message for an OSError
|
|
720
|
+
|
|
721
|
+
It may occur anytime during the execution of the install command.
|
|
722
|
+
"""
|
|
723
|
+
parts = []
|
|
724
|
+
|
|
725
|
+
# Mention the error if we are not going to show a traceback
|
|
726
|
+
parts.append("Could not install packages due to an OSError")
|
|
727
|
+
if not show_traceback:
|
|
728
|
+
parts.append(": ")
|
|
729
|
+
parts.append(str(error))
|
|
730
|
+
else:
|
|
731
|
+
parts.append(".")
|
|
732
|
+
|
|
733
|
+
# Spilt the error indication from a helper message (if any)
|
|
734
|
+
parts[-1] += "\n"
|
|
735
|
+
|
|
736
|
+
# Suggest useful actions to the user:
|
|
737
|
+
# (1) using user site-packages or (2) verifying the permissions
|
|
738
|
+
if error.errno == errno.EACCES:
|
|
739
|
+
user_option_part = "Consider using the `--user` option"
|
|
740
|
+
permissions_part = "Check the permissions"
|
|
741
|
+
|
|
742
|
+
if not running_under_virtualenv() and not using_user_site:
|
|
743
|
+
parts.extend(
|
|
744
|
+
[
|
|
745
|
+
user_option_part,
|
|
746
|
+
" or ",
|
|
747
|
+
permissions_part.lower(),
|
|
748
|
+
]
|
|
749
|
+
)
|
|
750
|
+
else:
|
|
751
|
+
parts.append(permissions_part)
|
|
752
|
+
parts.append(".\n")
|
|
753
|
+
|
|
754
|
+
# Suggest the user to enable Long Paths if path length is
|
|
755
|
+
# more than 260
|
|
756
|
+
if (
|
|
757
|
+
WINDOWS
|
|
758
|
+
and error.errno == errno.ENOENT
|
|
759
|
+
and error.filename
|
|
760
|
+
and len(error.filename) > 260
|
|
761
|
+
):
|
|
762
|
+
parts.append(
|
|
763
|
+
"HINT: This error might have occurred since "
|
|
764
|
+
"this system does not have Windows Long Path "
|
|
765
|
+
"support enabled. You can find information on "
|
|
766
|
+
"how to enable this at "
|
|
767
|
+
"https://pip.pypa.io/warnings/enable-long-paths\n"
|
|
768
|
+
)
|
|
769
|
+
|
|
770
|
+
return "".join(parts).strip() + "\n"
|