From aa463a0d1dcc495202049a16a59c8b70269bdcfe Mon Sep 17 00:00:00 2001 From: adisbladis Date: Fri, 7 Oct 2022 18:12:48 +1300 Subject: [PATCH] poetry2nix: 1.31.0 -> 1.33.0 --- .../tools/poetry2nix/poetry2nix/default.nix | 91 +- .../tools/poetry2nix/poetry2nix/editable.nix | 2 +- .../poetry2nix/fetch_from_legacy.py | 15 +- .../poetry2nix/poetry2nix/hooks/default.nix | 1 + .../hooks/pyproject-without-special-deps.py | 1 + .../poetry2nix/known-build-systems.json | 12 + .../tools/poetry2nix/poetry2nix/lib.nix | 15 +- .../poetry2nix/poetry2nix/mk-poetry-dep.nix | 38 +- .../poetry2nix/overrides/build-systems.json | 17297 +++++++++++++++- .../poetry2nix/overrides/default.nix | 196 +- .../tools/poetry2nix/poetry2nix/pep425.nix | 2 +- .../poetry2nix/pkgs/poetry/default.nix | 14 +- .../poetry2nix/pkgs/poetry/poetry.lock | 1349 +- .../poetry2nix/pkgs/poetry/pyproject.toml | 207 +- .../poetry2nix/pkgs/poetry/src.json | 4 +- .../poetry2nix/poetry2nix/shell-scripts.nix | 2 + 16 files changed, 18018 insertions(+), 1228 deletions(-) create mode 100644 pkgs/development/tools/poetry2nix/poetry2nix/known-build-systems.json diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/default.nix b/pkgs/development/tools/poetry2nix/poetry2nix/default.nix index 0575e38135d5..31b7476da7ad 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/default.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/default.nix @@ -5,9 +5,9 @@ }: let # Poetry2nix version - version = "1.31.0"; + version = "1.33.0"; - inherit (poetryLib) isCompatible readTOML moduleName; + inherit (poetryLib) isCompatible readTOML normalizePackageName normalizePackageSet; # Map SPDX identifiers to license names spdxLicenses = lib.listToAttrs (lib.filter (pair: pair.name != null) (builtins.map (v: { name = if lib.hasAttr "spdxId" v then v.spdxId else null; value = v; }) (lib.attrValues lib.licenses))); @@ -17,29 +17,33 @@ let # Experimental withPlugins functionality toPluginAble = (import ./plugins.nix { inherit pkgs lib; }).toPluginAble; + # List of known build systems that are passed through from nixpkgs unmodified + knownBuildSystems = builtins.fromJSON (builtins.readFile ./known-build-systems.json); + nixpkgsBuildSystems = lib.subtractLists [ "poetry" "poetry-core" ] knownBuildSystems; + mkInputAttrs = { py , pyProject , attrs , includeBuildSystem ? true + , groups ? [ ] }: let getInputs = attr: attrs.${attr} or [ ]; # Get dependencies and filter out depending on interpreter version - getDeps = depAttr: + getDeps = depSet: let compat = isCompatible (poetryLib.getPythonVersion py); - deps = pyProject.tool.poetry.${depAttr} or { }; - depAttrs = builtins.map (d: lib.toLower d) (builtins.attrNames deps); + depAttrs = builtins.map (d: lib.toLower d) (builtins.attrNames depSet); in ( builtins.map ( dep: let - pkg = py.pkgs."${moduleName dep}"; - constraints = deps.${dep}.python or ""; + pkg = py.pkgs."${normalizePackageName dep}"; + constraints = depSet.${dep}.python or ""; isCompat = compat constraints; in if isCompat then pkg else null @@ -57,9 +61,20 @@ let in { buildInputs = mkInput "buildInputs" (if includeBuildSystem then buildSystemPkgs else [ ]); - propagatedBuildInputs = mkInput "propagatedBuildInputs" (getDeps "dependencies") ++ ([ py.pkgs.setuptools ]); + propagatedBuildInputs = mkInput "propagatedBuildInputs" ( + (getDeps pyProject.tool.poetry."dependencies" or { }) + ++ ( + # >=poetry-1.2.0 dependency groups + if pyProject.tool.poetry.group or { } != { } + then lib.flatten (map (g: getDeps pyProject.tool.poetry.group.${g}.dependencies) groups) + else [ ] + ) + ); nativeBuildInputs = mkInput "nativeBuildInputs" [ ]; - checkInputs = mkInput "checkInputs" (getDeps "dev-dependencies"); + checkInputs = mkInput "checkInputs" ( + getDeps (pyProject.tool.poetry."dev-dependencies" or { }) # =poetry-1.2.0 + ); }; @@ -115,7 +130,8 @@ lib.makeScope pkgs.newScope (self: { # Example: { my-app = ./src; } , editablePackageSources ? { } , pyProject ? readTOML pyproject - }@attrs: + , groups ? [ ] + }: let /* The default list of poetry2nix override overlays */ mkEvalPep508 = import ./pep508.nix { @@ -144,15 +160,7 @@ lib.makeScope pkgs.newScope (self: { let lockfiles = lib.getAttrFromPath [ "metadata" "files" ] poetryLock; in - lib.listToAttrs (lib.mapAttrsToList (n: v: { name = moduleName n; value = v; }) lockfiles); - specialAttrs = [ - "overrides" - "poetrylock" - "projectDir" - "pwd" - "preferWheels" - ]; - passedAttrs = builtins.removeAttrs attrs specialAttrs; + lib.listToAttrs (lib.mapAttrsToList (n: v: { name = normalizePackageName n; value = v; }) lockfiles); evalPep508 = mkEvalPep508 python; # Filter packages by their PEP508 markers & pyproject interpreter version @@ -170,19 +178,32 @@ lib.makeScope pkgs.newScope (self: { # closure as python can only ever have one version of a dependency baseOverlay = self: super: let - getDep = depName: self.${depName}; lockPkgs = builtins.listToAttrs ( builtins.map ( - pkgMeta: rec { - name = moduleName pkgMeta.name; + pkgMeta: + if builtins.elem pkgMeta.name nixpkgsBuildSystems then { + name = pkgMeta.name; + value = super."${pkgMeta.name}"; + } else rec { + name = normalizePackageName pkgMeta.name; value = self.mkPoetryDep ( pkgMeta // { inherit pwd preferWheels; source = pkgMeta.source or null; files = lockFiles.${name}; pythonPackages = self; - sourceSpec = pyProject.tool.poetry.dependencies.${name} or pyProject.tool.poetry.dev-dependencies.${name} or { }; + + sourceSpec = + let + normalizedName = normalizePackageName pkgMeta.name; + in + ( + (normalizePackageSet pyProject.tool.poetry.dependencies or { }).${normalizedName} + or (normalizePackageSet pyProject.tool.poetry.dev-dependencies or { }).${normalizedName} + or (normalizePackageSet pyProject.tool.poetry.group.dev.dependencies { }).${normalizedName} # Poetry 1.2.0+ + or { } + ); } ); } @@ -231,7 +252,7 @@ lib.makeScope pkgs.newScope (self: { super) # Null out any filtered packages, we don't want python.pkgs from nixpkgs - (self: super: builtins.listToAttrs (builtins.map (x: { name = moduleName x.name; value = null; }) incompatible)) + (self: super: builtins.listToAttrs (builtins.map (x: { name = normalizePackageName x.name; value = null; }) incompatible)) # Create poetry2nix layer baseOverlay @@ -241,7 +262,7 @@ lib.makeScope pkgs.newScope (self: { packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) overlays; py = python.override { inherit packageOverrides; self = py; }; - inputAttrs = mkInputAttrs { inherit py pyProject; attrs = { }; includeBuildSystem = false; }; + inputAttrs = mkInputAttrs { inherit py pyProject groups; attrs = { }; includeBuildSystem = false; }; requiredPythonModules = python.pkgs.requiredPythonModules; /* Include all the nested dependencies which are required for each package. @@ -276,9 +297,10 @@ lib.makeScope pkgs.newScope (self: { , preferWheels ? false , editablePackageSources ? { } , extraPackages ? ps: [ ] + , groups ? [ "dev" ] }: let - inherit (lib) elem hasAttr; + inherit (lib) hasAttr; pyProject = readTOML pyproject; @@ -294,6 +316,12 @@ lib.makeScope pkgs.newScope (self: { allEditablePackageSources = ( (getEditableDeps (pyProject.tool.poetry."dependencies" or { })) // (getEditableDeps (pyProject.tool.poetry."dev-dependencies" or { })) + // ( + # Poetry>=1.2.0 + if pyProject.tool.poetry.group or { } != { } then + builtins.foldl' (acc: g: acc // getEditableDeps pyProject.tool.poetry.group.${g}.dependencies) { } groups + else { } + ) // editablePackageSources ); @@ -302,7 +330,7 @@ lib.makeScope pkgs.newScope (self: { excludedEditablePackageNames; poetryPython = self.mkPoetryPackages { - inherit pyproject poetrylock overrides python pwd preferWheels pyProject; + inherit pyproject poetrylock overrides python pwd preferWheels pyProject groups; editablePackageSources = editablePackageSources'; }; @@ -335,11 +363,12 @@ lib.makeScope pkgs.newScope (self: { , python ? pkgs.python3 , pwd ? projectDir , preferWheels ? false + , groups ? [ ] , ... }@attrs: let poetryPython = self.mkPoetryPackages { - inherit pyproject poetrylock overrides python pwd preferWheels; + inherit pyproject poetrylock overrides python pwd preferWheels groups; }; py = poetryPython.python; @@ -354,7 +383,7 @@ lib.makeScope pkgs.newScope (self: { ]; passedAttrs = builtins.removeAttrs attrs specialAttrs; - inputAttrs = mkInputAttrs { inherit py pyProject attrs; }; + inputAttrs = mkInputAttrs { inherit py pyProject attrs groups; }; app = py.pkgs.buildPythonPackage ( passedAttrs // inputAttrs // { @@ -363,7 +392,7 @@ lib.makeScope pkgs.newScope (self: { py.pkgs.removeGitDependenciesHook ]; } // { - pname = moduleName pyProject.tool.poetry.name; + pname = normalizePackageName pyProject.tool.poetry.name; version = pyProject.tool.poetry.version; inherit src; @@ -445,7 +474,7 @@ lib.makeScope pkgs.newScope (self: { Can be overriden by calling defaultPoetryOverrides.overrideOverlay which takes an overlay function */ - defaultPoetryOverrides = self.mkDefaultPoetryOverrides (import ./overrides { inherit pkgs lib; }); + defaultPoetryOverrides = self.mkDefaultPoetryOverrides (import ./overrides { inherit pkgs lib poetryLib; }); /* Convenience functions for specifying overlays with or without the poerty2nix default overrides diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/editable.nix b/pkgs/development/tools/poetry2nix/poetry2nix/editable.nix index 1365d19032b4..13a07e4c85c7 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/editable.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/editable.nix @@ -6,7 +6,7 @@ , editablePackageSources }: let - name = poetryLib.moduleName pyProject.tool.poetry.name; + name = poetryLib.normalizePackageName pyProject.tool.poetry.name; # Just enough standard PKG-INFO fields for an editable installation pkgInfoFields = { diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py b/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py index 8858b64ec3ee..fee7374d3405 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py +++ b/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py @@ -80,14 +80,23 @@ if package_filename not in parser.sources: exit(1) package_file = open(package_filename, "wb") -# Sometimes the href is a relative path -if urlparse(parser.sources[package_filename]).netloc == "": +# Sometimes the href is a relative or absolute path within the index's domain. +indicated_url = urlparse(parser.sources[package_filename]) +if indicated_url.netloc == "": parsed_url = urlparse(index_url) + + if indicated_url.path.startswith("/"): + # An absolute path within the index's domain. + path = parser.sources[package_filename] + else: + # A relative path. + path = parsed_url.path + "/" + parser.sources[package_filename] + package_url = urlunparse( ( parsed_url.scheme, parsed_url.netloc, - parsed_url.path + "/" + parser.sources[package_filename], + path, None, None, None, diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix b/pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix index f6d1ea5418fa..a503ea594fb4 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix @@ -70,6 +70,7 @@ in filenames = builtins.concatStringsSep " " [ "pyproject.toml" "README.md" + "LICENSE" ]; }; } ./fixup-hook.sh diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pyproject-without-special-deps.py b/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pyproject-without-special-deps.py index b74bfebf6400..76f52604e431 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pyproject-without-special-deps.py +++ b/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pyproject-without-special-deps.py @@ -22,6 +22,7 @@ def main(input, output, fields_to_remove): any_removed |= dep.pop(field, None) is not None if any_removed: dep["version"] = "*" + dep.pop("develop", None) output.write(tomlkit.dumps(data)) diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/known-build-systems.json b/pkgs/development/tools/poetry2nix/poetry2nix/known-build-systems.json new file mode 100644 index 000000000000..a7f8e6e79295 --- /dev/null +++ b/pkgs/development/tools/poetry2nix/poetry2nix/known-build-systems.json @@ -0,0 +1,12 @@ +[ + "poetry", + "poetry-core", + "flit", + "flit-core", + "pbr", + "flitBuildHook", + "cython", + "hatchling", + "setuptools", + "setuptools-scm" +] diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/lib.nix b/pkgs/development/tools/poetry2nix/poetry2nix/lib.nix index b5bf0c975e05..dd1e2640a528 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/lib.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/lib.nix @@ -8,8 +8,16 @@ let genList (i: if i == idx then value else (builtins.elemAt list i)) (length list) ); - # Do some canonicalisation of module names - moduleName = name: lib.toLower (lib.replaceStrings [ "_" "." ] [ "-" "-" ] name); + # Normalize package names as per PEP 503 + normalizePackageName = name: + let + parts = builtins.split "[-_.]+" name; + partsWithoutSeparator = builtins.filter (x: builtins.typeOf x == "string") parts; + in + lib.strings.toLower (lib.strings.concatStringsSep "-" partsWithoutSeparator); + + # Normalize an entire attrset of packages + normalizePackageSet = lib.attrsets.mapAttrs' (name: value: lib.attrsets.nameValuePair (normalizePackageName name) value); # Get a full semver pythonVersion from a python derivation getPythonVersion = python: @@ -233,7 +241,8 @@ in getBuildSystemPkgs satisfiesSemver cleanPythonSources - moduleName + normalizePackageName + normalizePackageSet getPythonVersion getTargetMachine ; diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix b/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix index 63f8403de115..56c312f4b50c 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix @@ -26,7 +26,7 @@ pythonPackages.callPackage }@args: let inherit (python) stdenv; - inherit (poetryLib) isCompatible getManyLinuxDeps fetchFromLegacy fetchFromPypi moduleName; + inherit (poetryLib) isCompatible getManyLinuxDeps fetchFromLegacy fetchFromPypi normalizePackageName; inherit (import ./pep425.nix { inherit lib poetryLib python stdenv; @@ -88,26 +88,14 @@ pythonPackages.callPackage else (builtins.elemAt (lib.strings.splitString "-" name) 2); }; - # Prevent infinite recursion - skipSetupToolsSCM = [ - "setuptools_scm" - "setuptools-scm" - "toml" # Toml is an extra for setuptools-scm - "tomli" # tomli is an extra for later versions of setuptools-scm - "flit-core" - "packaging" - "six" - "pyparsing" - "typing-extensions" - ]; - baseBuildInputs = lib.optional (! lib.elem name skipSetupToolsSCM) pythonPackages.setuptools-scm; format = if isDirectory || isGit || isUrl then "pyproject" else fileInfo.format; in buildPythonPackage { - pname = moduleName name; + pname = normalizePackageName name; version = version; - inherit format; + # Circumvent output separation (https://github.com/NixOS/nixpkgs/pull/190487) + format = if format == "pyproject" then "poetry2nix" else format; doCheck = false; # We never get development deps @@ -118,16 +106,21 @@ pythonPackages.callPackage pythonPackages.poetry2nixFixupHook ] ++ lib.optional (!isSource && (getManyLinuxDeps fileInfo.name).str != null) autoPatchelfHook + ++ lib.optionals (format == "wheel") [ + pythonPackages.wheelUnpackHook + pythonPackages.pipInstallHook + pythonPackages.setuptools + ] ++ lib.optionals (format == "pyproject") [ pythonPackages.removePathDependenciesHook pythonPackages.removeGitDependenciesHook + pythonPackages.pipBuildHook ]; buildInputs = ( - baseBuildInputs - ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) pythonPackages.setuptools - ++ lib.optional (!isSource) (getManyLinuxDeps fileInfo.name).pkg + lib.optional (!isSource) (getManyLinuxDeps fileInfo.name).pkg ++ lib.optional isDirectory buildSystemPkgs + ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) pythonPackages.setuptools ); propagatedBuildInputs = @@ -149,7 +142,7 @@ pythonPackages.callPackage ); depAttrs = lib.attrNames deps; in - builtins.map (n: pythonPackages.${moduleName n}) depAttrs; + builtins.map (n: pythonPackages.${normalizePackageName n}) depAttrs; meta = { broken = ! isCompatible (poetryLib.getPythonVersion python) python-versions; @@ -172,10 +165,7 @@ pythonPackages.callPackage rev = source.resolved_reference or source.reference; ref = sourceSpec.branch or (if sourceSpec ? tag then "refs/tags/${sourceSpec.tag}" else "HEAD"); } // ( - let - nixVersion = builtins.substring 0 3 builtins.nixVersion; - in - lib.optionalAttrs ((sourceSpec ? rev) && (lib.versionAtLeast nixVersion "2.4")) { + lib.optionalAttrs ((sourceSpec ? rev) && (lib.versionAtLeast builtins.nixVersion "2.4")) { allRefs = true; } )) diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json index 73550b488fe6..1848556c8c19 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json +++ b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json @@ -1,1164 +1,12286 @@ { - "HTSeq": [ - "cython" + "aadict": [ + "setuptools" ], - "PyStemmer": [ - "cython" + "aafigure": [ + "setuptools" + ], + "aardwolf": [ + "setuptools" + ], + "abodepy": [ + "setuptools" + ], + "absl-py": [ + "setuptools" + ], + "absolufy-imports": [ + "setuptools" + ], + "accuweather": [ + "setuptools" + ], + "acme": [ + "setuptools" + ], + "acme-tiny": [ + "setuptools", + "setuptools-scm" + ], + "acoustics": [ + "setuptools" + ], + "actdiag": [ + "setuptools" + ], + "adafruit-io": [ + "setuptools", + "setuptools-scm" + ], + "adafruit-nrfutil": [ + "setuptools" + ], + "adafruit-platformdetect": [ + "setuptools", + "setuptools-scm" + ], + "adafruit-pureio": [ + "setuptools", + "setuptools-scm" + ], + "adal": [ + "setuptools" + ], + "adax": [ + "setuptools" + ], + "adax-local": [ + "setuptools" + ], + "adb-enhanced": [ + "setuptools" + ], + "adb-homeassistant": [ + "setuptools" + ], + "adb-shell": [ + "setuptools" + ], + "adblock": [ + "setuptools" + ], + "add-trailing-comma": [ + "setuptools" + ], + "addict": [ + "setuptools" + ], + "adext": [ + "setuptools", + "setuptools-scm" ], "adguardhome": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "adjusttext": [ + "setuptools" + ], + "adlfs": [ + "setuptools" + ], + "advantage-air": [ + "setuptools" + ], + "advocate": [ + "setuptools" + ], + "aemet-opendata": [ + "setuptools" + ], + "aenum": [ + "setuptools" + ], + "aeppl": [ + "setuptools" ], "aesara": [ - "cython" + "cython", + "setuptools" + ], + "aesedb": [ + "setuptools" + ], + "afdko": [ + "setuptools", + "setuptools-scm" + ], + "affine": [ + "setuptools" + ], + "afsapi": [ + "setuptools", + "setuptools-scm" + ], + "agate": [ + "setuptools" + ], + "agate-dbf": [ + "setuptools" + ], + "agate-excel": [ + "setuptools" + ], + "agate-sql": [ + "setuptools" + ], + "agent-py": [ + "setuptools" + ], + "aggdraw": [ + "setuptools" + ], + "ailment": [ + "setuptools" + ], + "aio-geojson-client": [ + "setuptools" + ], + "aio-geojson-generic-client": [ + "setuptools" + ], + "aio-geojson-geonetnz-quakes": [ + "setuptools" + ], + "aio-geojson-geonetnz-volcano": [ + "setuptools" + ], + "aio-geojson-nsw-rfs-incidents": [ + "setuptools" + ], + "aio-geojson-usgs-earthquakes": [ + "setuptools" + ], + "aio-georss-client": [ + "setuptools" + ], + "aio-georss-gdacs": [ + "setuptools" + ], + "aioairq": [ + "setuptools" + ], + "aioairzone": [ + "setuptools" + ], + "aioaladdinconnect": [ + "setuptools" ], "aioambient": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aioamqp": [ + "setuptools" + ], + "aioapns": [ + "setuptools" + ], + "aioaseko": [ + "setuptools" + ], + "aioasuswrt": [ + "setuptools" + ], + "aioazuredevops": [ + "setuptools" + ], + "aiobiketrax": [ + "poetry-core", + "setuptools" + ], + "aioblescan": [ + "setuptools" ], "aioboto3": [ "poetry" ], + "aiobotocore": [ + "setuptools" + ], + "aiobroadlink": [ + "setuptools" + ], + "aiocache": [ + "setuptools" + ], + "aiocoap": [ + "setuptools" + ], + "aioconsole": [ + "setuptools" + ], + "aiocontextvars": [ + "setuptools" + ], + "aiocron": [ + "setuptools" + ], "aiocurrencylayer": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiodiscover": [ + "setuptools" + ], + "aiodns": [ + "setuptools" ], "aioeafm": [ - "poetry" + "poetry", + "setuptools" + ], + "aioeagle": [ + "setuptools" + ], + "aioecowitt": [ + "setuptools" + ], + "aioemonitor": [ + "setuptools" + ], + "aioesphomeapi": [ + "setuptools" + ], + "aioextensions": [ + "setuptools" + ], + "aiofile": [ + "poetry-core", + "setuptools" ], "aiofiles": [ - "poetry-core" + "poetry-core", + "setuptools" ], "aioflo": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aioftp": [ + "setuptools" ], "aiogithubapi": [ - "poetry-core" + "poetry-core", + "setuptools" ], "aioguardian": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aioharmony": [ + "setuptools" ], "aiohomekit": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiohttp": [ + "setuptools" + ], + "aiohttp-apispec": [ + "setuptools" + ], + "aiohttp-cors": [ + "setuptools" + ], + "aiohttp-jinja2": [ + "setuptools" ], "aiohttp-remotes": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "aiohttp-retry": [ + "setuptools" + ], + "aiohttp-socks": [ + "setuptools" + ], + "aiohttp-swagger": [ + "setuptools" + ], + "aiohttp-wsgi": [ + "setuptools" + ], + "aiohue": [ + "setuptools" + ], + "aiohwenergy": [ + "setuptools" + ], + "aioimaplib": [ + "setuptools" + ], + "aioinflux": [ + "setuptools" ], "aioitertools": [ - "flit-core" + "flit-core", + "setuptools" ], "aiojobs": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" ], "aiokafka": [ - "cython" + "cython", + "setuptools" + ], + "aiokef": [ + "setuptools" + ], + "aiolifx": [ + "setuptools" + ], + "aiolifx-connection": [ + "setuptools" + ], + "aiolifx-effects": [ + "setuptools" ], "aiolimiter": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiolip": [ + "setuptools" + ], + "aiolookin": [ + "setuptools" + ], + "aiolyric": [ + "setuptools" + ], + "aiomodernforms": [ + "setuptools" ], "aiomultiprocess": [ - "flit-core" + "flit-core", + "setuptools" ], "aiomusiccast": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiomysensors": [ + "poetry-core", + "setuptools" + ], + "aiomysql": [ + "setuptools", + "setuptools-scm" + ], + "aionanoleaf": [ + "setuptools" + ], + "aionotify": [ + "setuptools" ], "aionotion": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiooncue": [ + "setuptools" + ], + "aioopenexchangerates": [ + "poetry-core", + "setuptools" + ], + "aiopath": [ + "poetry-core", + "setuptools" + ], + "aiopg": [ + "setuptools" + ], + "aioprocessing": [ + "flit-core", + "flitBuildHook", + "setuptools" + ], + "aiopulse": [ + "setuptools" + ], + "aiopvapi": [ + "setuptools" ], "aiopvpc": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiopyarr": [ + "setuptools" + ], + "aiopylgtv": [ + "setuptools" + ], + "aioqsw": [ + "setuptools" ], "aiorecollect": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aioredis": [ + "setuptools" ], "aioresponses": [ - "pbr" + "pbr", + "setuptools" ], "aioridwell": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiorpcx": [ + "setuptools" + ], + "aiortm": [ + "poetry-core", + "setuptools" ], "aiorun": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "aiosenseme": [ + "setuptools" + ], + "aiosenz": [ + "setuptools" + ], + "aioserial": [ + "setuptools" + ], + "aioshelly": [ + "setuptools" + ], + "aioshutil": [ + "setuptools", + "setuptools-scm" + ], + "aiosignal": [ + "setuptools" + ], + "aioskybell": [ + "setuptools" + ], + "aioslimproto": [ + "setuptools" + ], + "aiosmb": [ + "setuptools" + ], + "aiosmtpd": [ + "setuptools" + ], + "aiosmtplib": [ + "poetry-core", + "setuptools" ], "aiosqlite": [ - "flit-core" + "flit-core", + "setuptools" ], "aiosteamist": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiostream": [ + "setuptools" ], "aioswitcher": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiosyncthing": [ + "setuptools" + ], + "aiotractive": [ + "setuptools" + ], + "aiounifi": [ + "setuptools" + ], + "aiounittest": [ + "setuptools" + ], + "aiovlc": [ + "setuptools" ], "aiowatttime": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "aiowebostv": [ + "setuptools" + ], + "aiowinreg": [ + "setuptools" + ], + "aioymaps": [ + "setuptools" + ], + "aiozeroconf": [ + "setuptools" + ], + "airly": [ + "setuptools" + ], + "airthings-ble": [ + "poetry-core", + "setuptools" + ], + "airthings-cloud": [ + "setuptools" + ], + "airtouch4pyapi": [ + "setuptools" + ], + "ajpy": [ + "setuptools" + ], + "ajsonrpc": [ + "setuptools" + ], + "alabaster": [ + "setuptools" + ], + "aladdin-connect": [ + "setuptools" + ], + "alarmdecoder": [ + "setuptools" + ], + "alectryon": [ + "setuptools" + ], + "alembic": [ + "setuptools" + ], + "algebraic-data-types": [ + "setuptools" + ], + "aliyun-python-sdk-cdn": [ + "setuptools" + ], + "aliyun-python-sdk-config": [ + "setuptools" + ], + "aliyun-python-sdk-core": [ + "setuptools" + ], + "aliyun-python-sdk-dbfs": [ + "setuptools" + ], + "aliyun-python-sdk-iot": [ + "setuptools" + ], + "aliyun-python-sdk-kms": [ + "setuptools" + ], + "aliyun-python-sdk-sts": [ + "setuptools" + ], + "allpairspy": [ + "setuptools" + ], + "allure-behave": [ + "setuptools", + "setuptools-scm" + ], + "allure-pytest": [ + "setuptools", + "setuptools-scm" + ], + "allure-python-commons": [ + "setuptools", + "setuptools-scm" + ], + "allure-python-commons-test": [ + "setuptools", + "setuptools-scm" + ], + "alpha-vantage": [ + "setuptools" + ], + "altair": [ + "setuptools" + ], + "amaranth": [ + "setuptools", + "setuptools-scm" + ], + "amaranth-boards": [ + "setuptools", + "setuptools-scm" + ], + "amaranth-soc": [ + "setuptools", + "setuptools-scm" + ], + "amarna": [ + "setuptools" + ], + "amazon-ion": [ + "setuptools" ], "ambee": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "amberelectric": [ + "setuptools" + ], + "ambiclimate": [ + "setuptools" + ], + "amcrest": [ + "setuptools" + ], + "amiibo-py": [ + "setuptools" + ], + "amply": [ + "setuptools", + "setuptools-scm" + ], + "amqp": [ + "setuptools" + ], + "amqplib": [ + "setuptools" ], "amqtt": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "androguard": [ + "setuptools" + ], + "android-backup": [ + "setuptools" + ], + "androidtv": [ + "setuptools" + ], + "angr": [ + "setuptools" + ], + "angrcli": [ + "setuptools" + ], + "angrop": [ + "setuptools" + ], + "aniso8601": [ + "setuptools" + ], + "annexremote": [ + "setuptools" + ], + "annoy": [ + "setuptools" + ], + "anonip": [ + "setuptools" + ], + "ansi": [ + "setuptools" + ], + "ansi2html": [ + "setuptools", + "setuptools-scm" + ], + "ansible": [ + "setuptools" + ], + "ansible-compat": [ + "setuptools", + "setuptools-scm" + ], + "ansible-core": [ + "setuptools" ], "ansible-doctor": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ansible-kernel": [ + "setuptools" ], "ansible-later": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ansible-lint": [ + "setuptools", + "setuptools-scm" + ], + "ansible-molecule": [ + "setuptools" ], "ansible-runner": [ - "pbr" + "pbr", + "setuptools" + ], + "ansicolor": [ + "setuptools" + ], + "ansicolors": [ + "setuptools" + ], + "ansiconv": [ + "setuptools" + ], + "ansimarkup": [ + "setuptools" + ], + "ansiwrap": [ + "setuptools" + ], + "antlr4-8-python3-runtime": [ + "setuptools" + ], + "antlr4-9-python3-runtime": [ + "setuptools" + ], + "antlr4-python3-runtime": [ + "setuptools" + ], + "anyascii": [ + "setuptools" + ], + "anybadge": [ + "setuptools" + ], + "anyconfig": [ + "setuptools" + ], + "anyio": [ + "setuptools", + "setuptools-scm" + ], + "anytree": [ + "setuptools" + ], + "aocd": [ + "setuptools" ], "apache-beam": [ - "cython" + "cython", + "setuptools" + ], + "apache-libcloud": [ + "setuptools" + ], + "apcaccess": [ + "setuptools" + ], + "apipkg": [ + "hatchling", + "setuptools" + ], + "apispec": [ + "setuptools" ], "aplpy": [ - "cython" + "cython", + "setuptools" ], - "argon2_cffi": [ - "flitBuildHook" + "appdirs": [ + "setuptools" + ], + "applicationinsights": [ + "setuptools" + ], + "appnope": [ + "setuptools" + ], + "apprise": [ + "setuptools" + ], + "approvaltests": [ + "setuptools" + ], + "appthreat-vulnerability-db": [ + "setuptools" + ], + "apptools": [ + "setuptools" + ], + "aprslib": [ + "setuptools" + ], + "apscheduler": [ + "setuptools", + "setuptools-scm" + ], + "apsw": [ + "setuptools" + ], + "apycula": [ + "setuptools", + "setuptools-scm" + ], + "aqipy-atmotech": [ + "setuptools" + ], + "aqualogic": [ + "setuptools" + ], + "arabic-reshaper": [ + "setuptools" + ], + "arc4": [ + "setuptools" + ], + "arcam-fmj": [ + "setuptools" + ], + "archinfo": [ + "setuptools" + ], + "archspec": [ + "poetry-core", + "setuptools" + ], + "area": [ + "setuptools" + ], + "arelle": [ + "setuptools" + ], + "arelle-headless": [ + "setuptools" + ], + "aresponses": [ + "setuptools" + ], + "argcomplete": [ + "setuptools" + ], + "argh": [ + "setuptools" + ], + "argon2-cffi": [ + "flitBuildHook", + "setuptools" + ], + "argon2-cffi-bindings": [ + "setuptools", + "setuptools-scm" + ], + "argparse-addons": [ + "setuptools" + ], + "args": [ + "setuptools" ], "aria2p": [ - "poetry" + "poetry", + "setuptools" + ], + "arnparse": [ + "setuptools" + ], + "arpeggio": [ + "setuptools" + ], + "arrayqueues": [ + "setuptools" + ], + "arris-tg2492lg": [ + "setuptools" + ], + "arrow": [ + "setuptools" + ], + "arviz": [ + "setuptools" + ], + "arxiv2bib": [ + "setuptools" + ], + "asana": [ + "setuptools" + ], + "ascii-magic": [ + "setuptools" + ], + "asciimatics": [ + "setuptools", + "setuptools-scm" + ], + "asciitree": [ + "setuptools" + ], + "asdf": [ + "setuptools", + "setuptools-scm" + ], + "asdf-standard": [ + "setuptools", + "setuptools-scm" + ], + "asdf-transform-schemas": [ + "setuptools", + "setuptools-scm" + ], + "ase": [ + "setuptools" + ], + "asf-search": [ + "setuptools" + ], + "asgi-csrf": [ + "setuptools" + ], + "asgineer": [ + "setuptools" + ], + "asgiref": [ + "setuptools" + ], + "asks": [ + "setuptools" + ], + "asmog": [ + "setuptools" + ], + "asn1": [ + "setuptools" + ], + "asn1ate": [ + "setuptools" + ], + "asn1crypto": [ + "setuptools" + ], + "asn1tools": [ + "setuptools" + ], + "aspell-python": [ + "setuptools" + ], + "aspy-refactor-imports": [ + "setuptools" + ], + "aspy-yaml": [ + "setuptools" + ], + "assay": [ + "setuptools" + ], + "assertpy": [ + "setuptools" + ], + "asterisk-mbox": [ + "setuptools" + ], + "asteval": [ + "setuptools", + "setuptools-scm" + ], + "astor": [ + "setuptools" + ], + "astral": [ + "setuptools" + ], + "astroid": [ + "setuptools", + "setuptools-scm" ], "astropy": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "astropy-extension-helpers": [ + "setuptools", + "setuptools-scm" + ], + "astropy-healpix": [ + "setuptools", + "setuptools-scm" + ], + "astropy-helpers": [ + "setuptools" + ], + "astroquery": [ + "setuptools" + ], + "asttokens": [ + "setuptools", + "setuptools-scm" + ], + "astunparse": [ + "setuptools" ], "async-dns": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "async-generator": [ + "setuptools" + ], + "async-lru": [ + "setuptools" + ], + "async-stagger": [ + "setuptools" + ], + "async-timeout": [ + "setuptools" + ], + "async-upnp-client": [ + "setuptools" + ], + "asyncclick": [ + "setuptools", + "setuptools-scm" + ], + "asynccmd": [ + "setuptools" + ], + "asyncio-dgram": [ + "setuptools" + ], + "asyncio-mqtt": [ + "setuptools" + ], + "asyncio-nats-client": [ + "setuptools" + ], + "asyncio-rlock": [ + "setuptools" + ], + "asyncio-throttle": [ + "setuptools" ], "asyncmy": [ "cython", - "poetry-core" + "poetry-core", + "setuptools" + ], + "asyncpg": [ + "setuptools" + ], + "asyncsleepiq": [ + "setuptools" + ], + "asyncssh": [ + "setuptools" ], "asyncstdlib": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "asynctest": [ + "setuptools" + ], + "asyncwhois": [ + "setuptools" + ], + "asysocks": [ + "setuptools" + ], + "atc-ble": [ + "poetry-core", + "setuptools" + ], + "atenpdu": [ + "setuptools" + ], + "atlassian-python-api": [ + "setuptools" + ], + "atom": [ + "setuptools", + "setuptools-scm" + ], + "atomiclong": [ + "setuptools" + ], + "atomicwrites": [ + "setuptools" + ], + "atomicwrites-homeassistant": [ + "setuptools" ], "atomman": [ - "cython" + "cython", + "setuptools" ], "atpublic": [ - "pdm-pep517" + "pdm-pep517", + "setuptools" + ], + "atsim-potentials": [ + "setuptools" + ], + "attrdict": [ + "setuptools" + ], + "attrs": [ + "setuptools" + ], + "aubio": [ + "setuptools" + ], + "audible": [ + "setuptools" + ], + "audio-metadata": [ + "setuptools" + ], + "audioread": [ + "setuptools" + ], + "audiotools": [ + "setuptools" + ], + "augeas": [ + "setuptools" + ], + "augmax": [ + "setuptools" + ], + "auroranoaa": [ + "setuptools" + ], + "aurorapy": [ + "setuptools" ], "autarco": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "auth0-python": [ + "setuptools" ], "authcaptureproxy": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "authheaders": [ + "setuptools" + ], + "authlib": [ + "setuptools" + ], + "authres": [ + "setuptools" + ], + "autobahn": [ + "setuptools" + ], + "autograd": [ + "setuptools" + ], + "autoit-ripper": [ + "setuptools" + ], + "autologging": [ + "setuptools" + ], + "automat": [ + "setuptools", + "setuptools-scm" + ], + "automate-home": [ + "setuptools" + ], + "autopage": [ + "setuptools" + ], + "autopep8": [ + "setuptools" ], "av": [ - "cython" + "cython", + "setuptools" + ], + "avea": [ + "setuptools" + ], + "avion": [ + "setuptools" + ], + "avro": [ + "setuptools" + ], + "avro-python3": [ + "setuptools" + ], + "avro3k": [ + "setuptools" + ], + "awesome-slugify": [ + "setuptools" ], "awesomeversion": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "awkward": [ + "setuptools" + ], + "awkward0": [ + "setuptools" ], "aws-adfs": [ - "poetry-core" + "poetry-core", + "setuptools" ], "aws-error-utils": [ "poetry" ], + "aws-lambda-builders": [ + "setuptools" + ], + "aws-sam-translator": [ + "setuptools" + ], + "aws-xray-sdk": [ + "setuptools" + ], + "awscli": [ + "setuptools" + ], + "awscli-cwlogs": [ + "setuptools" + ], + "awscrt": [ + "setuptools" + ], + "awsiotpythonsdk": [ + "setuptools" + ], + "awslambdaric": [ + "setuptools" + ], + "axis": [ + "setuptools" + ], + "azure-appconfiguration": [ + "setuptools" + ], + "azure-applicationinsights": [ + "setuptools" + ], + "azure-batch": [ + "setuptools" + ], + "azure-common": [ + "setuptools" + ], + "azure-containerregistry": [ + "setuptools" + ], + "azure-core": [ + "setuptools" + ], + "azure-cosmos": [ + "setuptools" + ], + "azure-cosmosdb-nspkg": [ + "setuptools" + ], + "azure-cosmosdb-table": [ + "setuptools" + ], + "azure-data-tables": [ + "setuptools" + ], + "azure-datalake-store": [ + "setuptools" + ], + "azure-eventgrid": [ + "setuptools" + ], + "azure-eventhub": [ + "setuptools" + ], + "azure-functions-devops-build": [ + "setuptools" + ], + "azure-graphrbac": [ + "setuptools" + ], + "azure-identity": [ + "setuptools" + ], + "azure-keyvault": [ + "setuptools" + ], + "azure-keyvault-administration": [ + "setuptools" + ], + "azure-keyvault-certificates": [ + "setuptools" + ], + "azure-keyvault-keys": [ + "setuptools" + ], + "azure-keyvault-nspkg": [ + "setuptools" + ], + "azure-keyvault-secrets": [ + "setuptools" + ], + "azure-loganalytics": [ + "setuptools" + ], + "azure-mgmt-advisor": [ + "setuptools" + ], + "azure-mgmt-apimanagement": [ + "setuptools" + ], + "azure-mgmt-appconfiguration": [ + "setuptools" + ], + "azure-mgmt-applicationinsights": [ + "setuptools" + ], + "azure-mgmt-authorization": [ + "setuptools" + ], + "azure-mgmt-batch": [ + "setuptools" + ], + "azure-mgmt-batchai": [ + "setuptools" + ], + "azure-mgmt-billing": [ + "setuptools" + ], + "azure-mgmt-botservice": [ + "setuptools" + ], + "azure-mgmt-cdn": [ + "setuptools" + ], + "azure-mgmt-cognitiveservices": [ + "setuptools" + ], + "azure-mgmt-commerce": [ + "setuptools" + ], + "azure-mgmt-common": [ + "setuptools" + ], + "azure-mgmt-compute": [ + "setuptools" + ], + "azure-mgmt-consumption": [ + "setuptools" + ], + "azure-mgmt-containerinstance": [ + "setuptools" + ], + "azure-mgmt-containerregistry": [ + "setuptools" + ], + "azure-mgmt-containerservice": [ + "setuptools" + ], + "azure-mgmt-core": [ + "setuptools" + ], + "azure-mgmt-cosmosdb": [ + "setuptools" + ], + "azure-mgmt-databoxedge": [ + "setuptools" + ], + "azure-mgmt-datafactory": [ + "setuptools" + ], + "azure-mgmt-datalake-analytics": [ + "setuptools" + ], + "azure-mgmt-datalake-nspkg": [ + "setuptools" + ], + "azure-mgmt-datalake-store": [ + "setuptools" + ], + "azure-mgmt-datamigration": [ + "setuptools" + ], + "azure-mgmt-deploymentmanager": [ + "setuptools" + ], + "azure-mgmt-devspaces": [ + "setuptools" + ], + "azure-mgmt-devtestlabs": [ + "setuptools" + ], + "azure-mgmt-dns": [ + "setuptools" + ], + "azure-mgmt-eventgrid": [ + "setuptools" + ], + "azure-mgmt-eventhub": [ + "setuptools" + ], + "azure-mgmt-extendedlocation": [ + "setuptools" + ], + "azure-mgmt-hanaonazure": [ + "setuptools" + ], + "azure-mgmt-hdinsight": [ + "setuptools" + ], + "azure-mgmt-imagebuilder": [ + "setuptools" + ], + "azure-mgmt-iotcentral": [ + "setuptools" + ], + "azure-mgmt-iothub": [ + "setuptools" + ], + "azure-mgmt-iothubprovisioningservices": [ + "setuptools" + ], + "azure-mgmt-keyvault": [ + "setuptools" + ], + "azure-mgmt-kusto": [ + "setuptools" + ], + "azure-mgmt-loganalytics": [ + "setuptools" + ], + "azure-mgmt-logic": [ + "setuptools" + ], + "azure-mgmt-machinelearningcompute": [ + "setuptools" + ], + "azure-mgmt-managedservices": [ + "setuptools" + ], + "azure-mgmt-managementgroups": [ + "setuptools" + ], + "azure-mgmt-managementpartner": [ + "setuptools" + ], + "azure-mgmt-maps": [ + "setuptools" + ], + "azure-mgmt-marketplaceordering": [ + "setuptools" + ], + "azure-mgmt-media": [ + "setuptools" + ], + "azure-mgmt-monitor": [ + "setuptools" + ], + "azure-mgmt-msi": [ + "setuptools" + ], + "azure-mgmt-netapp": [ + "setuptools" + ], + "azure-mgmt-network": [ + "setuptools" + ], + "azure-mgmt-notificationhubs": [ + "setuptools" + ], + "azure-mgmt-nspkg": [ + "setuptools" + ], + "azure-mgmt-policyinsights": [ + "setuptools" + ], + "azure-mgmt-powerbiembedded": [ + "setuptools" + ], + "azure-mgmt-privatedns": [ + "setuptools" + ], + "azure-mgmt-rdbms": [ + "setuptools" + ], + "azure-mgmt-recoveryservices": [ + "setuptools" + ], + "azure-mgmt-recoveryservicesbackup": [ + "setuptools" + ], + "azure-mgmt-redhatopenshift": [ + "setuptools" + ], + "azure-mgmt-redis": [ + "setuptools" + ], + "azure-mgmt-relay": [ + "setuptools" + ], + "azure-mgmt-reservations": [ + "setuptools" + ], + "azure-mgmt-resource": [ + "setuptools" + ], + "azure-mgmt-scheduler": [ + "setuptools" + ], + "azure-mgmt-search": [ + "setuptools" + ], + "azure-mgmt-security": [ + "setuptools" + ], + "azure-mgmt-servicebus": [ + "setuptools" + ], + "azure-mgmt-servicefabric": [ + "setuptools" + ], + "azure-mgmt-servicefabricmanagedclusters": [ + "setuptools" + ], + "azure-mgmt-servicelinker": [ + "setuptools" + ], + "azure-mgmt-signalr": [ + "setuptools" + ], + "azure-mgmt-sql": [ + "setuptools" + ], + "azure-mgmt-sqlvirtualmachine": [ + "setuptools" + ], + "azure-mgmt-storage": [ + "setuptools" + ], + "azure-mgmt-subscription": [ + "setuptools" + ], + "azure-mgmt-synapse": [ + "setuptools" + ], + "azure-mgmt-trafficmanager": [ + "setuptools" + ], + "azure-mgmt-web": [ + "setuptools" + ], + "azure-multiapi-storage": [ + "setuptools" + ], + "azure-nspkg": [ + "setuptools" + ], + "azure-servicebus": [ + "setuptools" + ], + "azure-servicefabric": [ + "setuptools" + ], + "azure-servicemanagement-legacy": [ + "setuptools" + ], + "azure-storage": [ + "setuptools" + ], + "azure-storage-blob": [ + "setuptools" + ], + "azure-storage-common": [ + "setuptools" + ], + "azure-storage-file": [ + "setuptools" + ], + "azure-storage-file-share": [ + "setuptools" + ], + "azure-storage-nspkg": [ + "setuptools" + ], + "azure-storage-queue": [ + "setuptools" + ], + "azure-synapse-accesscontrol": [ + "setuptools" + ], + "azure-synapse-artifacts": [ + "setuptools" + ], + "azure-synapse-managedprivateendpoints": [ + "setuptools" + ], + "azure-synapse-spark": [ + "setuptools" + ], + "b2sdk": [ + "setuptools", + "setuptools-scm" + ], + "babel": [ + "setuptools" + ], + "babelfish": [ + "setuptools" + ], + "babelgladeextractor": [ + "setuptools" + ], "backcall": [ - "flit-core" + "flit-core", + "setuptools" ], "backoff": [ - "poetry" + "poetry", + "poetry-core", + "setuptools" + ], + "backports-abc": [ + "setuptools" + ], + "backports-cached-property": [ + "setuptools", + "setuptools-scm" + ], + "backports-csv": [ + "setuptools" + ], + "backports-datetime-fromisoformat": [ + "setuptools" + ], + "backports-entry-points-selectable": [ + "setuptools", + "setuptools-scm" + ], + "backports-functools-lru-cache": [ + "setuptools", + "setuptools-scm" + ], + "backports-shutil-which": [ + "setuptools" + ], + "backports-ssl-match-hostname": [ + "setuptools", + "setuptools-scm" + ], + "backports-tempfile": [ + "setuptools", + "setuptools-scm" + ], + "backports-unittest-mock": [ + "setuptools", + "setuptools-scm" + ], + "backports-weakref": [ + "setuptools", + "setuptools-scm" + ], + "bagit": [ + "setuptools", + "setuptools-scm" + ], + "banal": [ + "setuptools" ], "bandit": [ - "pbr" + "pbr", + "setuptools" ], - "bash_kernel": [ - "flitBuildHook" + "bap": [ + "setuptools" + ], + "baron": [ + "setuptools" + ], + "base36": [ + "setuptools" + ], + "base58": [ + "setuptools" + ], + "base58check": [ + "setuptools" + ], + "baseline": [ + "setuptools" + ], + "baselines": [ + "setuptools" + ], + "basemap": [ + "cython", + "setuptools" + ], + "basemap-data": [ + "setuptools" + ], + "bash-kernel": [ + "flitBuildHook", + "setuptools" + ], + "bashlex": [ + "setuptools" + ], + "basiciw": [ + "setuptools" + ], + "batchgenerators": [ + "setuptools" + ], + "batchspawner": [ + "setuptools" + ], + "batinfo": [ + "setuptools" + ], + "bayesian-optimization": [ + "setuptools" + ], + "bayespy": [ + "setuptools" + ], + "bbox": [ + "setuptools" + ], + "bc-python-hcl2": [ + "setuptools" + ], + "bcdoc": [ + "setuptools" + ], + "bcrypt": [ + "setuptools" + ], + "beancount": [ + "setuptools" + ], + "beancount-docverif": [ + "setuptools", + "setuptools-scm" + ], + "beanstalkc": [ + "setuptools" + ], + "beartype": [ + "setuptools" + ], + "beautifulsoup4": [ + "setuptools" + ], + "beautifultable": [ + "setuptools" + ], + "bech32": [ + "setuptools" + ], + "bedup": [ + "setuptools" + ], + "behave": [ + "setuptools" + ], + "bellows": [ + "setuptools" + ], + "beniget": [ + "setuptools" + ], + "bespon": [ + "setuptools" + ], + "betacode": [ + "setuptools" + ], + "betamax": [ + "setuptools" + ], + "betamax-matchers": [ + "setuptools" + ], + "betamax-serializers": [ + "setuptools" + ], + "betterproto": [ + "poetry-core", + "setuptools" + ], + "bibtexparser": [ + "setuptools" + ], + "bidict": [ + "setuptools" + ], + "bids-validator": [ + "setuptools" + ], + "biliass": [ + "setuptools" + ], + "billiard": [ + "setuptools" ], "bimmer-connected": [ - "pbr" + "pbr", + "setuptools" + ], + "binaryornot": [ + "setuptools" + ], + "bincopy": [ + "setuptools" + ], + "binho-host-adapter": [ + "setuptools" + ], + "binwalk": [ + "setuptools" + ], + "binwalk-full": [ + "setuptools" + ], + "biopython": [ + "setuptools" + ], + "bip-utils": [ + "setuptools" + ], + "biplist": [ + "setuptools" + ], + "bitarray": [ + "setuptools" + ], + "bitbox02": [ + "setuptools" + ], + "bitcoin-utils-fork-minimal": [ + "setuptools" + ], + "bitcoinlib": [ + "setuptools" + ], + "bitcoinrpc": [ + "setuptools" + ], + "bite-parser": [ + "poetry-core", + "setuptools" + ], + "bitlist": [ + "setuptools" + ], + "bitmath": [ + "setuptools" + ], + "bitstring": [ + "setuptools" + ], + "bitstruct": [ + "setuptools" + ], + "bitvavo-aio": [ + "setuptools" + ], + "bizkaibus": [ + "setuptools" + ], + "bjoern": [ + "setuptools" + ], + "bkcharts": [ + "setuptools" + ], + "black": [ + { + "buildSystem": "hatch-fancy-pypi-readme", + "from": "22.10.0" + }, + { + "buildSystem": "hatchling", + "from": "22.10.0" + }, + { + "buildSystem": "hatch-vcs", + "from": "22.10.0" + }, + "setuptools", + "setuptools-scm" + ], + "black-macchiato": [ + "setuptools" + ], + "bleach": [ + "setuptools" + ], + "bleak": [ + "poetry-core", + "setuptools" + ], + "bleak-retry-connector": [ + "poetry-core", + "setuptools" + ], + "blebox-uniapi": [ + "setuptools" + ], + "bless": [ + "setuptools" + ], + "blessed": [ + "setuptools" + ], + "blessings": [ + "setuptools" + ], + "blinker": [ + "setuptools" + ], + "blinkpy": [ + "setuptools" + ], + "blinkstick": [ + "setuptools" ], "blis": [ - "cython" + "cython", + "setuptools" + ], + "block-io": [ + "setuptools" + ], + "blockchain": [ + "setuptools" + ], + "blockdiag": [ + "setuptools" + ], + "blocksat-cli": [ + "setuptools" + ], + "blspy": [ + "setuptools", + "setuptools-scm" + ], + "bluemaestro-ble": [ + "poetry-core", + "setuptools" + ], + "bluepy": [ + "setuptools" + ], + "bluepy-devices": [ + "setuptools" + ], + "bluetooth-adapters": [ + "poetry-core", + "setuptools" + ], + "bluetooth-auto-recovery": [ + "poetry-core", + "setuptools" + ], + "bluetooth-data-tools": [ + "poetry-core", + "setuptools" + ], + "bluetooth-sensor-state-data": [ + "poetry-core", + "setuptools" + ], + "blurhash": [ + "setuptools" + ], + "bme280spi": [ + "setuptools" + ], + "bme680": [ + "setuptools" + ], + "bokeh": [ + "setuptools" + ], + "boltons": [ + "setuptools" ], "boltztrap2": [ - "cython" + "cython", + "setuptools" + ], + "bond-api": [ + "setuptools" + ], + "bond-async": [ + "setuptools" + ], + "boolean-py": [ + "setuptools" + ], + "booleanoperations": [ + "setuptools", + "setuptools-scm" + ], + "boost-histogram": [ + "setuptools", + "setuptools-scm" + ], + "boschshcpy": [ + "setuptools" + ], + "boto3": [ + "setuptools" + ], + "boto3-stubs": [ + "setuptools" + ], + "botocore": [ + "setuptools" + ], + "botocore-stubs": [ + "poetry-core" + ], + "bottle": [ + "setuptools" + ], + "bottleneck": [ + "setuptools" + ], + "boxx": [ + "setuptools" + ], + "bpycv": [ + "setuptools" + ], + "bpython": [ + "setuptools" + ], + "braceexpand": [ + "setuptools" ], "bracex": [ - "hatchling" + "hatchling", + "setuptools" + ], + "braintree": [ + "setuptools" + ], + "branca": [ + "setuptools" + ], + "bravado-core": [ + "setuptools" + ], + "bravia-tv": [ + "setuptools" + ], + "breathe": [ + "setuptools" + ], + "breezy": [ + "setuptools" + ], + "brelpy": [ + "setuptools" + ], + "broadlink": [ + "setuptools" + ], + "brother": [ + "setuptools" + ], + "brother-ql": [ + "setuptools" + ], + "brotli": [ + "setuptools" + ], + "brotlicffi": [ + "setuptools" + ], + "brotlipy": [ + "setuptools" + ], + "brottsplatskartan": [ + "setuptools" + ], + "browser-cookie3": [ + "setuptools" + ], + "brunt": [ + "setuptools" ], "bsblan": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "bsddb3": [ + "setuptools" + ], + "bsdiff4": [ + "setuptools" + ], + "bson": [ + "setuptools" + ], + "bsuite": [ + "setuptools" + ], + "bt-proximity": [ + "setuptools" + ], + "btchip": [ + "setuptools" + ], + "bthome-ble": [ + "poetry-core", + "setuptools" + ], + "btrees": [ + "setuptools" + ], + "btrfs": [ + "setuptools" + ], + "btrfsutil": [ + "setuptools" + ], + "btsocket": [ + "setuptools" + ], + "bucketstore": [ + "setuptools" + ], + "bugsnag": [ + "setuptools" + ], + "bugwarrior": [ + "setuptools" + ], + "bugz": [ + "setuptools" + ], + "bugzilla": [ + "setuptools" + ], + "buienradar": [ + "setuptools" ], "build": [ - "flit-core" + "flit-core", + "setuptools" + ], + "buildbot": [ + "setuptools" + ], + "buildbot-full": [ + "setuptools" + ], + "buildbot-pkg": [ + "setuptools" + ], + "buildbot-plugins-console-view": [ + "setuptools" + ], + "buildbot-plugins-grid-view": [ + "setuptools" + ], + "buildbot-plugins-waterfall-view": [ + "setuptools" + ], + "buildbot-plugins-wsgi-dashboards": [ + "setuptools" + ], + "buildbot-plugins-www": [ + "setuptools" + ], + "buildbot-ui": [ + "setuptools" + ], + "buildbot-worker": [ + "setuptools" + ], + "buildcatrust": [ + "setuptools" + ], + "bumps": [ + "setuptools" + ], + "bunch": [ + "setuptools" + ], + "bwapy": [ + "setuptools" ], "bx-python": [ - "cython" + "cython", + "setuptools" + ], + "bytecode": [ + "setuptools" + ], + "bz2file": [ + "setuptools" + ], + "cachecontrol": [ + "setuptools" + ], + "cached-property": [ + "setuptools" + ], + "cachelib": [ + "setuptools" + ], + "cachetools": [ + "setuptools" + ], + "cachey": [ + "setuptools" + ], + "cachy": [ + "setuptools" + ], + "caio": [ + "setuptools" + ], + "cairo-lang": [ + "setuptools" + ], + "cairocffi": [ + "setuptools" + ], + "cairosvg": [ + "setuptools" + ], + "caldav": [ + "setuptools" + ], + "callee": [ + "setuptools" + ], + "calmjs-parse": [ + "setuptools" + ], + "can": [ + "setuptools" + ], + "canmatrix": [ + "setuptools" + ], + "canonicaljson": [ + "setuptools" + ], + "canopen": [ + "setuptools", + "setuptools-scm" + ], + "capstone": [ + "setuptools" + ], + "capturer": [ + "setuptools" + ], + "carbon": [ + "setuptools" + ], + "cart": [ + "setuptools" ], "cartopy": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "casa-formats-io": [ + "setuptools", + "setuptools-scm" + ], + "casbin": [ + "setuptools" + ], + "case": [ + "setuptools" ], "cassandra-driver": [ - "cython" + "cython", + "setuptools" + ], + "castepxbin": [ + "setuptools" + ], + "casttube": [ + "setuptools" + ], + "catalogue": [ + "setuptools" + ], + "catboost": [ + "setuptools" ], "cattrs": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "cbeams": [ + "setuptools" + ], + "cbor": [ + "setuptools" + ], + "cbor2": [ + "setuptools", + "setuptools-scm" + ], + "cccolutils": [ + "setuptools" + ], + "cchardet": [ + "setuptools" + ], + "cdcs": [ + "setuptools" + ], + "celery": [ + "setuptools" + ], + "celery-redbeat": [ + "setuptools" + ], + "cement": [ + "setuptools" ], "censys": [ + "poetry-core", + "setuptools" + ], + "cepa": [ + "setuptools" + ], + "cerberus": [ + "setuptools" + ], + "cert-chain-resolver": [ + "setuptools" + ], + "certauth": [ + "setuptools" + ], + "certbot": [ + "setuptools" + ], + "certbot-dns-cloudflare": [ + "setuptools" + ], + "certbot-dns-google": [ + "setuptools" + ], + "certbot-dns-inwx": [ + "setuptools" + ], + "certbot-dns-rfc2136": [ + "setuptools" + ], + "certbot-dns-route53": [ + "setuptools" + ], + "certifi": [ + "setuptools" + ], + "certipy": [ + "setuptools" + ], + "certomancer": [ + "setuptools" + ], + "certvalidator": [ + "setuptools" + ], + "cexprtk": [ + "setuptools" + ], + "cfel-pylint-checkers": [ "poetry-core" ], + "cffi": [ + "setuptools" + ], + "cffsubr": [ + "setuptools", + "setuptools-scm" + ], + "cfgv": [ + "setuptools" + ], + "cfn-flip": [ + "setuptools" + ], + "cfn-lint": [ + "setuptools" + ], + "cfscrape": [ + "setuptools" + ], "cftime": [ - "cython" + "cython", + "setuptools" + ], + "cgen": [ + "setuptools" + ], + "cgroup-utils": [ + "setuptools" + ], + "chacha20poly1305-reuseable": [ + "poetry-core", + "setuptools" + ], + "chai": [ + "setuptools" + ], + "chainer": [ + "setuptools" + ], + "chainmap": [ + "setuptools" + ], + "chalice": [ + "setuptools" + ], + "chameleon": [ + "setuptools" + ], + "channels": [ + "setuptools" + ], + "channels-redis": [ + "setuptools" + ], + "characteristic": [ + "setuptools" + ], + "chardet": [ + "setuptools" + ], + "charset-normalizer": [ + "setuptools" + ], + "chart-studio": [ + "setuptools" + ], + "chat-downloader": [ + "setuptools" + ], + "check-manifest": [ + "setuptools" + ], + "cheetah3": [ + "setuptools" + ], + "cheroot": [ + "setuptools", + "setuptools-scm" + ], + "cherrypy": [ + "setuptools", + "setuptools-scm" + ], + "chess": [ + "setuptools" + ], + "chevron": [ + "setuptools" + ], + "chex": [ + "setuptools" + ], + "chia-rs": [ + "setuptools" + ], + "chiabip158": [ + "setuptools", + "setuptools-scm" + ], + "chiapos": [ + "setuptools", + "setuptools-scm" + ], + "chiavdf": [ + "setuptools", + "setuptools-scm" + ], + "chirpstack-api": [ + "setuptools" ], "chispa": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ci-info": [ + "setuptools" + ], + "ci-py": [ + "setuptools" + ], + "cinemagoer": [ + "setuptools" + ], + "circuit-webhook": [ + "setuptools" + ], + "circuitbreaker": [ + "setuptools" + ], + "cirq": [ + "setuptools" + ], + "cirq-aqt": [ + "setuptools" + ], + "cirq-core": [ + "setuptools" + ], + "cirq-google": [ + "setuptools" + ], + "cirq-ionq": [ + "setuptools" + ], + "cirq-pasqal": [ + "setuptools" + ], + "cirq-rigetti": [ + "setuptools" + ], + "cirq-web": [ + "setuptools" ], "ciscoconfparse": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ciscomobilityexpress": [ + "setuptools" + ], + "ciso8601": [ + "setuptools" + ], + "citeproc-py": [ + "setuptools" + ], + "cjkwrap": [ + "setuptools" + ], + "ckcc-protocol": [ + "setuptools" + ], + "claripy": [ + "setuptools" + ], + "class-registry": [ + "setuptools" + ], + "classify-imports": [ + "setuptools" + ], + "cld2-cffi": [ + "setuptools" + ], + "cle": [ + "setuptools" ], "cleo": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "clevercsv": [ + "setuptools" + ], + "clf": [ + "setuptools" + ], + "cli-helpers": [ + "setuptools" + ], + "click": [ + "setuptools" + ], + "click-completion": [ + "setuptools" + ], + "click-configfile": [ + "setuptools" + ], + "click-datetime": [ + "setuptools" + ], + "click-default-group": [ + "setuptools" + ], + "click-didyoumean": [ + "setuptools" + ], + "click-help-colors": [ + "setuptools" + ], + "click-log": [ + "setuptools" + ], + "click-option-group": [ + "setuptools" + ], + "click-plugins": [ + "setuptools" + ], + "click-repl": [ + "setuptools" + ], + "click-spinner": [ + "setuptools" + ], + "click-threading": [ + "setuptools" + ], + "clickclick": [ + "setuptools" + ], + "clickgen": [ + "setuptools" + ], + "clickhouse-cityhash": [ + "setuptools" + ], + "clickhouse-cli": [ + "setuptools" + ], + "clickhouse-driver": [ + "setuptools" ], "cliff": [ - "pbr" + "pbr", + "setuptools" + ], + "clifford": [ + "setuptools" + ], + "cligj": [ + "setuptools" ], "clikit": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "clint": [ + "setuptools" + ], + "clintermission": [ + "setuptools" + ], + "clize": [ + "setuptools" + ], + "clldutils": [ + "setuptools" + ], + "cloudflare": [ + "setuptools" ], "cloudflare-dyndns": [ - "poetry" + "poetry", + "poetry-core", + "setuptools" + ], + "cloudpickle": [ + "setuptools" + ], + "cloudscraper": [ + "setuptools" + ], + "cloudsmith-api": [ + "setuptools" + ], + "cloudsplaining": [ + "setuptools" + ], + "cloup": [ + "setuptools", + "setuptools-scm" + ], + "clustershell": [ + "setuptools" + ], + "clvm": [ + "setuptools", + "setuptools-scm" + ], + "clvm-rs": [ + "setuptools" + ], + "clvm-tools": [ + "setuptools", + "setuptools-scm" + ], + "clvm-tools-rs": [ + "setuptools" + ], + "cma": [ + "setuptools" + ], + "cmarkgfm": [ + "setuptools" + ], + "cmd2": [ + "setuptools", + "setuptools-scm" + ], + "cmdline": [ + "setuptools" + ], + "cmigemo": [ + "setuptools" + ], + "cmsis-pack-manager": [ + "setuptools", + "setuptools-scm" + ], + "cmsis-svd": [ + "setuptools" + ], + "cnvkit": [ + "setuptools" + ], + "co2signal": [ + "setuptools" + ], + "coapthon3": [ + "setuptools" + ], + "cock": [ + "setuptools" + ], + "coconut": [ + "setuptools" + ], + "cocotb": [ + "setuptools", + "setuptools-scm" + ], + "cocotb-bus": [ + "setuptools" + ], + "codecov": [ + "setuptools" + ], + "codepy": [ + "setuptools" + ], + "codespell": [ + "setuptools" + ], + "cogapp": [ + "setuptools" + ], + "coincurve": [ + "setuptools" + ], + "coinmetrics-api-client": [ + "poetry-core", + "setuptools" + ], + "colander": [ + "setuptools" + ], + "colanderalchemy": [ + "setuptools" ], "collections-extended": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "colorama": [ + "setuptools" + ], + "colorcet": [ + "setuptools" ], "colorclass": [ - "poetry" + "poetry", + "setuptools" + ], + "colored": [ + "setuptools" + ], + "colored-traceback": [ + "setuptools" + ], + "coloredlogs": [ + "setuptools" + ], + "colorful": [ + "setuptools" ], "colorhash": [ "poetry" ], + "colorlog": [ + "setuptools" + ], + "colorlover": [ + "setuptools" + ], + "colormath": [ + "setuptools" + ], + "colorspacious": [ + "setuptools" + ], + "colorthief": [ + "setuptools" + ], + "colorzero": [ + "setuptools" + ], + "colour": [ + "setuptools" + ], + "cometblue-lite": [ + "setuptools" + ], + "commandparse": [ + "setuptools" + ], + "commentjson": [ + "setuptools" + ], "commitizen": [ "poetry-core" ], + "commoncode": [ + "setuptools", + "setuptools-scm" + ], + "commonmark": [ + "setuptools" + ], + "compiledb": [ + "setuptools" + ], + "compreffor": [ + "setuptools", + "setuptools-scm" + ], + "concurrent-log-handler": [ + "setuptools" + ], + "conda": [ + "setuptools" + ], + "configargparse": [ + "setuptools" + ], + "configclass": [ + "setuptools" + ], + "confight": [ + "setuptools" + ], + "configobj": [ + "setuptools" + ], + "configparser": [ + "setuptools", + "setuptools-scm" + ], + "configshell": [ + "setuptools" + ], + "confluent-kafka": [ + "setuptools" + ], "confuse": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "connect-box": [ + "setuptools" + ], + "connection-pool": [ + "setuptools" + ], + "connexion": [ + "setuptools" + ], + "cons": [ + "setuptools" + ], + "consonance": [ + "setuptools" + ], + "constantly": [ + "setuptools" + ], + "construct": [ + "setuptools" + ], + "consul": [ + "setuptools" + ], + "container-inspector": [ + "setuptools", + "setuptools-scm" + ], + "contexter": [ + "setuptools" + ], + "contextlib2": [ + "setuptools" + ], + "contexttimer": [ + "setuptools" + ], + "contourpy": [ + "pybind11", + "setuptools" + ], + "convertdate": [ + "setuptools" + ], + "cookiecutter": [ + "setuptools" + ], + "cookies": [ + "setuptools" + ], + "coordinates": [ + "setuptools" ], "copier": [ "poetry-core" ], + "coqpit": [ + "setuptools" + ], + "coqui-trainer": [ + "setuptools" + ], + "coreapi": [ + "setuptools" + ], + "coreschema": [ + "setuptools" + ], + "cornice": [ + "setuptools" + ], + "coronavirus": [ + "setuptools" + ], + "corsair-scan": [ + "setuptools" + ], + "cot": [ + "setuptools" + ], + "covcore": [ + "setuptools" + ], + "coverage": [ + "setuptools" + ], + "coveralls": [ + "setuptools" + ], + "cppe": [ + "setuptools" + ], + "cppheaderparser": [ + "setuptools" + ], + "cppy": [ + "setuptools", + "setuptools-scm" + ], "cpyparsing": [ - "cython" + "cython", + "setuptools" + ], + "cram": [ + "setuptools" + ], + "cramjam": [ + "setuptools" ], "crashtest": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "crate": [ + "setuptools" + ], + "crayons": [ + "setuptools" + ], + "crc16": [ + "setuptools" + ], + "crc32c": [ + "setuptools" + ], + "crccheck": [ + "setuptools" + ], + "crcmod": [ + "setuptools" ], "credis": [ "cython", "poetry-core" ], + "credstash": [ + "setuptools" + ], + "criticality-score": [ + "setuptools" + ], + "cron-descriptor": [ + "setuptools" + ], + "croniter": [ + "setuptools" + ], + "cronsim": [ + "setuptools" + ], + "crossplane": [ + "setuptools" + ], + "crownstone-cloud": [ + "setuptools" + ], + "crownstone-core": [ + "setuptools" + ], + "crownstone-sse": [ + "setuptools" + ], + "crownstone-uart": [ + "setuptools" + ], "cruft": [ "poetry-core" ], + "cryptg": [ + "setuptools" + ], + "cryptography": [ + "setuptools" + ], + "cryptolyzer": [ + "setuptools" + ], + "cryptoparser": [ + "setuptools" + ], + "crytic-compile": [ + "setuptools" + ], + "csrmesh": [ + "setuptools" + ], + "css-html-js-minify": [ + "setuptools" + ], + "css-parser": [ + "setuptools" + ], + "csscompressor": [ + "setuptools" + ], + "cssmin": [ + "setuptools" + ], + "cssselect": [ + "setuptools" + ], "cssselect2": [ "flit", - "flit-core" + "flit-core", + "setuptools" + ], + "cssutils": [ + "setuptools", + "setuptools-scm" + ], + "csvw": [ + "setuptools" + ], + "cucumber-tag-expressions": [ + "setuptools" + ], + "cufflinks": [ + "setuptools" + ], + "curio": [ + "setuptools" + ], + "curtsies": [ + "setuptools" + ], + "curve25519-donna": [ + "setuptools" + ], + "cvxopt": [ + "setuptools" + ], + "cvxpy": [ + "setuptools" ], "cwcwidth": [ - "cython" + "cython", + "setuptools" + ], + "cx-freeze": [ + "setuptools" + ], + "cx-oracle": [ + "setuptools" + ], + "cxxfilt": [ + "setuptools" + ], + "cycler": [ + "setuptools" ], "cyclonedx-python-lib": [ - "poetry-core" + "poetry-core", + "setuptools" ], "cymem": [ - "cython" + "cython", + "setuptools" ], "cypari2": [ - "cython" + "cython", + "setuptools" ], "cypherpunkpay": [ - "poetry-core" + "poetry-core", + "setuptools" ], "cysignals": [ + "cython", + "setuptools" + ], + "cysimdjson": [ "cython" ], + "cython": [ + "setuptools" + ], + "cython-3": [ + "setuptools" + ], + "cytoolz": [ + "cython", + "setuptools" + ], + "d20": [ + "setuptools" + ], + "d2to1": [ + "setuptools" + ], + "dacite": [ + "setuptools" + ], + "daemonize": [ + "setuptools" + ], + "daemonocle": [ + "setuptools" + ], + "dalle-mini": [ + "setuptools" + ], + "daphne": [ + "setuptools" + ], + "darglint": [ + "poetry" + ], + "dasbus": [ + "setuptools" + ], + "dash": [ + "setuptools" + ], + "dash-core-components": [ + "setuptools" + ], + "dash-html-components": [ + "setuptools" + ], + "dash-renderer": [ + "setuptools" + ], + "dash-table": [ + "setuptools" + ], + "dask": [ + "setuptools" + ], + "dask-gateway": [ + "setuptools" + ], + "dask-gateway-server": [ + "setuptools" + ], + "dask-glm": [ + "setuptools", + "setuptools-scm" + ], + "dask-image": [ + "setuptools" + ], + "dask-jobqueue": [ + "setuptools" + ], + "dask-ml": [ + "setuptools", + "setuptools-scm" + ], + "dask-mpi": [ + "setuptools" + ], + "dask-yarn": [ + "setuptools" + ], + "databases": [ + "setuptools" + ], + "databricks-cli": [ + "setuptools" + ], + "databricks-connect": [ + "setuptools" + ], + "databricks-sql-connector": [ + "poetry-core" + ], + "dataclasses-json": [ + "setuptools" + ], + "dataclasses-serialization": [ + "setuptools" + ], + "datadiff": [ + "setuptools" + ], "datadog": [ - "hatchling" + "hatchling", + "setuptools" + ], + "datafusion": [ + "setuptools" + ], + "datamodeldict": [ + "setuptools" + ], + "datapoint": [ + "setuptools" + ], + "dataset": [ + "setuptools" + ], + "datasets": [ + "setuptools" + ], + "datasette": [ + "setuptools" + ], + "datasette-template-sql": [ + "setuptools" + ], + "datashader": [ + "setuptools" + ], + "datashape": [ + "setuptools" + ], + "datauri": [ + "setuptools" + ], + "dateparser": [ + "setuptools" + ], + "dateutil": [ + "setuptools", + "setuptools-scm" + ], + "dateutils": [ + "setuptools" ], "datrie": [ - "cython" + "cython", + "setuptools" + ], + "dawg-python": [ + "setuptools" + ], + "db-dtypes": [ + "setuptools" + ], + "dbf": [ + "setuptools" + ], + "dbfread": [ + "setuptools" + ], + "dbus-client-gen": [ + "setuptools" + ], + "dbus-fast": [ + "poetry-core" + ], + "dbus-next": [ + "setuptools" + ], + "dbus-python": [ + "setuptools" + ], + "dbus-python-client-gen": [ + "setuptools" + ], + "dbus-signature-pyparsing": [ + "setuptools" + ], + "dbutils": [ + "setuptools" + ], + "ddt": [ + "setuptools" ], "ddtrace": [ "cython" ], + "deal": [ + "flit-core", + "setuptools" + ], + "deal-solver": [ + "flit-core", + "setuptools" + ], + "deap": [ + "setuptools" + ], + "debian": [ + "setuptools" + ], + "debian-inspector": [ + "setuptools", + "setuptools-scm" + ], "debtcollector": [ - "pbr" + "pbr", + "setuptools" + ], + "debts": [ + "setuptools" + ], + "debuglater": [ + "setuptools" + ], + "debugpy": [ + "setuptools" + ], + "decli": [ + "setuptools" + ], + "decopatch": [ + "setuptools", + "setuptools-scm" + ], + "decorator": [ + "setuptools" + ], + "deemix": [ + "setuptools" + ], + "deep-chainmap": [ + "setuptools" + ], + "deep-merge": [ + "setuptools" + ], + "deep-translator": [ + "setuptools" + ], + "deepdiff": [ + "setuptools" + ], + "deepdish": [ + "setuptools" + ], + "deepmerge": [ + "setuptools", + "setuptools-scm" + ], + "deeptoolsintervals": [ + "setuptools" + ], + "deepwave": [ + "setuptools" + ], + "deezer-py": [ + "setuptools" ], "deezer-python": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "defcon": [ + "setuptools", + "setuptools-scm" + ], + "deform": [ + "setuptools" + ], + "defusedxml": [ + "setuptools" + ], + "delegator-py": [ + "setuptools" + ], + "delorean": [ + "setuptools" + ], + "deltachat": [ + "setuptools", + "setuptools-scm" + ], + "deluge-client": [ + "setuptools" + ], + "demjson3": [ + "setuptools" + ], + "dendropy": [ + "setuptools" + ], + "denonavr": [ + "setuptools" + ], + "dependency-injector": [ + "setuptools" + ], + "deprecated": [ + "setuptools" + ], + "deprecation": [ + "setuptools" + ], + "derpconf": [ + "setuptools" + ], + "desktop-notifier": [ + "setuptools" + ], + "detect-secrets": [ + "setuptools" + ], + "devito": [ + "setuptools" + ], + "devolo-home-control-api": [ + "setuptools", + "setuptools-scm" + ], + "devolo-plc-api": [ + "setuptools", + "setuptools-scm" + ], + "devtools": [ + "setuptools" ], "diagrams": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "diceware": [ + "setuptools" + ], + "dicom2nifti": [ + "setuptools" + ], + "dict2xml": [ + "setuptools" + ], + "dictdiffer": [ + "setuptools", + "setuptools-scm" + ], + "dictionaries": [ + "setuptools" + ], + "dictpath": [ + "setuptools" + ], + "dicttoxml": [ + "setuptools" + ], + "dicttoxml2": [ + "setuptools" + ], + "diff-cover": [ + "setuptools" + ], + "diff-match-patch": [ + "setuptools" + ], + "digi-xbee": [ + "setuptools" + ], + "digital-ocean": [ + "setuptools" + ], + "dill": [ + "setuptools" + ], + "dinghy": [ + "setuptools" + ], + "dingz": [ + "setuptools" + ], + "diofant": [ + "setuptools", + "setuptools-scm" ], "dipy": [ - "cython" + "cython", + "setuptools" + ], + "directv": [ + "setuptools" + ], + "dirty-equals": [ + "poetry-core", + "setuptools" + ], + "discid": [ + "setuptools" + ], + "discogs-client": [ + "setuptools" + ], + "discordpy": [ + "setuptools" ], "discovery30303": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "diskcache": [ + "setuptools" + ], + "dissononce": [ + "setuptools" + ], + "distlib": [ + "setuptools" + ], + "distorm3": [ + "setuptools" + ], + "distrax": [ + "setuptools" + ], + "distributed": [ + "setuptools" + ], + "distro": [ + "setuptools" + ], + "distutils-extra": [ + "setuptools" + ], + "dj-database-url": [ + "setuptools" + ], + "dj-email-url": [ + "setuptools" + ], + "dj-rest-auth": [ + "setuptools" + ], + "dj-search-url": [ + "setuptools" + ], + "django": [ + "setuptools" + ], + "django-3": [ + "setuptools" + ], + "django-4": [ + "setuptools" + ], + "django-allauth": [ + "setuptools" + ], + "django-anymail": [ + "setuptools" + ], + "django-appconf": [ + "setuptools" + ], + "django-auth-ldap": [ + "setuptools", + "setuptools-scm" + ], + "django-cache-url": [ + "setuptools" + ], + "django-cacheops": [ + "setuptools" + ], + "django-celery-beat": [ + "setuptools" + ], + "django-celery-email": [ + "setuptools" + ], + "django-classytags": [ + "setuptools" + ], + "django-cleanup": [ + "setuptools" + ], + "django-colorful": [ + "setuptools" + ], + "django-compat": [ + "setuptools" + ], + "django-compressor": [ + "setuptools" + ], + "django-configurations": [ + "setuptools", + "setuptools-scm" + ], + "django-contrib-comments": [ + "setuptools" + ], + "django-cors-headers": [ + "setuptools" + ], + "django-cryptography": [ + "setuptools" + ], + "django-csp": [ + "setuptools" + ], + "django-debug-toolbar": [ + "setuptools" + ], + "django-discover-runner": [ + "setuptools" + ], + "django-dynamic-preferences": [ + "setuptools" + ], + "django-encrypted-model-fields": [ + "poetry-core", + "setuptools" + ], + "django-environ": [ + "setuptools" + ], + "django-extensions": [ + "setuptools" + ], + "django-filter": [ + "setuptools" + ], + "django-formtools": [ + "setuptools", + "setuptools-scm" ], "django-graphiql-debug-toolbar": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "django-gravatar2": [ + "setuptools" + ], + "django-guardian": [ + "setuptools" + ], + "django-haystack": [ + "setuptools", + "setuptools-scm" + ], + "django-health-check": [ + "setuptools", + "setuptools-scm" + ], + "django-hijack": [ + "setuptools" + ], + "django-ipware": [ + "setuptools" + ], + "django-jinja": [ + "setuptools" + ], + "django-js-asset": [ + "setuptools" + ], + "django-logentry-admin": [ + "setuptools" + ], + "django-mailman3": [ + "setuptools" + ], + "django-maintenance-mode": [ + "setuptools" + ], + "django-model-utils": [ + "setuptools", + "setuptools-scm" + ], + "django-modelcluster": [ + "setuptools" + ], + "django-mptt": [ + "setuptools" + ], + "django-multiselectfield": [ + "setuptools" + ], + "django-nose": [ + "setuptools" + ], + "django-oauth-toolkit": [ + "setuptools" + ], + "django-otp": [ + "setuptools" + ], + "django-paintstore": [ + "setuptools" + ], + "django-pglocks": [ + "setuptools" + ], + "django-picklefield": [ + "setuptools" + ], + "django-polymorphic": [ + "setuptools" + ], + "django-postgresql-netfields": [ + "setuptools" + ], + "django-prometheus": [ + "setuptools" + ], + "django-q": [ + "poetry-core", + "setuptools" + ], + "django-ranged-response": [ + "setuptools" + ], + "django-raster": [ + "setuptools" + ], + "django-redis": [ + "setuptools" + ], + "django-rest-auth": [ + "setuptools" + ], + "django-rest-polymorphic": [ + "setuptools" + ], + "django-reversion": [ + "setuptools" + ], + "django-rq": [ + "setuptools" + ], + "django-sesame": [ + "setuptools" + ], + "django-silk": [ + "setuptools", + "setuptools-scm" + ], + "django-simple-captcha": [ + "setuptools" + ], + "django-sites": [ + "setuptools" + ], + "django-sr": [ + "setuptools" + ], + "django-statici18n": [ + "setuptools" + ], + "django-storages": [ + "setuptools" + ], + "django-stubs": [ + "setuptools" + ], + "django-stubs-ext": [ + "setuptools" + ], + "django-tables2": [ + "setuptools" + ], + "django-tagging": [ + "setuptools" + ], + "django-taggit": [ + "setuptools" + ], + "django-tastypie": [ + "setuptools" ], "django-timezone-field": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "django-treebeard": [ + "setuptools" + ], + "django-versatileimagefield": [ + "setuptools" + ], + "django-webpack-loader": [ + "setuptools" + ], + "django-widget-tweaks": [ + "setuptools", + "setuptools-scm" + ], + "djangoql": [ + "setuptools" + ], + "djangorestframework": [ + "setuptools" + ], + "djangorestframework-camel-case": [ + "setuptools" + ], + "djangorestframework-dataclasses": [ + "setuptools" + ], + "djangorestframework-guardian": [ + "setuptools" + ], + "djangorestframework-jwt": [ + "setuptools" + ], + "djangorestframework-recursive": [ + "setuptools" + ], + "djangorestframework-simplejwt": [ + "setuptools", + "setuptools-scm" + ], + "djmail": [ + "setuptools" + ], + "dkimpy": [ + "setuptools" + ], + "dlib": [ + "setuptools" + ], + "dlinfo": [ + "setuptools", + "setuptools-scm" + ], + "dlx": [ + "setuptools" + ], + "dm-env": [ + "setuptools" + ], + "dm-haiku": [ + "setuptools" + ], + "dm-sonnet": [ + "setuptools" + ], + "dm-tree": [ + "setuptools" + ], + "dmenu-python": [ + "setuptools" + ], + "dnachisel": [ + "setuptools" + ], + "dns": [ + "setuptools", + "setuptools-scm" + ], + "dnslib": [ + "setuptools" ], "dnspython": [ - "poetry-core" + "poetry-core", + "setuptools", + "setuptools-scm" + ], + "dnspythonchia": [ + "setuptools", + "setuptools-scm" ], "doc8": [ - "pbr" + "pbr", + "setuptools", + "setuptools-scm" + ], + "docformatter": [ + "setuptools" + ], + "docker": [ + "setuptools", + "setuptools-scm" + ], + "docker-py": [ + "setuptools" + ], + "docker-pycreds": [ + "setuptools" + ], + "dockerfile-parse": [ + "setuptools" + ], + "dockerpty": [ + "setuptools" + ], + "dockerspawner": [ + "setuptools" + ], + "docloud": [ + "setuptools" + ], + "docopt": [ + "setuptools" + ], + "docopt-ng": [ + "setuptools" + ], + "docplex": [ + "setuptools" + ], + "docrep": [ + "setuptools" ], "docstring-parser": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "docstring-to-markdown": [ + "setuptools" + ], + "doctest-ignore-unicode": [ + "setuptools" + ], + "docutils": [ + "setuptools" + ], + "docx2python": [ + "setuptools" + ], + "docx2txt": [ + "setuptools" + ], + "dodgy": [ + "setuptools" + ], + "dogpile-cache": [ + "setuptools" + ], + "dogtail": [ + "setuptools" + ], + "doit": [ + "setuptools" + ], + "doit-py": [ + "setuptools" + ], + "domeneshop": [ + "setuptools" + ], + "dominate": [ + "setuptools" + ], + "doorbirdpy": [ + "setuptools" + ], + "dopy": [ + "setuptools" + ], + "dot2tex": [ + "setuptools" + ], + "dotmap": [ + "setuptools" + ], + "dotty-dict": [ + "poetry-core", + "setuptools", + "setuptools-scm" + ], + "downloader-cli": [ + "setuptools" + ], + "dparse": [ + "setuptools" + ], + "dparse2": [ + "setuptools" + ], + "dpath": [ + "setuptools" + ], + "dpcontracts": [ + "setuptools" + ], + "dpkt": [ + "setuptools" + ], + "dragonfly": [ + "setuptools" + ], + "dremel3dpy": [ + "setuptools" + ], + "drf-jwt": [ + "setuptools" + ], + "drf-nested-routers": [ + "setuptools" + ], + "drf-spectacular": [ + "setuptools" + ], + "drf-spectacular-sidecar": [ + "setuptools" + ], + "drf-yasg": [ + "setuptools", + "setuptools-scm" + ], + "drivelib": [ + "setuptools" + ], + "drms": [ + "setuptools", + "setuptools-scm" + ], + "dropbox": [ + "setuptools" + ], + "ds-store": [ + "setuptools" + ], + "ds4drv": [ + "setuptools" + ], + "dsinternals": [ + "setuptools" + ], + "dsmr-parser": [ + "setuptools" ], "dtlssocket": [ - "cython" + "cython", + "setuptools" + ], + "ducc0": [ + "setuptools" ], "duckdb": [ - "pybind11" + "pybind11", + "setuptools", + "setuptools-scm" ], "duckdb-engine": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "duecredit": [ + "setuptools" + ], + "duet": [ + "setuptools" + ], + "dufte": [ + "setuptools" + ], + "dugong": [ + "setuptools" + ], + "dulwich": [ + "setuptools" ], "dunamai": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "dungeon-eos": [ + "setuptools" + ], + "duo-client": [ + "setuptools" + ], + "durus": [ + "setuptools" + ], + "dvc-data": [ + "setuptools", + "setuptools-scm" + ], + "dvc-objects": [ + "setuptools", + "setuptools-scm" + ], + "dvc-render": [ + "setuptools", + "setuptools-scm" + ], + "dvc-task": [ + "setuptools", + "setuptools-scm" + ], + "dvclive": [ + "setuptools" + ], + "dwdwfsapi": [ + "setuptools" + ], + "dyn": [ + "setuptools" + ], + "dynalite-devices": [ + "setuptools" ], "dynd": [ - "cython" + "cython", + "setuptools" + ], + "eagle100": [ + "setuptools" + ], + "easy-thumbnails": [ + "setuptools" + ], + "easydict": [ + "setuptools" + ], + "easygui": [ + "setuptools" + ], + "easyprocess": [ + "setuptools" + ], + "easywatch": [ + "setuptools" + ], + "ebaysdk": [ + "setuptools" + ], + "ec2instanceconnectcli": [ + "setuptools" + ], + "ecdsa": [ + "setuptools" + ], + "ecoaliface": [ + "setuptools" + ], + "ecos": [ + "setuptools" + ], + "ecpy": [ + "setuptools" ], "ecs-logging": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "ed25519": [ + "setuptools" + ], + "edalize": [ + "setuptools" + ], + "editables": [ + "setuptools" ], "editdistance": [ - "cython" + "cython", + "setuptools" + ], + "editdistance-s": [ + "setuptools" + ], + "editorconfig": [ + "setuptools" + ], + "edward": [ + "setuptools" ], "eebrightbox": [ "pbr" ], + "effect": [ + "setuptools" + ], + "eggdeps": [ + "setuptools" + ], + "egginstallhook": [ + "setuptools" + ], + "einops": [ + "setuptools" + ], "eiswarnung": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "elastic-apm": [ + "setuptools" + ], + "elasticsearch": [ + "setuptools" + ], + "elasticsearch-dsl": [ + "setuptools" + ], + "elasticsearchdsl": [ + "setuptools" ], "elegy": [ - "poetry" + "poetry", + "setuptools" + ], + "elementpath": [ + "setuptools" + ], + "elevate": [ + "setuptools", + "setuptools-scm" ], "elgato": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "eliot": [ + "setuptools" + ], + "eliqonline": [ + "setuptools" ], "elkm1-lib": [ - "poetry-core" + "poetry-core", + "setuptools" ], "elmax": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "elmax-api": [ + "setuptools" + ], + "email-validator": [ + "setuptools" + ], + "emailthreads": [ + "setuptools" + ], + "embrace": [ + "setuptools" + ], + "emcee": [ + "setuptools", + "setuptools-scm" + ], + "emoji": [ + "setuptools" + ], + "empty-files": [ + "setuptools" + ], + "empy": [ + "setuptools" + ], + "emulated-roku": [ + "setuptools" + ], + "emv": [ + "setuptools" + ], + "enaml": [ + "setuptools", + "setuptools-scm" + ], + "enamlx": [ + "setuptools" + ], + "enhancements": [ + "setuptools" + ], + "enlighten": [ + "setuptools" + ], + "enocean": [ + "setuptools" + ], + "enrich": [ + "setuptools", + "setuptools-scm" + ], + "entrance": [ + "setuptools" + ], + "entrance-with-router-features": [ + "setuptools" + ], + "entry-points-txt": [ + "setuptools" + ], + "entrypoint2": [ + "setuptools" ], "entrypoints": [ "flit", - "flit-core" + "flit-core", + "setuptools" ], "enturclient": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "enum-compat": [ + "setuptools" + ], + "enum34": [ + "setuptools" ], "enumatch": [ "poetry" ], + "env-canada": [ + "setuptools" + ], + "environmental-override": [ + "setuptools" + ], + "environs": [ + "setuptools" + ], + "envisage": [ + "setuptools" + ], + "envoy-reader": [ + "setuptools" + ], + "envoy-utils": [ + "setuptools" + ], "envs": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "enzyme": [ + "setuptools" + ], + "epc": [ + "setuptools" + ], + "ephem": [ + "setuptools" + ], + "ephemeral-port-reserve": [ + "setuptools" + ], + "epson-projector": [ + "setuptools" + ], + "eradicate": [ + "setuptools" + ], + "escapism": [ + "setuptools" + ], + "esprima": [ + "setuptools" + ], + "et-xmlfile": [ + "setuptools" + ], + "etcd": [ + "setuptools" + ], + "ete3": [ + "setuptools" + ], + "etebase": [ + "setuptools" + ], + "etebase-server": [ + "setuptools" + ], + "etelemetry": [ + "setuptools" + ], + "eternalegypt": [ + "setuptools" + ], + "etesync": [ + "setuptools" + ], + "eth-abi": [ + "setuptools" + ], + "eth-account": [ + "setuptools" + ], + "eth-hash": [ + "setuptools" + ], + "eth-keyfile": [ + "setuptools" + ], + "eth-keys": [ + "setuptools" + ], + "eth-rlp": [ + "setuptools" + ], + "eth-typing": [ + "setuptools" + ], + "eth-utils": [ + "setuptools" + ], + "etils": [ + "flit-core", + "setuptools" + ], + "etuples": [ + "setuptools" + ], + "ev3dev2": [ + "setuptools" + ], + "evdev": [ + "setuptools" + ], + "eve": [ + "setuptools" + ], + "eventlet": [ + "setuptools" + ], + "events": [ + "setuptools" + ], + "evohome-async": [ + "setuptools" + ], + "evtx": [ + "setuptools" + ], + "ewmh": [ + "setuptools" ], "exceptiongroup": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "exchangelib": [ + "setuptools" + ], + "exdown": [ + "setuptools" + ], + "execnet": [ + "setuptools", + "setuptools-scm" + ], + "executing": [ + "setuptools", + "setuptools-scm" + ], + "executor": [ + "setuptools" + ], + "exif": [ + "setuptools" + ], + "exifread": [ + "setuptools" + ], + "expects": [ + "setuptools" + ], + "expecttest": [ + "poetry", + "setuptools" + ], + "expiringdict": [ + "setuptools" + ], + "explorerscript": [ + "setuptools" + ], + "exrex": [ + "setuptools" + ], + "extractcode": [ + "setuptools", + "setuptools-scm" + ], + "extractcode-7z": [ + "setuptools" + ], + "extractcode-libarchive": [ + "setuptools" + ], + "extras": [ + "setuptools" + ], + "eyed3": [ + "setuptools" + ], + "ezdxf": [ + "setuptools" + ], + "ezyrb": [ + "setuptools" + ], + "f90nml": [ + "setuptools", + "setuptools-scm" + ], + "faadelays": [ + "setuptools" + ], + "fabric": [ + "setuptools" + ], + "fabulous": [ + "setuptools" + ], + "face": [ + "setuptools" + ], + "face-recognition": [ + "setuptools" + ], + "face-recognition-models": [ + "setuptools" + ], + "facebook-sdk": [ + "setuptools" + ], + "facedancer": [ + "setuptools" + ], + "factory-boy": [ + "setuptools" + ], + "faiss": [ + "setuptools" + ], + "fake-useragent": [ + "setuptools" + ], + "faker": [ + "setuptools" + ], + "fakeredis": [ + "poetry-core", + "setuptools" ], "falcon": [ - "cython" + "cython", + "setuptools" + ], + "faraday-agent-parameters-types": [ + "setuptools" + ], + "faraday-plugins": [ + "setuptools" ], "fastapi": [ - "flitBuildHook" + "flitBuildHook", + "hatchling", + "setuptools" + ], + "fastapi-mail": [ + "poetry-core", + "setuptools" ], "fastapi-restful": [ "poetry" ], "fastavro": [ - "cython" + "cython", + "setuptools" ], "fastbencode": [ - "cython" + "cython", + "setuptools" + ], + "fastcache": [ + "setuptools" + ], + "fastcore": [ + "setuptools" + ], + "fastdiff": [ + "setuptools" ], "fastdtw": [ - "cython" + "cython", + "setuptools" + ], + "fastecdsa": [ + "setuptools" + ], + "fasteners": [ + "setuptools" + ], + "fastentrypoints": [ + "setuptools" + ], + "fastimport": [ + "setuptools" + ], + "fastjsonschema": [ + "setuptools" + ], + "fastnumbers": [ + "setuptools" + ], + "fastpair": [ + "setuptools" + ], + "fastparquet": [ + "setuptools" + ], + "fastpbkdf2": [ + "setuptools" + ], + "fastprogress": [ + "setuptools" + ], + "fastrlock": [ + "setuptools" + ], + "fasttext": [ + "setuptools" + ], + "favicon": [ + "setuptools" + ], + "fb-re2": [ + "setuptools" + ], + "fe25519": [ + "setuptools" + ], + "feedgen": [ + "setuptools" + ], + "feedgenerator": [ + "setuptools" + ], + "feedparser": [ + "setuptools" + ], + "fenics": [ + "setuptools" + ], + "ffcv": [ + "setuptools" + ], + "ffmpeg-progress-yield": [ + "setuptools" + ], + "ffmpeg-python": [ + "setuptools" ], "fhconfparser": [ "poetry-core" ], + "fiblary3-fork": [ + "setuptools" + ], + "fido2": [ + "setuptools" + ], + "fields": [ + "setuptools" + ], + "file-read-backwards": [ + "setuptools" + ], + "filebrowser-safe": [ + "setuptools" + ], + "filebytes": [ + "setuptools" + ], + "filecheck": [ + "poetry", + "setuptools" + ], + "filelock": [ + "setuptools", + "setuptools-scm" + ], + "filemagic": [ + "setuptools" + ], + "filetype": [ + "setuptools" + ], + "filterpy": [ + "setuptools" + ], "finalfusion": [ - "cython" + "cython", + "setuptools" + ], + "findimports": [ + "setuptools" + ], + "findpython": [ + "setuptools" + ], + "fingerprints": [ + "setuptools" + ], + "finitude": [ + "setuptools" + ], + "fints": [ + "setuptools" + ], + "fiona": [ + "setuptools" + ], + "fipy": [ + "setuptools" + ], + "fire": [ + "setuptools" + ], + "fireflyalgorithm": [ + "poetry-core", + "setuptools" + ], + "firetv": [ + "setuptools" + ], + "first": [ + "setuptools" + ], + "fitbit": [ + "setuptools" + ], + "fivem-api": [ + "setuptools", + "setuptools-scm" + ], + "fixerio": [ + "setuptools" ], "fixtures": [ - "pbr" + "pbr", + "setuptools" + ], + "fjaraskupan": [ + "setuptools" + ], + "flake8": [ + "setuptools" + ], + "flake8-blind-except": [ + "setuptools" + ], + "flake8-bugbear": [ + "setuptools" ], "flake8-debugger": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "flake8-docstrings": [ + "setuptools" + ], + "flake8-future-import": [ + "setuptools" + ], + "flake8-import-order": [ + "setuptools" + ], + "flake8-length": [ + "setuptools" + ], + "flake8-polyfill": [ + "setuptools" ], "flake8-print": [ "poetry-core" ], - "flatten-dict": [ + "flaky": [ + "setuptools" + ], + "flametree": [ + "setuptools" + ], + "flammkuchen": [ + "setuptools" + ], + "flashtext": [ + "setuptools" + ], + "flask": [ + "setuptools" + ], + "flask-admin": [ + "setuptools" + ], + "flask-api": [ + "setuptools" + ], + "flask-appbuilder": [ + "setuptools" + ], + "flask-assets": [ + "setuptools" + ], + "flask-autoindex": [ + "setuptools" + ], + "flask-babel": [ + "setuptools" + ], + "flask-babelex": [ + "setuptools" + ], + "flask-basicauth": [ + "setuptools" + ], + "flask-bcrypt": [ + "setuptools" + ], + "flask-bootstrap": [ + "setuptools" + ], + "flask-caching": [ + "setuptools" + ], + "flask-common": [ + "setuptools" + ], + "flask-compress": [ + "setuptools", + "setuptools-scm" + ], + "flask-cors": [ + "setuptools" + ], + "flask-elastic": [ + "setuptools" + ], + "flask-gravatar": [ + "setuptools" + ], + "flask-httpauth": [ + "setuptools" + ], + "flask-jwt-extended": [ + "setuptools" + ], + "flask-limiter": [ + "setuptools" + ], + "flask-login": [ + "setuptools" + ], + "flask-mail": [ + "setuptools" + ], + "flask-mailman": [ "poetry-core" ], + "flask-marshmallow": [ + "setuptools" + ], + "flask-migrate": [ + "setuptools" + ], + "flask-mongoengine": [ + "setuptools" + ], + "flask-openid": [ + "setuptools" + ], + "flask-paginate": [ + "setuptools" + ], + "flask-paranoid": [ + "setuptools" + ], + "flask-principal": [ + "setuptools" + ], + "flask-pymongo": [ + "setuptools" + ], + "flask-restful": [ + "setuptools" + ], + "flask-restplus": [ + "setuptools" + ], + "flask-restx": [ + "setuptools" + ], + "flask-reverse-proxy-fix": [ + "setuptools" + ], + "flask-script": [ + "setuptools" + ], + "flask-seasurf": [ + "setuptools" + ], + "flask-security-too": [ + "setuptools" + ], + "flask-session": [ + "setuptools" + ], + "flask-silk": [ + "setuptools" + ], + "flask-socketio": [ + "setuptools" + ], + "flask-sockets": [ + "setuptools" + ], + "flask-sqlalchemy": [ + "setuptools" + ], + "flask-sslify": [ + "setuptools" + ], + "flask-swagger": [ + "setuptools" + ], + "flask-swagger-ui": [ + "setuptools" + ], + "flask-talisman": [ + "setuptools" + ], + "flask-testing": [ + "setuptools" + ], + "flask-versioned": [ + "setuptools" + ], + "flask-wtf": [ + "setuptools" + ], + "flaskbabel": [ + "setuptools" + ], + "flatbuffers": [ + "setuptools" + ], + "flatdict": [ + "setuptools" + ], + "flatten-dict": [ + "poetry-core", + "setuptools" + ], + "flax": [ + "setuptools" + ], + "fleep": [ + "setuptools" + ], + "flexmock": [ + "setuptools" + ], + "flickrapi": [ + "setuptools" + ], "flipr-api": [ - "poetry-core" + "poetry-core", + "setuptools" ], "flit": [ - "flit-core" + "flit-core", + "setuptools" + ], + "flit-core": [ + "setuptools" + ], + "flower": [ + "setuptools" + ], + "flowlogs-reader": [ + "setuptools" + ], + "fluent-logger": [ + "setuptools" + ], + "flufl-bounce": [ + "setuptools" + ], + "flufl-i18n": [ + "setuptools" + ], + "flufl-lock": [ + "setuptools" + ], + "flux-led": [ + "setuptools" + ], + "flynt": [ + "setuptools" + ], + "fn": [ + "setuptools" + ], + "fnvhash": [ + "setuptools" + ], + "folium": [ + "setuptools", + "setuptools-scm" + ], + "fontmake": [ + "setuptools", + "setuptools-scm" + ], + "fontmath": [ + "setuptools", + "setuptools-scm" + ], + "fontparts": [ + "setuptools", + "setuptools-scm" + ], + "fontpens": [ + "setuptools" + ], + "fonttools": [ + "setuptools", + "setuptools-scm" + ], + "foobot-async": [ + "setuptools" + ], + "foolscap": [ + "setuptools" + ], + "forbiddenfruit": [ + "setuptools" + ], + "fordpass": [ + "setuptools" + ], + "forecast-solar": [ + "setuptools" ], "formbox": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "formencode": [ + "setuptools", + "setuptools-scm" + ], + "fortiosapi": [ + "setuptools" + ], + "foundationdb51": [ + "setuptools" + ], + "foundationdb52": [ + "setuptools" + ], + "foundationdb60": [ + "setuptools" + ], + "foundationdb61": [ + "setuptools" + ], + "fountains": [ + "setuptools" + ], + "foxdot": [ + "setuptools" + ], + "fpdf": [ + "setuptools" ], "fpylll": [ - "cython" + "cython", + "setuptools" + ], + "fpyutils": [ + "setuptools" + ], + "fqdn": [ + "setuptools" ], "freebox-api": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "freetype-py": [ + "setuptools", + "setuptools-scm" + ], + "freezegun": [ + "setuptools" + ], + "frigidaire": [ + "setuptools" + ], + "frilouz": [ + "setuptools" + ], + "fritzconnection": [ + "setuptools" + ], + "fritzprofiles": [ + "setuptools" + ], + "frozendict": [ + "setuptools" ], "frozenlist": [ - "cython" + "cython", + "setuptools" + ], + "fs": [ + "setuptools" + ], + "fs-s3fs": [ + "setuptools" + ], + "fsspec": [ + "setuptools" + ], + "ftfy": [ + "poetry", + "setuptools" + ], + "ftputil": [ + "setuptools" + ], + "func-timeout": [ + "setuptools" ], "funcparserlib": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "funcsigs": [ + "setuptools" + ], + "functorch": [ + "setuptools" + ], + "funcy": [ + "setuptools" + ], + "furl": [ + "setuptools" ], "furo": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "fuse": [ + "setuptools" + ], + "fusepy": [ + "setuptools" + ], + "future": [ + "setuptools" + ], + "future-fstrings": [ + "setuptools" + ], + "future-typing": [ + "setuptools" + ], + "futures": [ + "setuptools" + ], + "fuzzyfinder": [ + "setuptools" + ], + "fuzzywuzzy": [ + "setuptools" + ], + "fx2": [ + "setuptools" ], "galario": [ "cython" ], + "galois": [ + "setuptools", + "setuptools-scm" + ], + "gamble": [ + "setuptools" + ], "gaphas": [ - "poetry-core" + "poetry-core", + "setuptools" ], "garages-amsterdam": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "garminconnect": [ + "setuptools" + ], + "garminconnect-aio": [ + "setuptools" + ], + "garminconnect-ha": [ + "setuptools" + ], + "gast": [ + "setuptools" + ], + "gatt": [ + "setuptools" + ], + "gattlib": [ + "setuptools" + ], + "gb-io": [ + "setuptools" ], "gbinder-python": [ - "cython" + "cython", + "setuptools" + ], + "gbulb": [ + "setuptools" + ], + "gcal-sync": [ + "setuptools" + ], + "gcovr": [ + "setuptools" + ], + "gcsfs": [ + "setuptools" + ], + "gdal": [ + "setuptools" + ], + "gdata": [ + "setuptools" + ], + "gdown": [ + "setuptools" + ], + "gdtoolkit": [ + "setuptools" + ], + "ge25519": [ + "setuptools" + ], + "gehomesdk": [ + "setuptools" + ], + "gekitchen": [ + "setuptools" + ], + "gemfileparser": [ + "setuptools" + ], + "genanki": [ + "setuptools" ], "generic": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "geniushub-client": [ + "setuptools" + ], + "genome-collector": [ + "setuptools" + ], + "genpy": [ + "setuptools" + ], + "genshi": [ + "setuptools" ], "gensim": [ - "cython" + "cython", + "setuptools" + ], + "gentools": [ + "setuptools" + ], + "genzshcomp": [ + "setuptools" + ], + "geoalchemy2": [ + "setuptools", + "setuptools-scm" + ], + "geocachingapi": [ + "setuptools", + "setuptools-scm" + ], + "geographiclib": [ + "setuptools" + ], + "geoip": [ + "setuptools" + ], + "geoip2": [ + "setuptools" + ], + "geojson": [ + "setuptools" + ], + "geojson-client": [ + "setuptools" + ], + "geomet": [ + "setuptools" + ], + "geometric": [ + "setuptools" + ], + "geopandas": [ + "setuptools" + ], + "geopy": [ + "setuptools" + ], + "georss-client": [ + "setuptools" + ], + "georss-generic-client": [ + "setuptools" + ], + "georss-ign-sismologia-client": [ + "setuptools" + ], + "georss-ingv-centro-nazionale-terremoti-client": [ + "setuptools" + ], + "georss-nrcan-earthquakes-client": [ + "setuptools" + ], + "georss-qld-bushfire-alert-client": [ + "setuptools" + ], + "georss-tfs-incidents-client": [ + "setuptools" + ], + "georss-wa-dfes-client": [ + "setuptools" + ], + "get-video-properties": [ + "setuptools" + ], + "getkey": [ + "setuptools" + ], + "getmac": [ + "setuptools" + ], + "gevent": [ + "setuptools" + ], + "gevent-socketio": [ + "setuptools" + ], + "gevent-websocket": [ + "setuptools" + ], + "geventhttpclient": [ + "setuptools" + ], + "gflags": [ + "setuptools" + ], + "ghapi": [ + "setuptools" + ], + "ghdiff": [ + "setuptools" + ], + "ghp-import": [ + "setuptools" + ], + "ghrepo-stats": [ + "setuptools" + ], + "gibberish-detector": [ + "setuptools" ], "gidgethub": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "gigalixir": [ + "setuptools" + ], + "gin-config": [ + "setuptools" + ], + "gios": [ + "setuptools" + ], + "gipc": [ + "setuptools" + ], + "gistyc": [ + "setuptools" + ], + "git-annex-adapter": [ + "setuptools" + ], + "git-filter-repo": [ + "setuptools", + "setuptools-scm" + ], + "git-revise": [ + "setuptools" + ], + "git-sweep": [ + "setuptools" + ], + "gitdb": [ + "setuptools" + ], + "github-to-sqlite": [ + "setuptools" + ], + "github-webhook": [ + "setuptools" + ], + "github3-py": [ + "setuptools" + ], + "gitpython": [ + "setuptools" + ], + "glad": [ + "setuptools" ], "glances-api": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "glasgow": [ + "setuptools", + "setuptools-scm" + ], + "glcontext": [ + "setuptools" + ], + "glean-parser": [ + "setuptools", + "setuptools-scm" + ], + "glean-sdk": [ + "setuptools" + ], + "glfw": [ + "setuptools" + ], + "glob2": [ + "setuptools" + ], + "globus-sdk": [ + "setuptools" + ], + "glom": [ + "setuptools" + ], + "glymur": [ + "setuptools" + ], + "glyphslib": [ + "setuptools", + "setuptools-scm" + ], + "gmpy": [ + "setuptools" + ], + "gmpy2": [ + "setuptools" + ], + "gntp": [ + "setuptools" + ], + "gnureadline": [ + "setuptools" + ], + "goalzero": [ + "setuptools" + ], + "goobook": [ + "poetry-core", + "setuptools" + ], + "goocalendar": [ + "setuptools" + ], + "goodwe": [ + "setuptools" + ], + "google-api-core": [ + "setuptools" + ], + "google-api-python-client": [ + "setuptools" + ], + "google-auth": [ + "setuptools" + ], + "google-auth-httplib2": [ + "setuptools" + ], + "google-auth-oauthlib": [ + "setuptools" + ], + "google-cloud-access-context-manager": [ + "setuptools" + ], + "google-cloud-appengine-logging": [ + "setuptools" + ], + "google-cloud-asset": [ + "setuptools" + ], + "google-cloud-audit-log": [ + "setuptools" + ], + "google-cloud-automl": [ + "setuptools" + ], + "google-cloud-bigquery": [ + "setuptools" + ], + "google-cloud-bigquery-datatransfer": [ + "setuptools" + ], + "google-cloud-bigquery-logging": [ + "setuptools" + ], + "google-cloud-bigquery-storage": [ + "setuptools" + ], + "google-cloud-bigtable": [ + "setuptools" + ], + "google-cloud-compute": [ + "setuptools" + ], + "google-cloud-container": [ + "setuptools" + ], + "google-cloud-core": [ + "setuptools" + ], + "google-cloud-datacatalog": [ + "setuptools" + ], + "google-cloud-dataproc": [ + "setuptools" + ], + "google-cloud-datastore": [ + "setuptools" + ], + "google-cloud-dlp": [ + "setuptools" + ], + "google-cloud-dns": [ + "setuptools" + ], + "google-cloud-error-reporting": [ + "setuptools" + ], + "google-cloud-firestore": [ + "setuptools" + ], + "google-cloud-iam": [ + "setuptools" + ], + "google-cloud-iam-logging": [ + "setuptools" + ], + "google-cloud-iot": [ + "setuptools" + ], + "google-cloud-kms": [ + "setuptools" + ], + "google-cloud-language": [ + "setuptools" + ], + "google-cloud-logging": [ + "setuptools" + ], + "google-cloud-monitoring": [ + "setuptools" + ], + "google-cloud-org-policy": [ + "setuptools" + ], + "google-cloud-os-config": [ + "setuptools" + ], + "google-cloud-pubsub": [ + "setuptools" + ], + "google-cloud-redis": [ + "setuptools" + ], + "google-cloud-resource-manager": [ + "setuptools" + ], + "google-cloud-runtimeconfig": [ + "setuptools" + ], + "google-cloud-secret-manager": [ + "setuptools" + ], + "google-cloud-securitycenter": [ + "setuptools" + ], + "google-cloud-spanner": [ + "setuptools" + ], + "google-cloud-speech": [ + "setuptools" + ], + "google-cloud-storage": [ + "setuptools" + ], + "google-cloud-tasks": [ + "setuptools" + ], + "google-cloud-testutils": [ + "setuptools" + ], + "google-cloud-texttospeech": [ + "setuptools" + ], + "google-cloud-trace": [ + "setuptools" + ], + "google-cloud-translate": [ + "setuptools" + ], + "google-cloud-videointelligence": [ + "setuptools" + ], + "google-cloud-vision": [ + "setuptools" + ], + "google-cloud-websecurityscanner": [ + "setuptools" + ], + "google-crc32c": [ + "setuptools" + ], + "google-i18n-address": [ + "setuptools" + ], + "google-nest-sdm": [ + "setuptools" + ], + "google-pasta": [ + "setuptools" + ], + "google-re2": [ + "setuptools" + ], + "google-resumable-media": [ + "setuptools" + ], + "googleapis-common-protos": [ + "setuptools" + ], + "googlemaps": [ + "setuptools" + ], + "googletrans": [ + "setuptools" + ], + "gorilla": [ + "setuptools" + ], + "govee-ble": [ + "poetry-core", + "setuptools" + ], + "goveelights": [ + "setuptools" + ], + "gpapi": [ + "setuptools" + ], + "gpaw": [ + "setuptools" + ], + "gphoto2": [ + "setuptools" + ], + "gpiozero": [ + "setuptools" + ], + "gplaycli": [ + "setuptools" + ], + "gprof2dot": [ + "setuptools" + ], + "gps3": [ + "setuptools" + ], + "gpsoauth": [ + "setuptools" + ], + "gpt-2-simple": [ + "setuptools" + ], + "gpxpy": [ + "setuptools" ], "gpy": [ - "cython" + "cython", + "setuptools" ], "gpyopt": [ - "cython" + "cython", + "setuptools" + ], + "gql": [ + "setuptools" + ], + "gradient": [ + "setuptools" + ], + "gradient-statsd": [ + "setuptools" ], "gradient-utils": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "grammalecte": [ + "setuptools" + ], + "grandalf": [ + "setuptools" + ], + "graph-tool": [ + "setuptools" + ], + "grapheme": [ + "setuptools" + ], + "graphene": [ + "setuptools" + ], + "graphene-django": [ + "setuptools" + ], + "graphite-web": [ + "setuptools" ], "graphql-core": [ - "poetry-core" + "poetry-core", + "setuptools" ], "graphql-relay": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "graphql-server-core": [ + "setuptools" + ], + "graphql-subscription-manager": [ + "setuptools" + ], + "graphqlclient": [ + "setuptools" + ], + "graphtage": [ + "setuptools" + ], + "graphviz": [ + "setuptools" + ], + "grappelli-safe": [ + "setuptools" + ], + "greatfet": [ + "setuptools" + ], + "greeclimate": [ + "setuptools" + ], + "green": [ + "setuptools" + ], + "greeneye-monitor": [ + "setuptools" + ], + "greenlet": [ + "setuptools" + ], + "gremlinpython": [ + "setuptools" + ], + "grequests": [ + "setuptools" ], "gridnet": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "griffe": [ + "pdm-pep517", + "setuptools" + ], + "grip": [ + "setuptools" + ], + "groestlcoin-hash": [ + "setuptools" + ], + "growattserver": [ + "setuptools" + ], + "grpc-google-iam-v1": [ + "setuptools" ], "grpcio": [ - "cython" + "cython", + "setuptools" + ], + "grpcio-gcp": [ + "setuptools" + ], + "grpcio-status": [ + "setuptools" + ], + "grpcio-tools": [ + "setuptools" + ], + "grpclib": [ + "setuptools" + ], + "gruut": [ + "setuptools" + ], + "gruut-ipa": [ + "setuptools" ], "gsd": [ - "cython" + "cython", + "setuptools" + ], + "gspread": [ + "setuptools" ], "gssapi": [ - "cython" + "cython", + "setuptools" + ], + "gst-python": [ + "setuptools" + ], + "gtfs-realtime-bindings": [ + "setuptools" + ], + "gtimelog": [ + "setuptools" + ], + "gtts": [ + "setuptools" + ], + "gtts-token": [ + "setuptools" ], "gudhi": [ - "cython" + "cython", + "setuptools" + ], + "guessit": [ + "setuptools" + ], + "guestfs": [ + "setuptools" + ], + "gumath": [ + "setuptools" + ], + "gunicorn": [ + "setuptools" + ], + "guppy3": [ + "setuptools" + ], + "gurobipy": [ + "setuptools" + ], + "guzzle-sphinx-theme": [ + "setuptools" + ], + "gviz-api": [ + "setuptools" ], "gvm-tools": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "gym": [ + "setuptools" + ], + "gyp": [ + "setuptools" + ], + "h11": [ + "setuptools" + ], + "h2": [ + "setuptools" ], "h3": [ - "cython" + "cython", + "setuptools" + ], + "h5netcdf": [ + "setuptools", + "setuptools-scm" ], "h5py": [ - "cython" + "cython", + "setuptools" ], "h5py-mpi": [ - "cython" + "cython", + "setuptools" + ], + "ha-ffmpeg": [ + "setuptools" + ], + "ha-philipsjs": [ + "setuptools" + ], + "habanero": [ + "setuptools" + ], + "habitipy": [ + "setuptools" + ], + "hachoir": [ + "setuptools" ], "hacking": [ - "pbr" + "pbr", + "setuptools" + ], + "hahomematic": [ + "setuptools" + ], + "halo": [ + "setuptools" + ], + "halohome": [ + "setuptools" + ], + "handout": [ + "setuptools" + ], + "hangups": [ + "setuptools" + ], + "hap-python": [ + "setuptools" ], "hashids": [ "flit-core" ], - "hatch-vcs": [ + "hass-nabucasa": [ + "setuptools" + ], + "hatasmota": [ + "setuptools" + ], + "hatch-fancy-pypi-readme": [ + "hatchling", + "setuptools" + ], + "hatch-nodejs-version": [ "hatchling" ], + "hatch-vcs": [ + "hatchling", + "setuptools", + "setuptools-scm" + ], + "hatchling": [ + "setuptools" + ], + "haversine": [ + "setuptools" + ], + "hawkauthlib": [ + "setuptools" + ], + "hcloud": [ + "setuptools" + ], + "hcs-utils": [ + "setuptools" + ], "hdate": [ - "poetry-core" + "poetry-core", + "setuptools" ], "hdbscan": [ - "cython" + "cython", + "setuptools" + ], + "hdfs": [ + "setuptools" ], "hdmedians": [ - "cython" + "cython", + "setuptools" + ], + "headerparser": [ + "setuptools" + ], + "heapdict": [ + "setuptools" + ], + "heatzypy": [ + "setuptools" + ], + "helpdev": [ + "setuptools" + ], + "helper": [ + "setuptools" + ], + "hepunits": [ + "setuptools", + "setuptools-scm" + ], + "herepy": [ + "setuptools" + ], + "hetzner": [ + "setuptools" + ], + "hexbytes": [ + "setuptools" + ], + "hexdump": [ + "setuptools" + ], + "hg-evolve": [ + "setuptools" + ], + "hg-git": [ + "setuptools" + ], + "hglib": [ + "setuptools" + ], + "hickle": [ + "setuptools" + ], + "hid": [ + "setuptools" ], "hidapi": [ - "cython" + "cython", + "setuptools" + ], + "hieroglyph": [ + "setuptools" + ], + "hijri-converter": [ + "setuptools" + ], + "hikvision": [ + "setuptools" + ], + "hiredis": [ + "setuptools" + ], + "hiro": [ + "setuptools" + ], + "hiyapyco": [ + "setuptools" + ], + "hjson": [ + "setuptools" + ], + "hkavr": [ + "setuptools" + ], + "hkdf": [ + "setuptools" + ], + "hlk-sw16": [ + "setuptools" ], "hmmlearn": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "hocr-tools": [ + "setuptools" + ], + "hole": [ + "setuptools" + ], + "holidays": [ + "setuptools" + ], + "holoviews": [ + "setuptools" + ], + "home-assistant-bluetooth": [ + "poetry-core", + "setuptools" ], "homeassistant-pyozw": [ - "cython" + "cython", + "setuptools" + ], + "homeconnect": [ + "setuptools" + ], + "homematicip": [ + "setuptools" + ], + "homepluscontrol": [ + "setuptools" + ], + "hopcroftkarp": [ + "setuptools" + ], + "howdoi": [ + "setuptools" + ], + "hpack": [ + "setuptools" + ], + "hpccm": [ + "setuptools" + ], + "hs-dbus-signature": [ + "setuptools" + ], + "hsaudiotag3k": [ + "setuptools" + ], + "hsluv": [ + "setuptools" + ], + "hstspreload": [ + "setuptools" + ], + "html-sanitizer": [ + "setuptools" + ], + "html2text": [ + "setuptools" + ], + "html5-parser": [ + "setuptools" ], "html5lib": [ - "flit-core" + "flit-core", + "setuptools" + ], + "htmllaundry": [ + "setuptools" + ], + "htmlmin": [ + "setuptools" + ], + "htseq": [ + "cython", + "setuptools" + ], + "httmock": [ + "setuptools" + ], + "http-ece": [ + "setuptools" + ], + "http-message-signatures": [ + "setuptools", + "setuptools-scm" + ], + "http-parser": [ + "setuptools" + ], + "http-sfv": [ + "setuptools" + ], + "httpagentparser": [ + "setuptools" + ], + "httpauth": [ + "setuptools" + ], + "httpbin": [ + "setuptools" + ], + "httpcore": [ + "setuptools" + ], + "httpie": [ + "setuptools" + ], + "httpie-ntlm": [ + "setuptools" + ], + "httplib2": [ + "setuptools" + ], + "httpretty": [ + "setuptools" + ], + "httpserver": [ + "setuptools" + ], + "httpsig": [ + "setuptools", + "setuptools-scm" + ], + "httptools": [ + "setuptools" + ], + "httpx": [ + "setuptools" + ], + "httpx-auth": [ + "setuptools" + ], + "httpx-ntlm": [ + "setuptools" + ], + "httpx-socks": [ + "setuptools" + ], + "huawei-lte-api": [ + "setuptools" + ], + "huey": [ + "setuptools" + ], + "huggingface-hub": [ + "setuptools" + ], + "huisbaasje-client": [ + "setuptools" + ], + "humanfriendly": [ + "setuptools" + ], + "humanize": [ + "setuptools", + "setuptools-scm" + ], + "humblewx": [ + "setuptools" + ], + "hupper": [ + "setuptools" + ], + "huum": [ + "poetry-core", + "setuptools" + ], + "hvac": [ + "setuptools" + ], + "hvplot": [ + "setuptools" + ], + "hwi": [ + "setuptools" + ], + "hy": [ + "setuptools" + ], + "hydra": [ + "setuptools" + ], + "hydra-check": [ + "poetry-core", + "setuptools" + ], + "hydrawiser": [ + "setuptools" + ], + "hypchat": [ + "setuptools" ], "hypercorn": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "hyperframe": [ + "setuptools" ], "hyperion-py": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "hyperlink": [ + "setuptools" + ], + "hyperopt": [ + "setuptools" + ], + "hypothesis": [ + "setuptools" ], "hypothesis-auto": [ - "poetry" + "poetry", + "setuptools" ], "hypothesis-graphql": [ "poetry" ], - "ibis-framework": [ + "hypothesmith": [ + "setuptools" + ], + "hyppo": [ + "setuptools" + ], + "hyrule": [ + "setuptools" + ], + "i-pi": [ + "setuptools" + ], + "i2c-tools": [ + "setuptools" + ], + "i2csense": [ + "setuptools" + ], + "i3-py": [ + "setuptools" + ], + "i3ipc": [ + "setuptools" + ], + "iapws": [ + "setuptools" + ], + "iaqualink": [ + "setuptools" + ], + "ibeacon-ble": [ "poetry-core" ], + "ibis": [ + "setuptools" + ], + "ibis-framework": [ + "poetry-core", + "setuptools" + ], + "ibm-cloud-sdk-core": [ + "setuptools" + ], + "ibm-watson": [ + "setuptools" + ], + "icalendar": [ + "setuptools" + ], + "icecream": [ + "setuptools" + ], "icmplib": [ - "pbr" + "pbr", + "setuptools" + ], + "icnsutil": [ + "setuptools" + ], + "icontract": [ + "setuptools" + ], + "ics": [ + "setuptools" ], "idasen": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "identify": [ + "setuptools" + ], + "idna": [ + "flit-core", + "setuptools" + ], + "idna-ssl": [ + "setuptools" + ], + "ifaddr": [ + "setuptools" + ], + "ifconfig-parser": [ + "setuptools" + ], + "ifcopenshell": [ + "setuptools" + ], + "ignite": [ + "setuptools" + ], + "igraph": [ + "setuptools" + ], + "ihatemoney": [ + "setuptools" + ], + "ijson": [ + "setuptools" + ], + "ilua": [ + "setuptools" + ], + "image-go-nord": [ + "setuptools" + ], + "image-match": [ + "setuptools" ], "imagecodecs-lite": [ - "cython" + "cython", + "setuptools" + ], + "imagecorruptions": [ + "setuptools" + ], + "imageio": [ + "setuptools" + ], + "imageio-ffmpeg": [ + "setuptools" + ], + "imagesize": [ + "setuptools" + ], + "imantics": [ + "setuptools" + ], + "imap-tools": [ + "setuptools" + ], + "imapclient": [ + "setuptools" + ], + "imaplib2": [ + "setuptools" + ], + "imbalanced-learn": [ + "setuptools" + ], + "img2pdf": [ + "setuptools" + ], + "imgsize": [ + "setuptools" + ], + "iminuit": [ + "setuptools" ], "immutabledict": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "immutables": [ + "setuptools" + ], + "impacket": [ + "setuptools" + ], + "importlab": [ + "setuptools" + ], + "importlib-metadata": [ + "setuptools", + "setuptools-scm" + ], + "importlib-resources": [ + "setuptools", + "setuptools-scm" + ], + "importmagic": [ + "setuptools" + ], + "impyla": [ + "setuptools" + ], + "imread": [ + "setuptools" + ], + "imutils": [ + "setuptools" + ], + "in-place": [ + "setuptools" + ], + "incomfort-client": [ + "setuptools" + ], + "incremental": [ + "setuptools" + ], + "infinity": [ + "setuptools" + ], + "inflect": [ + "setuptools", + "setuptools-scm" + ], + "inflection": [ + "setuptools" + ], + "influxdb": [ + "setuptools" + ], + "influxdb-client": [ + "setuptools" + ], + "inform": [ + "setuptools" + ], + "iniconfig": [ + "setuptools", + "setuptools-scm" + ], + "inifile": [ + "setuptools" + ], + "iniparse": [ + "setuptools" + ], + "injector": [ + "setuptools" + ], + "inkbird-ble": [ + "poetry-core", + "setuptools" + ], + "inkex": [ + "setuptools" + ], + "inotify": [ + "setuptools" + ], + "inotify-simple": [ + "setuptools" + ], + "inotifyrecursive": [ + "setuptools" ], "inquirer": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "insegel": [ + "setuptools" ], "installer": [ - "flit-core" + "flit-core", + "setuptools" + ], + "insteon-frontend-home-assistant": [ + "setuptools" + ], + "intake": [ + "setuptools" + ], + "intake-parquet": [ + "setuptools" + ], + "intbitset": [ + "setuptools" + ], + "intelhex": [ + "setuptools" + ], + "intellifire4py": [ + "setuptools" + ], + "internetarchive": [ + "setuptools" + ], + "interruptingcow": [ + "setuptools" + ], + "intervaltree": [ + "setuptools" + ], + "into-dbus-python": [ + "setuptools" + ], + "intreehooks": [ + "setuptools" + ], + "invocations": [ + "setuptools" + ], + "invoke": [ + "setuptools" + ], + "iocapture": [ + "setuptools" ], "iodata": [ - "cython" + "cython", + "setuptools" + ], + "ionhash": [ + "setuptools" + ], + "iotawattpy": [ + "setuptools" + ], + "iowait": [ + "setuptools" + ], + "ipaddr": [ + "setuptools" + ], + "ipaddress": [ + "setuptools" + ], + "ipdb": [ + "setuptools" + ], + "ipdbplugin": [ + "setuptools" ], "ipfshttpclient": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "iptools": [ + "setuptools" ], "ipwhl": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "ipy": [ + "setuptools" + ], + "ipydatawidgets": [ + "setuptools" ], "ipykernel": [ - "hatchling" + "hatchling", + "setuptools" + ], + "ipympl": [ + "setuptools" + ], + "ipyparallel": [ + "hatchling", + "setuptools" + ], + "ipython": [ + "setuptools" + ], + "ipython-genutils": [ + "setuptools" + ], + "ipython-sql": [ + "setuptools" + ], + "ipyvue": [ + "setuptools" + ], + "ipyvuetify": [ + "setuptools" + ], + "ipywidgets": [ + "setuptools" + ], + "irc": [ + "setuptools", + "setuptools-scm" + ], + "ircrobots": [ + "setuptools" + ], + "ircstates": [ + "setuptools" + ], + "irctokens": [ + "setuptools" + ], + "isbnlib": [ + "setuptools" + ], + "islpy": [ + "setuptools" + ], + "ismartgate": [ + "setuptools" + ], + "iso-639": [ + "setuptools" + ], + "iso3166": [ + "setuptools" + ], + "iso4217": [ + "setuptools" ], "iso8601": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "isodate": [ + "setuptools" + ], + "isoduration": [ + "setuptools" ], "isort": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "isosurfaces": [ + "setuptools" + ], + "isounidecode": [ + "setuptools" + ], + "isoweek": [ + "setuptools" + ], + "itanium-demangler": [ + "setuptools" + ], + "itemadapter": [ + "setuptools" + ], + "itemdb": [ + "setuptools" + ], + "itemloaders": [ + "setuptools" + ], + "itsdangerous": [ + "setuptools" + ], + "itunespy": [ + "setuptools" + ], + "itypes": [ + "setuptools" + ], + "j2cli": [ + "setuptools" + ], + "jaconv": [ + "setuptools" + ], + "jaeger-client": [ + "setuptools" + ], + "janus": [ + "setuptools" + ], + "jarac-itertools": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-classes": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-collections": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-context": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-functools": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-itertools": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-logging": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-stream": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-test": [ + "setuptools", + "setuptools-scm" + ], + "jaraco-text": [ + "setuptools", + "setuptools-scm" ], "jarowinkler": [ - "cython" + "cython", + "setuptools" + ], + "javaobj-py3": [ + "setuptools" + ], + "javaproperties": [ + "setuptools" + ], + "jax": [ + "setuptools" + ], + "jaxlib": [ + "setuptools" + ], + "jaxlib-bin": [ + "setuptools" + ], + "jaxlib-build": [ + "setuptools" + ], + "jaxlibwithcuda": [ + "setuptools" + ], + "jaxlibwithoutcuda": [ + "setuptools" + ], + "jaydebeapi": [ + "setuptools" + ], + "jc": [ + "setuptools" + ], + "jdatetime": [ + "setuptools" + ], + "jdcal": [ + "setuptools" + ], + "jedi": [ + "setuptools" ], "jedi-language-server": [ - "poetry" + "poetry", + "setuptools" ], "jeepney": [ - "flit-core" + "flit-core", + "setuptools" + ], + "jellyfin-apiclient-python": [ + "setuptools" + ], + "jellyfish": [ + "setuptools" ], "jenkins-job-builder": [ - "pbr" + "pbr", + "setuptools" + ], + "jieba": [ + "setuptools" + ], + "jinja2": [ + "setuptools" ], "jinja2-git": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "jinja2-pluralize": [ + "setuptools" + ], + "jinja2-time": [ + "setuptools" + ], + "jira": [ + "setuptools", + "setuptools-scm" + ], + "jmespath": [ + "setuptools" + ], + "jmp": [ + "setuptools" + ], + "joblib": [ + "setuptools" + ], + "johnnycanencrypt": [ + "setuptools" + ], + "josepy": [ + "setuptools" + ], + "journalwatch": [ + "setuptools" + ], + "jplephem": [ + "setuptools" + ], + "jproperties": [ + "setuptools", + "setuptools-scm" + ], + "jpylyzer": [ + "setuptools" + ], + "jpype1": [ + "setuptools" + ], + "jq": [ + "setuptools" + ], + "js2py": [ + "setuptools" + ], + "jsbeautifier": [ + "setuptools" ], "jschema-to-python": [ - "pbr" + "pbr", + "setuptools" + ], + "jsmin": [ + "setuptools" + ], + "json-home-client": [ + "setuptools" + ], + "json-logging": [ + "setuptools" + ], + "json-merge-patch": [ + "setuptools" + ], + "json-rpc": [ + "setuptools" ], "json-schema-for-humans": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "json-stream": [ + "setuptools" + ], + "json-tricks": [ + "setuptools" + ], + "json5": [ + "setuptools" + ], + "jsonconversion": [ + "setuptools" + ], + "jsondate": [ + "setuptools" + ], + "jsondiff": [ + "setuptools" + ], + "jsonfield": [ + "setuptools" + ], + "jsonlines": [ + "setuptools" + ], + "jsonmerge": [ + "setuptools" + ], + "jsonnet": [ + "setuptools" + ], + "jsonpatch": [ + "setuptools" + ], + "jsonpath": [ + "setuptools" + ], + "jsonpath-ng": [ + "setuptools" + ], + "jsonpath-rw": [ + "setuptools" + ], + "jsonpickle": [ + "setuptools", + "setuptools-scm" + ], + "jsonpointer": [ + "setuptools" + ], + "jsonref": [ + "setuptools" + ], + "jsonrpc-async": [ + "setuptools" + ], + "jsonrpc-base": [ + "setuptools" + ], + "jsonrpc-websocket": [ + "setuptools" + ], + "jsonrpclib-pelix": [ + "setuptools" + ], + "jsons": [ + "setuptools" ], "jsonschema": [ - { "buildSystem": "hatchling", "from": "4.6.0" }, - { "buildSystem": "hatch-vcs", "from": "4.6.0" } + { + "buildSystem": "hatch-fancy-pypi-readme", + "from": "4.11.0" + }, + { + "buildSystem": "hatch-vcs", + "from": "4.6.0" + }, + { + "buildSystem": "hatchling", + "from": "4.6.0" + }, + { + "buildSystem": "setuptools", + "until": "4.6.0" + }, + { + "buildSystem": "setuptools-scm", + "until": "4.6.0" + } + ], + "jsonschema-3": [ + "setuptools-scm" + ], + "jsonschema-spec": [ + "poetry-core" + ], + "jsonstreams": [ + "setuptools" + ], + "jug": [ + "setuptools" + ], + "junit-xml": [ + "setuptools" + ], + "junitparser": [ + "setuptools" + ], + "junos-eznc": [ + "setuptools" + ], + "jupyter": [ + "setuptools" + ], + "jupyter-book": [ + "flit-core", + "flitBuildHook", + "setuptools" + ], + "jupyter-c-kernel": [ + "setuptools" + ], + "jupyter-cache": [ + "setuptools" ], "jupyter-client": [ - "hatchling" + "hatchling", + "setuptools" + ], + "jupyter-console": [ + "setuptools" + ], + "jupyter-core": [ + "setuptools" + ], + "jupyter-lsp": [ + "setuptools" + ], + "jupyter-packaging": [ + "hatchling", + "setuptools" + ], + "jupyter-repo2docker": [ + "setuptools" ], "jupyter-server": [ - "jupyter-packaging" + "setuptools" + ], + "jupyter-server-mathjax": [ + "jupyter-packaging", + "setuptools" + ], + "jupyter-sphinx": [ + "setuptools" + ], + "jupyter-telemetry": [ + "setuptools" + ], + "jupyterhub": [ + "setuptools" + ], + "jupyterhub-ldapauthenticator": [ + "setuptools" + ], + "jupyterhub-systemdspawner": [ + "setuptools" + ], + "jupyterhub-tmpauthenticator": [ + "setuptools" ], "jupyterlab": [ - "jupyter-packaging" + "jupyter-packaging", + "setuptools" ], "jupyterlab-code-formatter": [ "jupyter-packaging" ], + "jupyterlab-git": [ + "jupyter-packaging", + "setuptools" + ], + "jupyterlab-launcher": [ + "setuptools" + ], + "jupyterlab-lsp": [ + "setuptools" + ], "jupyterlab-pygments": [ - "jupyter-packaging" + "jupyter-packaging", + "setuptools" + ], + "jupyterlab-server": [ + "hatchling", + "setuptools" + ], + "jupyterlab-widgets": [ + "setuptools" + ], + "jupytext": [ + "setuptools" + ], + "justbackoff": [ + "setuptools" + ], + "justbases": [ + "setuptools" + ], + "justbytes": [ + "setuptools" + ], + "justnimbus": [ + "poetry-core", + "setuptools" + ], + "jwcrypto": [ + "setuptools" + ], + "jxmlease": [ + "setuptools" + ], + "k5test": [ + "setuptools" + ], + "kafka-python": [ + "setuptools" + ], + "kaggle": [ + "setuptools" + ], + "kaitaistruct": [ + "setuptools" + ], + "kajiki": [ + "setuptools" + ], + "kaldi-active-grammar": [ + "setuptools" + ], + "kanidm": [ + "poetry-core", + "setuptools" + ], + "kaptan": [ + "setuptools" + ], + "karton-asciimagic": [ + "setuptools" + ], + "karton-autoit-ripper": [ + "setuptools" + ], + "karton-classifier": [ + "setuptools" + ], + "karton-config-extractor": [ + "setuptools" + ], + "karton-core": [ + "setuptools" + ], + "karton-dashboard": [ + "setuptools" + ], + "karton-mwdb-reporter": [ + "setuptools" + ], + "karton-yaramatcher": [ + "setuptools" + ], + "kazoo": [ + "setuptools" + ], + "kbcstorage": [ + "setuptools", + "setuptools-scm" + ], + "kconfiglib": [ + "setuptools" + ], + "keep": [ + "setuptools" + ], + "keepkey": [ + "setuptools" + ], + "keepkey-agent": [ + "setuptools" + ], + "kegtron-ble": [ + "poetry-core" + ], + "keras": [ + "setuptools" + ], + "keras-applications": [ + "setuptools" + ], + "keras-preprocessing": [ + "setuptools" + ], + "kerberos": [ + "setuptools" + ], + "keyboard": [ + "setuptools" + ], + "keyring": [ + "setuptools", + "setuptools-scm" + ], + "keyrings-alt": [ + "setuptools", + "setuptools-scm" + ], + "keyrings-cryptfile": [ + "setuptools" + ], + "keyrings-google-artifactregistry-auth": [ + "setuptools", + "setuptools-scm" + ], + "keystone-engine": [ + "setuptools" ], "keystoneauth1": [ - "pbr" + "pbr", + "setuptools" + ], + "keyutils": [ + "setuptools" + ], + "kinparse": [ + "setuptools" + ], + "kiss-headers": [ + "setuptools" + ], + "kitchen": [ + "setuptools" ], "kivy": [ - "cython" + "cython", + "setuptools" + ], + "kivy-garden": [ + "setuptools" + ], + "kiwisolver": [ + "setuptools", + "setuptools-scm" + ], + "klaus": [ + "setuptools" + ], + "klein": [ + "setuptools" + ], + "kmapper": [ + "setuptools" + ], + "kml2geojson": [ + "poetry-core", + "setuptools" + ], + "knack": [ + "setuptools" + ], + "kombu": [ + "setuptools" + ], + "konnected": [ + "setuptools" + ], + "korean-lunar-calendar": [ + "setuptools" + ], + "krakenex": [ + "setuptools" + ], + "kubernetes": [ + "setuptools" + ], + "labgrid": [ + "setuptools", + "setuptools-scm" + ], + "labmath": [ + "setuptools" ], "langcodes": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "langdetect": [ + "setuptools" ], "language-data": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "lark": [ + "setuptools" + ], + "lark-parser": [ + "setuptools" + ], + "latexcodec": [ + "setuptools" + ], + "launchpadlib": [ + "setuptools" + ], + "laundrify-aio": [ + "setuptools" + ], + "lazr-config": [ + "setuptools" + ], + "lazr-delegates": [ + "setuptools" + ], + "lazr-restfulclient": [ + "setuptools" + ], + "lazr-uri": [ + "setuptools" + ], + "lazy": [ + "setuptools" + ], + "lazy-import": [ + "setuptools" + ], + "lazy-object-proxy": [ + "setuptools", + "setuptools-scm" ], "lc7001": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ldap": [ + "setuptools" + ], + "ldap3": [ + "setuptools" + ], + "ldapdomaindump": [ + "setuptools" ], "ldappool": [ - "pbr" + "pbr", + "setuptools" + ], + "ldaptor": [ + "setuptools" + ], + "leather": [ + "setuptools" + ], + "leb128": [ + "setuptools" + ], + "led-ble": [ + "poetry-core", + "setuptools" + ], + "ledger-agent": [ + "setuptools" + ], + "ledgerblue": [ + "setuptools" + ], + "ledgerwallet": [ + "setuptools" + ], + "lektor": [ + "setuptools" + ], + "leveldb": [ + "setuptools" ], "levenshtein": [ + "cython", + "setuptools" + ], + "lexid": [ + "setuptools" + ], + "lhapdf": [ "cython" ], + "libagent": [ + "setuptools" + ], + "libais": [ + "setuptools" + ], + "libarchive-c": [ + "setuptools" + ], + "libarcus": [ + "setuptools" + ], + "libasyncns": [ + "setuptools" + ], + "libcloud": [ + "setuptools" + ], + "libcst": [ + "setuptools", + "setuptools-scm" + ], + "libevdev": [ + "setuptools" + ], "libgpuarray": [ - "cython" + "cython", + "setuptools" + ], + "libiio": [ + "setuptools" + ], + "libkeepass": [ + "setuptools" + ], + "liblarch": [ + "setuptools" + ], + "liblzfse": [ + "setuptools" ], "libmr": [ - "cython" + "cython", + "setuptools" + ], + "libnacl": [ + "setuptools" + ], + "libpurecool": [ + "setuptools" + ], + "libpyfoscam": [ + "setuptools" + ], + "libpyvivotek": [ + "setuptools" + ], + "librosa": [ + "setuptools" + ], + "librouteros": [ + "setuptools" + ], + "libsass": [ + "setuptools" + ], + "libsavitar": [ + "setuptools" + ], + "libsixel": [ + "setuptools" + ], + "libsoundtouch": [ + "setuptools" + ], + "libthumbor": [ + "setuptools" ], "libtmux": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "libusb1": [ + "setuptools" + ], + "libusbsio": [ + "setuptools" + ], + "libversion": [ + "setuptools" + ], + "libvirt": [ + "setuptools" + ], + "license-expression": [ + "setuptools", + "setuptools-scm" ], "licensecheck": [ "poetry-core" ], - "line_profiler": [ - "cython" + "life360": [ + "setuptools" + ], + "lightgbm": [ + "setuptools" + ], + "lightning": [ + "setuptools" + ], + "lightparam": [ + "setuptools" + ], + "lightwave": [ + "setuptools" + ], + "lightwave2": [ + "setuptools" + ], + "lima": [ + "setuptools" + ], + "limiter": [ + "setuptools" + ], + "limitlessled": [ + "setuptools" + ], + "limits": [ + "setuptools" + ], + "limnoria": [ + "setuptools" + ], + "line-profiler": [ + "cython", + "setuptools" ], "linecache2": [ - "pbr" + "pbr", + "setuptools" + ], + "lingua": [ + "flit-core", + "setuptools" + ], + "linkify-it-py": [ + "setuptools" + ], + "linode": [ + "setuptools" + ], + "linode-api": [ + "setuptools" + ], + "linuxfd": [ + "setuptools" ], "linz-logger": [ "poetry-core" ], + "liquidctl": [ + "setuptools" + ], + "littleutils": [ + "setuptools" + ], + "livelossplot": [ + "setuptools" + ], + "livereload": [ + "setuptools" + ], + "livestreamer": [ + "setuptools" + ], + "livestreamer-curses": [ + "setuptools" + ], + "lizard": [ + "setuptools" + ], "llfuse": [ - "cython" + "cython", + "setuptools" + ], + "llvmlite": [ + "setuptools" + ], + "lmdb": [ + "setuptools" + ], + "lml": [ + "setuptools" + ], + "lmnotify": [ + "setuptools" + ], + "lmtpd": [ + "setuptools" ], "loca": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "localimport": [ + "setuptools" + ], + "localstack": [ + "setuptools" + ], + "localstack-client": [ + "setuptools" + ], + "localstack-ext": [ + "setuptools" + ], + "localzone": [ + "setuptools" + ], + "locationsharinglib": [ + "setuptools" + ], + "locket": [ + "setuptools" ], "lockfile": [ - "pbr" + "pbr", + "setuptools" + ], + "log-symbols": [ + "setuptools" + ], + "logbook": [ + "setuptools" + ], + "logfury": [ + "setuptools", + "setuptools-scm" + ], + "logi-circle": [ + "setuptools" + ], + "logical-unification": [ + "setuptools" + ], + "logilab-astng": [ + "setuptools" + ], + "logilab-common": [ + "setuptools" + ], + "logilab-constraint": [ + "setuptools" + ], + "logster": [ + "setuptools" + ], + "loguru": [ + "setuptools" + ], + "logutils": [ + "setuptools" + ], + "logzero": [ + "setuptools" + ], + "lomond": [ + "setuptools" + ], + "loo-py": [ + "setuptools" + ], + "loopy": [ + "setuptools" + ], + "losant-rest": [ + "setuptools" + ], + "lrcalc-python": [ + "cython", + "setuptools" + ], + "lru-dict": [ + "setuptools" ], "lsassy": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "luddite": [ + "setuptools" ], "luftdaten": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "luhn": [ + "setuptools" ], "lupa": [ - "cython" + "cython", + "setuptools" + ], + "lupupy": [ + "setuptools" + ], + "luxor": [ + "setuptools" + ], + "luxtronik": [ + "setuptools" + ], + "lxmf": [ + "setuptools" ], "lxml": [ - "cython" + "cython", + "setuptools" + ], + "lyricwikia": [ + "setuptools" ], "lz4": [ - "pkgconfig" + "pkgconfig", + "setuptools", + "setuptools-scm" + ], + "lzstring": [ + "setuptools" + ], + "m2crypto": [ + "setuptools" + ], + "m3u8": [ + "setuptools" + ], + "mac-alias": [ + "setuptools" ], "maestral": [ - "pbr" + "pbr", + "setuptools" + ], + "magic": [ + "setuptools" + ], + "magic-wormhole": [ + "setuptools" + ], + "magic-wormhole-mailbox-server": [ + "setuptools" + ], + "magic-wormhole-transit-relay": [ + "setuptools" + ], + "magicgui": [ + "setuptools", + "setuptools-scm" + ], + "mahotas": [ + "setuptools" + ], + "mail-parser": [ + "setuptools" + ], + "mailcap-fix": [ + "setuptools" + ], + "mailchecker": [ + "setuptools" + ], + "mailchimp": [ + "setuptools" + ], + "mailmanclient": [ + "setuptools" + ], + "mailsuite": [ + "hatchling", + "setuptools" + ], + "makefun": [ + "setuptools", + "setuptools-scm" + ], + "mako": [ + "setuptools" + ], + "malduck": [ + "setuptools" + ], + "managesieve": [ + "setuptools" + ], + "manhole": [ + "setuptools" ], "manimpango": [ - "cython" + "cython", + "setuptools" + ], + "manuel": [ + "setuptools" + ], + "mapbox-earcut": [ + "setuptools" + ], + "mariadb": [ + "setuptools" ], "marisa-trie": [ - "cython" + "cython", + "setuptools" + ], + "markdown": [ + "setuptools" + ], + "markdown-include": [ + "setuptools" ], "markdown-it-py": [ - "flit-core" + "flit-core", + "setuptools" + ], + "markdown-macros": [ + "setuptools" + ], + "markdown2": [ + "setuptools" + ], + "markdownify": [ + "setuptools" + ], + "markerlib": [ + "setuptools" + ], + "markups": [ + "setuptools" + ], + "markupsafe": [ + "setuptools" + ], + "marshmallow": [ + "setuptools" + ], + "marshmallow-dataclass": [ + "setuptools" + ], + "marshmallow-enum": [ + "setuptools" + ], + "marshmallow-oneofschema": [ + "setuptools" + ], + "marshmallow-polyfield": [ + "setuptools" + ], + "marshmallow-sqlalchemy": [ + "setuptools" ], "mask-rcnn": [ "cython" ], + "mastodon-py": [ + "setuptools" + ], + "mat2": [ + "setuptools" + ], + "matchpy": [ + "setuptools", + "setuptools-scm" + ], + "mathlibtools": [ + "setuptools" + ], + "matlink-gpapi": [ + "setuptools" + ], + "matplotlib": [ + "setuptools", + "setuptools-scm" + ], + "matplotlib-inline": [ + "setuptools" + ], + "matrix-api-async": [ + "setuptools" + ], + "matrix-client": [ + "setuptools" + ], + "matrix-common": [ + "setuptools" + ], "matrix-nio": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "mattermostdriver": [ + "setuptools" + ], + "mautrix": [ + "setuptools" + ], + "mautrix-appservice": [ + "setuptools" + ], + "maxcube-api": [ + "setuptools" + ], + "maxminddb": [ + "setuptools" + ], + "maya": [ + "setuptools" + ], + "mayavi": [ + "setuptools" + ], + "mbddns": [ + "setuptools" + ], + "mccabe": [ + "setuptools" ], "mcstatus": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "md-toc": [ + "setuptools" + ], + "md2gemini": [ + "setuptools" ], "mdformat": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "mdit-py-plugins": [ + "flit-core", + "setuptools" + ], + "mdp": [ + "setuptools" ], "mdurl": [ - "flit-core" + "flit-core", + "setuptools" + ], + "mdutils": [ + "setuptools" + ], + "mdx-truly-sane-lists": [ + "setuptools" + ], + "measurement": [ + "setuptools", + "setuptools-scm" + ], + "meater-python": [ + "setuptools" + ], + "mecab-python3": [ + "setuptools", + "setuptools-scm" + ], + "mechanicalsoup": [ + "setuptools" + ], + "mechanize": [ + "setuptools" ], "mediafile": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "mediapy": [ + "setuptools" + ], + "meilisearch": [ + "setuptools" + ], + "meinheld": [ + "setuptools" + ], + "meld3": [ + "setuptools" + ], + "memcached": [ + "setuptools" ], "memory-allocator": [ - "cython" + "cython", + "setuptools" + ], + "memory-profiler": [ + "setuptools" + ], + "mercantile": [ + "setuptools" + ], + "mercurial": [ + "setuptools" + ], + "mergedb": [ + "setuptools", + "setuptools-scm" + ], + "mergedeep": [ + "setuptools" + ], + "mergedict": [ + "setuptools" + ], + "merkletools": [ + "setuptools" + ], + "meross-iot": [ + "setuptools" + ], + "mesa": [ + "setuptools" + ], + "meshio": [ + "setuptools" + ], + "meshlabxml": [ + "setuptools" + ], + "meshtastic": [ + "setuptools" + ], + "meson": [ + "setuptools" + ], + "mesonpep517": [ + "setuptools" + ], + "messagebird": [ + "setuptools" + ], + "metakernel": [ + "setuptools" + ], + "metar": [ + "setuptools" + ], + "meteoalertapi": [ + "setuptools" + ], + "meteocalc": [ + "setuptools" ], "meteofrance-api": [ - "poetry" + "poetry", + "poetry-core", + "setuptools" ], "metprint": [ "poetry-core" ], + "mezzanine": [ + "setuptools" + ], + "micawber": [ + "setuptools" + ], + "micloud": [ + "setuptools" + ], + "midiutil": [ + "setuptools" + ], + "mido": [ + "setuptools" + ], + "migen": [ + "setuptools" + ], + "milc": [ + "setuptools" + ], + "milksnake": [ + "setuptools" + ], + "mill-local": [ + "setuptools" + ], + "millheater": [ + "setuptools" + ], + "minexr": [ + "setuptools" + ], + "miniaudio": [ + "setuptools" + ], + "minidb": [ + "setuptools" + ], + "minidump": [ + "setuptools" + ], + "minikanren": [ + "setuptools" + ], + "minikerberos": [ + "setuptools" + ], + "minimal-dydb": [ + "poetry-core" + ], + "minimock": [ + "setuptools" + ], + "mininet-python": [ + "setuptools" + ], + "minio": [ + "setuptools" + ], + "miniupnpc": [ + "setuptools" + ], + "misaka": [ + "setuptools" + ], + "mistletoe": [ + "setuptools" + ], + "mistune": [ + "setuptools" + ], + "mistune-2-0": [ + "setuptools" + ], + "mitmproxy": [ + "setuptools" + ], + "mitogen": [ + "setuptools" + ], + "mizani": [ + "setuptools" + ], + "mkdocs": [ + "setuptools" + ], "mkdocs-autorefs": [ "pdm-pep517", - "poetry" + "poetry", + "setuptools" + ], + "mkdocs-drawio-exporter": [ + "setuptools" + ], + "mkdocs-exclude": [ + "setuptools" ], "mkdocs-gen-files": [ "poetry" ], + "mkdocs-gitlab": [ + "setuptools" + ], "mkdocs-jupyter": [ - "ipython_genutils", + "ipython-genutils", "poetry-core" ], "mkdocs-literate-nav": [ "poetry" ], + "mkdocs-macros": [ + "setuptools" + ], + "mkdocs-material": [ + "setuptools" + ], + "mkdocs-material-extensions": [ + "setuptools" + ], + "mkdocs-minify": [ + "setuptools" + ], + "mkdocs-redirects": [ + "setuptools" + ], + "mkdocs-swagger-ui-tag": [ + "setuptools" + ], "mkdocstrings": [ - "pdm-pep517" + "pdm-pep517", + "setuptools" + ], + "mkdocstrings-python": [ + "setuptools" + ], + "mkl-service": [ + "cython", + "setuptools" + ], + "ml-collections": [ + "setuptools" + ], + "mlflow": [ + "setuptools" + ], + "mlrose": [ + "setuptools" + ], + "mmh3": [ + "setuptools" + ], + "mne-python": [ + "setuptools" + ], + "mnemonic": [ + "setuptools" + ], + "mnist": [ + "setuptools" + ], + "moat-ble": [ + "poetry-core", + "setuptools" ], "mock": [ - "pbr" + "pbr", + "setuptools" + ], + "mock-open": [ + "setuptools" + ], + "mock-services": [ + "setuptools" + ], + "mocket": [ + "setuptools" + ], + "mockito": [ + "setuptools" + ], + "mockupdb": [ + "setuptools" + ], + "moderngl": [ + "setuptools" + ], + "moderngl-window": [ + "setuptools" + ], + "mohawk": [ + "setuptools" + ], + "moku": [ + "setuptools" + ], + "monai": [ + "setuptools" + ], + "monero": [ + "setuptools" + ], + "mongodict": [ + "setuptools" + ], + "mongoengine": [ + "setuptools" ], "mongomock": [ - "pbr" + "pbr", + "setuptools" + ], + "monkeyhex": [ + "setuptools" ], "monosat": [ - "cython" + "cython", + "setuptools" + ], + "monotonic": [ + "setuptools" + ], + "monty": [ + "setuptools" + ], + "moonraker-api": [ + "setuptools" ], "more-itertools": [ - "flit-core" + "flit-core", + "flitBuildHook", + "setuptools" + ], + "more-properties": [ + "setuptools" + ], + "morphys": [ + "setuptools" + ], + "mortgage": [ + "setuptools" + ], + "motionblinds": [ + "setuptools" ], "motioneye-client": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "moto": [ + "setuptools" + ], + "motor": [ + "setuptools" + ], + "mouseinfo": [ + "setuptools" + ], + "moviepy": [ + "setuptools" + ], + "mox": [ + "setuptools" ], "mox3": [ - "pbr" + "pbr", + "setuptools" + ], + "mpd2": [ + "setuptools" + ], + "mpi4py": [ + "setuptools" + ], + "mpldatacursor": [ + "setuptools" + ], + "mplfinance": [ + "setuptools" + ], + "mplleaflet": [ + "setuptools" + ], + "mpmath": [ + "setuptools", + "setuptools-scm" + ], + "mpv": [ + "setuptools" + ], + "mpyq": [ + "setuptools" + ], + "ms-active-directory": [ + "setuptools" + ], + "ms-cv": [ + "setuptools" + ], + "msal": [ + "setuptools" + ], + "msal-extensions": [ + "setuptools" + ], + "msgpack": [ + "setuptools" ], "msgpack-numpy": [ - "cython" + "cython", + "setuptools" ], "msgpack-types": [ "poetry" ], + "msgraph-core": [ + "flit-core", + "setuptools" + ], + "msldap": [ + "setuptools" + ], "msoffcrypto-tool": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "msrest": [ + "setuptools" + ], + "msrestazure": [ + "setuptools" + ], + "mss": [ + "setuptools" + ], + "mt-940": [ + "setuptools" + ], + "mujson": [ + "setuptools" + ], + "mullvad-api": [ + "setuptools" + ], + "mulpyplexer": [ + "setuptools" + ], + "multi-key-dict": [ + "setuptools" + ], + "multidict": [ + "setuptools" + ], + "multimethod": [ + "setuptools" + ], + "multipledispatch": [ + "setuptools" + ], + "multiprocess": [ + "setuptools" + ], + "multiset": [ + "setuptools", + "setuptools-scm" + ], + "multitasking": [ + "setuptools" ], "munch": [ - "pbr" + "pbr", + "setuptools" + ], + "munkres": [ + "setuptools" ], "murmurhash": [ - "cython" + "cython", + "setuptools" + ], + "musicbrainzngs": [ + "setuptools" + ], + "mutag": [ + "setuptools" + ], + "mutagen": [ + "setuptools" + ], + "mutatormath": [ + "setuptools" + ], + "mutesync": [ + "setuptools" + ], + "mutf8": [ + "setuptools" + ], + "mutmut": [ + "setuptools" + ], + "mwclient": [ + "setuptools" + ], + "mwdblib": [ + "setuptools" + ], + "mwoauth": [ + "setuptools" + ], + "mwparserfromhell": [ + "setuptools" + ], + "mxnet": [ + "setuptools" + ], + "myfitnesspal": [ + "setuptools" + ], + "mygpoclient": [ + "setuptools" ], "myhome": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "myjwt": [ + "setuptools" + ], + "mypy": [ + "setuptools" ], "mypy-boto3-builder": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "mypy-boto3-cognito-idp": [ + "setuptools" + ], + "mypy-boto3-s3": [ + "setuptools" + ], + "mypy-extensions": [ + "setuptools" + ], + "mypy-protobuf": [ + "setuptools" + ], + "mysql-connector": [ + "setuptools" + ], + "mysqlclient": [ + "setuptools" + ], + "myst-docutils": [ + "flit-core", + "setuptools" + ], + "myst-nb": [ + "flit-core", + "flitBuildHook", + "setuptools" ], "myst-parser": [ - "flit-core" + "flit-core", + "flitBuildHook", + "setuptools" + ], + "nad-receiver": [ + "setuptools" + ], + "nagiosplugin": [ + "setuptools" + ], + "name-that-hash": [ + "poetry-core", + "setuptools" + ], + "namedlist": [ + "setuptools" + ], + "nameparser": [ + "setuptools" + ], + "names": [ + "setuptools" + ], + "nampa": [ + "setuptools" + ], + "nanoleaf": [ + "setuptools" + ], + "nanomsg-python": [ + "setuptools" + ], + "nanotime": [ + "setuptools" + ], + "napalm": [ + "setuptools" + ], + "napalm-hp-procurve": [ + "setuptools" + ], + "napari": [ + "setuptools", + "setuptools-scm" + ], + "napari-console": [ + "setuptools", + "setuptools-scm" + ], + "napari-npe2": [ + "setuptools", + "setuptools-scm" + ], + "napari-plugin-engine": [ + "setuptools", + "setuptools-scm" + ], + "napari-svg": [ + "setuptools", + "setuptools-scm" + ], + "nats-py": [ + "setuptools" ], "nats-python": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "natsort": [ + "setuptools" + ], + "naturalsort": [ + "setuptools" ], "nbclassic": [ - "jupyter-packaging" + "jupyter-packaging", + "setuptools" + ], + "nbclient": [ + "setuptools" + ], + "nbconflux": [ + "setuptools" + ], + "nbconvert": [ + "setuptools" + ], + "nbdime": [ + "setuptools", + "setuptools-scm" + ], + "nbformat": [ + "flit-core", + "setuptools" + ], + "nbmerge": [ + "setuptools" + ], + "nbsmoke": [ + "setuptools" + ], + "nbsphinx": [ + "setuptools" + ], + "nbval": [ + "setuptools" + ], + "nbxmpp": [ + "setuptools" + ], + "ncclient": [ + "setuptools" + ], + "nclib": [ + "setuptools" + ], + "ndg-httpsclient": [ + "setuptools" + ], + "ndjson": [ + "setuptools" + ], + "ndms2-client": [ + "setuptools" + ], + "ndspy": [ + "setuptools" + ], + "ndtypes": [ + "setuptools" + ], + "nengo": [ + "setuptools" + ], + "neo": [ + "setuptools" + ], + "neo4j": [ + "setuptools" + ], + "nessclient": [ + "setuptools" + ], + "nest-asyncio": [ + "setuptools" + ], + "nested-lookup": [ + "setuptools" + ], + "nestedtext": [ + "setuptools" ], "net2grid": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "netaddr": [ + "setuptools" ], "netcdf4": [ - "cython" + "cython", + "setuptools" ], "netdata": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "netdisco": [ + "setuptools" + ], + "netifaces": [ + "setuptools" + ], + "netio": [ + "setuptools" + ], + "netmap": [ + "setuptools" + ], + "netmiko": [ + "setuptools" + ], + "nettigo-air-monitor": [ + "setuptools" ], "netutils": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "networkx": [ + "setuptools" ], "newversion": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "nexia": [ + "setuptools" + ], + "nextcloudmonitor": [ + "setuptools" + ], + "nextcord": [ + "setuptools" + ], + "nextdns": [ + "setuptools" ], "nghttp2": [ - "cython" + "cython", + "setuptools" + ], + "niaarm": [ + "poetry-core", + "setuptools" + ], + "niapy": [ + "setuptools" + ], + "nibabel": [ + "setuptools" + ], + "niko-home-control": [ + "setuptools" + ], + "nikola": [ + "setuptools" + ], + "nilearn": [ + "setuptools" + ], + "niluclient": [ + "setuptools" + ], + "nimfa": [ + "setuptools" + ], + "nine": [ + "setuptools" + ], + "nipy": [ + "setuptools" ], "nitime": [ - "cython" + "cython", + "setuptools" + ], + "nitransforms": [ + "setuptools", + "setuptools-scm" + ], + "nix-kernel": [ + "setuptools" + ], + "nix-prefetch-github": [ + "setuptools" ], "nixpkgs": [ - "pbr" + "pbr", + "setuptools" + ], + "nixpkgs-pytools": [ + "setuptools" ], "nkdfu": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "nltk": [ + "setuptools" + ], + "nmapthon2": [ + "setuptools" + ], + "nocasedict": [ + "setuptools" + ], + "nocaselist": [ + "setuptools" + ], + "node-semver": [ + "setuptools" + ], + "nodeenv": [ + "setuptools" + ], + "nodepy-runtime": [ + "setuptools" + ], + "noise": [ + "setuptools" + ], + "noiseprotocol": [ + "setuptools" + ], + "nomadnet": [ + "setuptools" + ], + "normality": [ + "setuptools" + ], + "nose": [ + "setuptools" + ], + "nose-cov": [ + "setuptools" + ], + "nose-cprof": [ + "setuptools" + ], + "nose-exclude": [ + "setuptools" + ], + "nose-pattern-exclude": [ + "setuptools" + ], + "nose-randomly": [ + "setuptools" + ], + "nose-timer": [ + "setuptools" + ], + "nose-warnings-filters": [ + "setuptools" + ], + "nose2": [ + "setuptools" + ], + "nosejs": [ + "setuptools" + ], + "nosexcover": [ + "setuptools" + ], + "notebook": [ + "setuptools" ], "notebook-shim": [ - "jupyter-packaging" + "jupyter-packaging", + "setuptools" + ], + "notedown": [ + "setuptools" + ], + "notifications-python-client": [ + "setuptools" + ], + "notify-events": [ + "setuptools" ], "notify-py": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "notify2": [ + "setuptools" + ], + "notifymuch": [ + "setuptools" + ], + "notmuch": [ + "setuptools" + ], + "notmuch2": [ + "setuptools" + ], + "nototools": [ + "setuptools", + "setuptools-scm" ], "notus-scanner": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "nplusone": [ + "setuptools" + ], + "npyscreen": [ + "setuptools" + ], + "nsapi": [ + "setuptools" ], "ntc-templates": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ntlm-auth": [ + "setuptools" + ], + "ntplib": [ + "setuptools" + ], + "nuitka": [ + "setuptools" + ], + "nulltype": [ + "setuptools" + ], + "num2words": [ + "setuptools" + ], + "numba": [ + "setuptools" + ], + "numba-scipy": [ + "setuptools" + ], + "numbawithcuda": [ + "setuptools" ], "numcodecs": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "numdifftools": [ + "setuptools" + ], + "numericalunits": [ + "setuptools" + ], + "numexpr": [ + "setuptools" ], "numpy": [ - "cython" + "cython", + "setuptools" ], "numpy-stl": [ - "cython" + "cython", + "setuptools" + ], + "numpydoc": [ + "setuptools" + ], + "numpyro": [ + "setuptools" + ], + "nunavut": [ + "setuptools" + ], + "nutils": [ + "setuptools" + ], + "nvchecker": [ + "setuptools" + ], + "nvidia-ml-py3": [ + "setuptools", + "setuptools-scm" + ], + "nwdiag": [ + "setuptools" + ], + "nxt-python": [ + "setuptools" + ], + "oasatelematics": [ + "setuptools" + ], + "oath": [ + "setuptools" + ], + "oauth": [ + "setuptools" + ], + "oauth2": [ + "setuptools" + ], + "oauth2client": [ + "setuptools" + ], + "oauthenticator": [ + "setuptools" + ], + "oauthlib": [ + "setuptools" + ], + "objax": [ + "setuptools" + ], + "objgraph": [ + "setuptools" + ], + "obspy": [ + "setuptools" + ], + "oci": [ + "setuptools" + ], + "ocifs": [ + "setuptools" + ], + "ocrmypdf": [ + "setuptools", + "setuptools-scm" + ], + "od": [ + "setuptools" + ], + "odfpy": [ + "setuptools" + ], + "oemthermostat": [ + "setuptools", + "setuptools-scm" + ], + "offtrac": [ + "setuptools" + ], + "ofxclient": [ + "setuptools" + ], + "ofxhome": [ + "setuptools" + ], + "ofxparse": [ + "setuptools" + ], + "ofxtools": [ + "setuptools" + ], + "olefile": [ + "setuptools" + ], + "oletools": [ + "setuptools" + ], + "omegaconf": [ + "setuptools" ], "omnikinverter": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "omnilogic": [ + "setuptools" + ], + "ondilo": [ + "setuptools" + ], + "onetimepad": [ + "setuptools" + ], + "onetimepass": [ + "setuptools" + ], + "onkyo-eiscp": [ + "setuptools" + ], + "online-judge-api-client": [ + "setuptools" + ], + "online-judge-tools": [ + "setuptools" + ], + "onlykey-solo-python": [ + "setuptools" + ], + "onnx": [ + "setuptools" + ], + "onvif-zeep-async": [ + "setuptools" + ], + "oocsi": [ + "setuptools" + ], + "open-garage": [ + "setuptools" ], "open-meteo": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "openai": [ + "setuptools" + ], + "openant": [ + "setuptools" + ], + "openapi-core": [ + "setuptools" ], "openapi-schema-validator": [ - "poetry-core" + "poetry-core", + "setuptools" ], "openapi-spec-validator": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "openbabel-bindings": [ + "setuptools" + ], + "opencv4": [ + "setuptools" + ], + "openerz-api": [ + "setuptools" ], "openevsewifi": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "openhomedevice": [ + "setuptools" + ], + "openidc-client": [ + "setuptools" + ], + "openpaperwork-core": [ + "setuptools" + ], + "openpaperwork-gtk": [ + "setuptools" + ], + "openpyxl": [ + "setuptools" + ], + "openrazer": [ + "setuptools" + ], + "openrazer-daemon": [ + "setuptools" + ], + "openrouteservice": [ + "setuptools" + ], + "opensensemap-api": [ + "setuptools" + ], + "opensfm": [ + "setuptools" + ], + "openshift": [ + "setuptools" + ], + "opensimplex": [ + "setuptools" ], "openstackdocstheme": [ - "pbr" + "pbr", + "setuptools" ], "openstacksdk": [ - "pbr" + "pbr", + "setuptools" ], "openstep-plist": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "opentelemetry-api": [ + { + "buildSystem": "setuptools", + "until": "1.13.0" + }, + { + "buildSystem": "hatchling", + "from": "1.13.0" + } + ], + "opentelemetry-exporter-otlp-proto-http": [ + { + "buildSystem": "setuptools", + "until": "0.34b0" + }, + { + "buildSystem": "hatchling", + "from": "0.34b0" + } + ], + "opentelemetry-instrumentation": [ + { + "buildSystem": "setuptools", + "until": "0.34b0" + }, + { + "buildSystem": "hatchling", + "from": "0.34b0" + } + ], + "opentelemetry-instrumentation-asyncpg": [ + { + "buildSystem": "setuptools", + "until": "0.34b0" + }, + { + "buildSystem": "hatchling", + "from": "0.34b0" + } + ], + "opentelemetry-instrumentation-httpx": [ + { + "buildSystem": "setuptools", + "until": "0.34b0" + }, + { + "buildSystem": "hatchling", + "from": "0.34b0" + } + ], + "opentelemetry-proto": [ + { + "buildSystem": "setuptools", + "until": "1.13.0" + }, + { + "buildSystem": "hatchling", + "from": "1.13.0" + } + ], + "opentelemetry-sdk": [ + { + "buildSystem": "setuptools", + "until": "1.13.0" + }, + { + "buildSystem": "hatchling", + "from": "1.13.0" + } + ], + "opentelemetry-semantic-conventions": [ + { + "buildSystem": "setuptools", + "until": "0.34b0" + }, + { + "buildSystem": "hatchling", + "from": "0.33b0" + } + ], + "opentimestamps": [ + "setuptools" + ], + "opentracing": [ + "setuptools" ], "openvino": [ "cython" ], + "openwebifpy": [ + "setuptools" + ], + "openwrt-luci-rpc": [ + "setuptools" + ], + "openwrt-ubus-rpc": [ + "setuptools" + ], + "opsdroid-get-image-size": [ + "setuptools" + ], + "opt-einsum": [ + "setuptools" + ], + "optax": [ + "setuptools" + ], + "opuslib": [ + "setuptools" + ], "ordered-set": [ - "flit-core" + "flit-core", + "setuptools" + ], + "orderedmultidict": [ + "setuptools" + ], + "orjson": [ + "setuptools" + ], + "orm": [ + "setuptools" ], "ormar": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ortools": [ + "setuptools" + ], + "orvibo": [ + "setuptools" ], "os-service-types": [ - "pbr" + "pbr", + "setuptools" + ], + "osc": [ + "setuptools" ], "osc-lib": [ - "pbr" + "pbr", + "setuptools" + ], + "oscpy": [ + "setuptools" + ], + "oscrypto": [ + "setuptools" + ], + "oset": [ + "setuptools" ], "oslo-concurrency": [ - "pbr" + "pbr", + "setuptools" ], "oslo-config": [ - "pbr" + "pbr", + "setuptools" ], "oslo-context": [ - "pbr" + "pbr", + "setuptools" ], "oslo-db": [ - "pbr" + "pbr", + "setuptools" ], "oslo-i18n": [ - "pbr" + "pbr", + "setuptools" ], "oslo-log": [ - "pbr" + "pbr", + "setuptools" ], "oslo-serialization": [ - "pbr" + "pbr", + "setuptools" ], "oslo-utils": [ - "pbr" + "pbr", + "setuptools" ], "oslotest": [ - "pbr" + "pbr", + "setuptools" + ], + "osmnx": [ + "setuptools" + ], + "osmpythontools": [ + "setuptools" + ], + "ospd": [ + "setuptools" + ], + "osqp": [ + "setuptools", + "setuptools-scm" + ], + "oss2": [ + "setuptools" + ], + "ossfs": [ + "setuptools" + ], + "outcome": [ + "setuptools" + ], + "overly": [ + "setuptools" + ], + "ovh": [ + "setuptools" + ], + "ovmfvartool": [ + "setuptools" + ], + "ovoenergy": [ + "setuptools" + ], + "owslib": [ + "setuptools" + ], + "oyaml": [ + "setuptools" ], "p1monitor": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pa-ringbuffer": [ + "setuptools" + ], + "packageurl-python": [ + "setuptools" + ], + "packaging": [ + "setuptools" + ], + "packbits": [ + "setuptools" + ], + "packet-python": [ + "setuptools" + ], + "pad4pi": [ + "setuptools" ], "paddle-client": [ "poetry" ], + "pafy": [ + "setuptools" + ], + "pagelabels": [ + "setuptools" + ], + "paho-mqtt": [ + "setuptools" + ], "palace": [ - "cython" + "cython", + "setuptools" + ], + "palettable": [ + "setuptools" + ], + "pallets-sphinx-themes": [ + "setuptools" + ], + "pam": [ + "setuptools" + ], + "pamela": [ + "setuptools" + ], + "pamqp": [ + "setuptools" + ], + "panacotta": [ + "setuptools" + ], + "panasonic-viera": [ + "setuptools" ], "pandas": [ - "cython" + "cython", + "setuptools" + ], + "pandas-datareader": [ + "setuptools" + ], + "pandas-stubs": [ + "setuptools" + ], + "pandoc-attributes": [ + "setuptools" + ], + "pandoc-xnos": [ + "setuptools" + ], + "pandocfilters": [ + "setuptools" + ], + "panel": [ + "setuptools" + ], + "panflute": [ + "setuptools" + ], + "papermill": [ + "setuptools" + ], + "paperwork-backend": [ + "setuptools" + ], + "paperwork-shell": [ + "setuptools" + ], + "papis": [ + "setuptools" + ], + "papis-python-rofi": [ + "setuptools" + ], + "param": [ + "setuptools" + ], + "parameter-expansion-patched": [ + "setuptools", + "setuptools-scm" + ], + "parameterized": [ + "setuptools" + ], + "paramiko": [ + "setuptools" + ], + "paramz": [ + "setuptools" + ], + "paranoid-crypto": [ + "setuptools" + ], + "parfive": [ + "setuptools", + "setuptools-scm" + ], + "parquet": [ + "setuptools" + ], + "parse": [ + "setuptools" + ], + "parse-type": [ + "setuptools" + ], + "parsedatetime": [ + "setuptools" + ], + "parsedmarc": [ + "setuptools" + ], + "parsel": [ + "setuptools" + ], + "parsimonious": [ + "setuptools" + ], + "parsita": [ + "poetry" + ], + "parsley": [ + "setuptools" + ], + "parso": [ + "setuptools" + ], + "parsy": [ + "setuptools" + ], + "partd": [ + "setuptools" + ], + "particle": [ + "setuptools", + "setuptools-scm" + ], + "parts": [ + "setuptools" + ], + "parver": [ + "setuptools" + ], + "passlib": [ + "setuptools" + ], + "paste": [ + "setuptools" + ], + "pastedeploy": [ + "setuptools" ], "pastel": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pastescript": [ + "setuptools" + ], + "patch": [ + "setuptools" + ], + "patch-ng": [ + "setuptools" + ], + "path": [ + "setuptools", + "setuptools-scm" + ], + "path-and-address": [ + "setuptools" ], "pathable": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pathlib2": [ + "setuptools" + ], + "pathos": [ + "setuptools" + ], + "pathpy": [ + "setuptools", + "setuptools-scm" + ], + "pathspec": [ + "setuptools" + ], + "pathtools": [ + "setuptools" + ], + "pathvalidate": [ + "setuptools" + ], + "pathy": [ + "setuptools" + ], + "patiencediff": [ + "setuptools" + ], + "patool": [ + "setuptools" + ], + "patrowl4py": [ + "setuptools" + ], + "patsy": [ + "setuptools" + ], + "paver": [ + "setuptools" + ], + "paypalrestsdk": [ + "setuptools" + ], + "pbkdf2": [ + "setuptools" + ], + "pbr": [ + "setuptools" + ], + "pc-ble-driver-py": [ + "setuptools" + ], + "pcapy-ng": [ + "cython", + "setuptools" + ], + "pcodedmp": [ + "setuptools" + ], + "pcpp": [ + "setuptools" + ], + "pdf2image": [ + "setuptools" + ], + "pdfkit": [ + "setuptools" + ], + "pdfminer": [ + "setuptools" + ], + "pdfminer-six": [ + "setuptools" + ], + "pdfposter": [ + "setuptools" + ], + "pdfrw": [ + "setuptools" + ], + "pdftotext": [ + "setuptools" + ], + "pdfx": [ + "setuptools" + ], + "pdm-pep517": [ + "setuptools" + ], + "pdoc": [ + "setuptools" + ], + "pdoc3": [ + "setuptools", + "setuptools-scm" + ], + "pdunehd": [ + "setuptools" + ], + "peaqevcore": [ + "setuptools" + ], + "pebble": [ + "setuptools" + ], + "pecan": [ + "setuptools" + ], + "peco": [ + "setuptools" ], "peewee": [ - "cython" + "cython", + "setuptools" + ], + "pefile": [ + "setuptools", + "setuptools-scm" + ], + "pelican": [ + "setuptools" + ], + "pencompy": [ + "setuptools" ], "pendulum": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pep257": [ + "setuptools" + ], + "pep440": [ + "flit-core", + "flitBuildHook", + "setuptools" ], "pep440-version-utils": [ "poetry" ], "pep517": [ - "flit-core" + "flit-core", + "setuptools" + ], + "pep8": [ + "setuptools" + ], + "pep8-naming": [ + "setuptools" + ], + "peppercorn": [ + "setuptools" + ], + "percol": [ + "setuptools" + ], + "periodictable": [ + "setuptools" + ], + "persim": [ + "setuptools" + ], + "persistent": [ + "setuptools" + ], + "persisting-theory": [ + "setuptools" + ], + "pescea": [ + "setuptools" ], "pex": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "pexif": [ + "setuptools" + ], + "pexpect": [ + "setuptools" + ], + "pg8000": [ + "setuptools" + ], + "pgcli": [ + "setuptools" + ], + "pglast": [ + "setuptools" + ], + "pgpdump": [ + "setuptools" + ], + "pgpy": [ + "setuptools" + ], + "pgsanity": [ + "setuptools" + ], + "pgspecial": [ + "setuptools" + ], + "phe": [ + "setuptools" + ], + "phik": [ + "setuptools" + ], + "phone-modem": [ + "setuptools" + ], + "phonemizer": [ + "setuptools" + ], + "phonenumbers": [ + "setuptools" + ], + "phonopy": [ + "setuptools" + ], + "phpserialize": [ + "setuptools" + ], + "phx-class-registry": [ + "setuptools" + ], + "pi1wire": [ + "setuptools" + ], + "piccata": [ + "setuptools" + ], + "piccolo-theme": [ + "setuptools" + ], + "pick": [ + "poetry-core", + "setuptools" + ], + "pickleshare": [ + "setuptools" + ], + "picobox": [ + "setuptools", + "setuptools-scm" + ], + "picos": [ + "setuptools" + ], + "pid": [ + "setuptools" + ], + "piexif": [ + "setuptools" + ], + "pijuice": [ + "setuptools" + ], + "pika": [ + "setuptools" + ], + "pika-pool": [ + "setuptools" + ], + "pikepdf": [ + "setuptools", + "setuptools-scm" + ], + "pilkit": [ + "setuptools" + ], + "pillow": [ + "setuptools" + ], + "pillow-simd": [ + "setuptools" + ], + "pillowfight": [ + "setuptools" + ], + "pims": [ + "setuptools" + ], + "pinboard": [ + "setuptools" + ], + "pint": [ + "setuptools", + "setuptools-scm" + ], + "pint-pandas": [ + "setuptools", + "setuptools-scm" + ], + "pip": [ + "setuptools" + ], + "pip-api": [ + "setuptools" + ], + "pip-requirements-parser": [ + "setuptools", + "setuptools-scm" + ], + "pip-tools": [ + "setuptools", + "setuptools-scm" + ], + "pipdate": [ + "setuptools" + ], + "pipdeptree": [ + "hatchling", + "setuptools" ], "pipenv-poetry-migrate": [ - "poetry" + "poetry", + "setuptools" + ], + "pipx": [ + "hatchling", + "setuptools" + ], + "pivy": [ + "setuptools" + ], + "pixcat": [ + "setuptools" ], "pixelmatch": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pkce": [ + "setuptools" ], "pkgconfig": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pkginfo": [ + "setuptools" + ], + "pkginfo2": [ + "setuptools" + ], + "pkgutil-resolve-name": [ + "flit-core" + ], + "pkutils": [ + "setuptools" + ], + "plac": [ + "setuptools" + ], + "plaid-python": [ + "setuptools" + ], + "plantuml": [ + "setuptools" + ], + "plantuml-markdown": [ + "setuptools" + ], + "plaster": [ + "setuptools" + ], + "plaster-pastedeploy": [ + "setuptools" + ], + "platformdirs": [ + "hatch-vcs", + "hatchling", + "setuptools", + "setuptools-scm" + ], + "playsound": [ + "setuptools" + ], + "plexapi": [ + "setuptools" + ], + "plexauth": [ + "setuptools" + ], + "plexwebsocket": [ + "setuptools" + ], + "plone-testing": [ + "setuptools" + ], + "plotly": [ + "setuptools" + ], + "plotnine": [ + "setuptools" + ], + "pluggy": [ + "setuptools", + "setuptools-scm" + ], + "pluginbase": [ + "setuptools" + ], + "plugincode": [ + "setuptools", + "setuptools-scm" + ], + "plugnplay": [ + "setuptools" + ], + "plugwise": [ + "setuptools" + ], + "plum-py": [ + "setuptools" + ], + "plumbum": [ + "setuptools", + "setuptools-scm" ], "plux": [ - "pytest-runner" + "pytest-runner", + "setuptools" ], - "poetry": [ - "poetry-core" + "ply": [ + "setuptools" + ], + "plyer": [ + "setuptools" + ], + "plyfile": [ + "setuptools" + ], + "plyplus": [ + "setuptools" + ], + "plyvel": [ + "setuptools" + ], + "pmsensor": [ + "setuptools" + ], + "pmw": [ + "setuptools" + ], + "pocket": [ + "setuptools" + ], + "podcastparser": [ + "setuptools" + ], + "podcats": [ + "setuptools" ], "poetry-dynamic-versioning": [ + "poetry-core", + "setuptools" + ], + "poetry-plugin-export": [ + "poetry", "poetry-core" ], + "poetry-semver": [ + "setuptools" + ], "poetry2conda": [ - "poetry" + "poetry", + "setuptools" + ], + "poezio": [ + "setuptools" + ], + "polarizationsolver": [ + "setuptools" + ], + "polib": [ + "setuptools" + ], + "policy-sentry": [ + "setuptools" + ], + "policyuniverse": [ + "setuptools" + ], + "polyline": [ + "setuptools" ], "pomegranate": [ - "cython" + "cython", + "setuptools" ], "pontos": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pony": [ + "setuptools" + ], + "ponywhoosh": [ + "setuptools" + ], + "pooch": [ + "setuptools", + "setuptools-scm" + ], + "pook": [ + "setuptools" + ], + "poolsense": [ + "setuptools" + ], + "poppler-qt5": [ + "setuptools" + ], + "portalocker": [ + "setuptools" + ], + "portend": [ + "setuptools", + "setuptools-scm" + ], + "portpicker": [ + "setuptools" + ], + "posix-ipc": [ + "setuptools" ], "pot": [ - "cython" + "cython", + "setuptools" + ], + "potentials": [ + "setuptools" + ], + "potr": [ + "setuptools" + ], + "power": [ + "setuptools" + ], + "powerline": [ + "setuptools" + ], + "powerline-mem-segment": [ + "setuptools" + ], + "powerlinememsegment": [ + "setuptools" + ], + "pox": [ + "setuptools" + ], + "poyo": [ + "setuptools" + ], + "ppdeep": [ + "setuptools" + ], + "ppft": [ + "setuptools" ], "pplpy": [ - "cython" + "cython", + "setuptools" + ], + "pprintpp": [ + "setuptools" + ], + "pproxy": [ + "setuptools" + ], + "ppscore": [ + "setuptools" + ], + "pq": [ + "setuptools" + ], + "prance": [ + "setuptools", + "setuptools-scm" + ], + "praw": [ + "setuptools" + ], + "prawcore": [ + "setuptools" + ], + "prayer-times-calculator": [ + "setuptools" + ], + "pre-commit-hooks": [ + "setuptools" + ], + "precis-i18n": [ + "setuptools" + ], + "prefixed": [ + "setuptools" + ], + "preggy": [ + "setuptools" + ], + "premailer": [ + "setuptools" ], "preprocess-cancellation": [ - "poetry-core" + "poetry-core", + "setuptools" ], "preshed": [ - "cython" + "cython", + "setuptools" + ], + "pretend": [ + "setuptools" + ], + "prettytable": [ + "setuptools", + "setuptools-scm" ], "primecountpy": [ - "cython" + "cython", + "setuptools" ], "primer3": [ - "cython" + "cython", + "setuptools" + ], + "priority": [ + "setuptools" + ], + "prison": [ + "setuptools" + ], + "privacyidea-ldap-proxy": [ + "setuptools" + ], + "proboscis": [ + "setuptools" + ], + "process-tests": [ + "setuptools" + ], + "proglog": [ + "setuptools" + ], + "progress": [ + "setuptools" + ], + "progressbar": [ + "setuptools" + ], + "progressbar2": [ + "setuptools" + ], + "progressbar33": [ + "setuptools" + ], + "prometheus-client": [ + "setuptools" ], "prometheus-fastapi-instrumentator": [ "poetry" ], + "prometheus-flask-exporter": [ + "setuptools" + ], + "promise": [ + "setuptools" + ], + "prompt-toolkit": [ + "setuptools" + ], + "property-manager": [ + "setuptools" + ], "prospector": [ "poetry-core" ], + "protego": [ + "setuptools" + ], + "proto-plus": [ + "setuptools" + ], + "protobuf": [ + "setuptools" + ], + "protobuf3-to-dict": [ + "setuptools" + ], "protoletariat": [ "poetry-core" ], + "proton-client": [ + "setuptools" + ], + "protonup": [ + "setuptools" + ], + "protonvpn-nm-lib": [ + "setuptools" + ], + "prov": [ + "setuptools" + ], + "prox-tv": [ + "setuptools" + ], + "proxmoxer": [ + "setuptools" + ], + "proxy-py": [ + "setuptools", + "setuptools-scm" + ], + "proxy-tools": [ + "setuptools" + ], + "psautohint": [ + "setuptools", + "setuptools-scm" + ], + "pscript": [ + "setuptools" + ], + "psd-tools": [ + "cython", + "setuptools" + ], + "psrpcore": [ + "setuptools" + ], + "psutil": [ + "setuptools" + ], + "psutil-home-assistant": [ + "setuptools" + ], + "psycopg": [ + "setuptools" + ], + "psycopg2": [ + "setuptools" + ], + "psycopg2cffi": [ + "setuptools" + ], + "psygnal": [ + "setuptools", + "setuptools-scm" + ], + "ptable": [ + "setuptools" + ], + "ptest": [ + "setuptools" + ], + "ptpython": [ + "setuptools" + ], "ptyprocess": [ - "flit-core" + "flit-core", + "setuptools" ], "publication": [ "flit" ], + "publicsuffix": [ + "setuptools" + ], + "publicsuffix2": [ + "setuptools" + ], + "pubnub": [ + "setuptools" + ], + "pubnubsub-handler": [ + "setuptools" + ], + "pudb": [ + "setuptools" + ], + "pulp": [ + "setuptools" + ], + "pulsectl": [ + "setuptools" + ], + "pulumi": [ + "setuptools" + ], + "pulumi-aws": [ + "setuptools" + ], + "pure-cdb": [ + "setuptools" + ], + "pure-eval": [ + "setuptools", + "setuptools-scm" + ], + "pure-pcapy3": [ + "setuptools" + ], + "pure-python-adb": [ + "setuptools" + ], + "pure-python-adb-homeassistant": [ + "setuptools" + ], + "pure-sasl": [ + "setuptools" + ], + "puremagic": [ + "setuptools" + ], "purepng": [ - "cython" + "cython", + "setuptools" + ], + "purl": [ + "setuptools" + ], + "push-receiver": [ + "setuptools" + ], + "pushbullet": [ + "setuptools" + ], + "pushover-complete": [ + "setuptools" + ], + "pvlib": [ + "setuptools" ], "pvo": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pweave": [ + "setuptools" + ], + "pwntools": [ + "setuptools" + ], + "py": [ + "setuptools", + "setuptools-scm" + ], + "py-air-control": [ + "setuptools" + ], + "py-air-control-exporter": [ + "setuptools" + ], + "py-canary": [ + "setuptools" + ], + "py-cid": [ + "setuptools" + ], + "py-cpuinfo": [ + "setuptools" + ], + "py-deprecate": [ + "setuptools" + ], + "py-desmume": [ + "setuptools" + ], + "py-dmidecode": [ + "setuptools" + ], + "py-ecc": [ + "setuptools" + ], + "py-eth-sig-utils": [ + "setuptools" + ], + "py-lru-cache": [ + "setuptools" + ], + "py-multiaddr": [ + "setuptools" + ], + "py-multibase": [ + "setuptools" + ], + "py-multicodec": [ + "setuptools" ], "py-multihash": [ - "pytest-runner" + "pytest-runner", + "setuptools" + ], + "py-nextbusnext": [ + "setuptools" + ], + "py-nightscout": [ + "setuptools" + ], + "py-scrypt": [ + "setuptools" + ], + "py-sneakers": [ + "setuptools" + ], + "py-sonic": [ + "setuptools" + ], + "py-stringmatching": [ + "setuptools" ], "py-synologydsm-api": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "py-tes": [ + "setuptools" + ], + "py-tree-sitter": [ + "setuptools" + ], + "py-ubjson": [ + "setuptools" + ], + "py-vapid": [ + "setuptools" + ], + "py-zabbix": [ + "setuptools" ], "py17track": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "py2bit": [ + "setuptools" + ], + "py3exiv2": [ + "setuptools" + ], + "py3rijndael": [ + "setuptools" + ], + "py3status": [ + "setuptools" + ], + "py3to2": [ + "setuptools" + ], + "py4j": [ + "setuptools" + ], + "pyacoustid": [ + "setuptools" + ], + "pyads": [ + "setuptools" + ], + "pyaehw4a1": [ + "setuptools" + ], + "pyaes": [ + "setuptools" + ], + "pyaftership": [ + "setuptools" + ], + "pyahocorasick": [ + "setuptools" ], "pyairnow": [ - "poetry" + "poetry", + "setuptools" ], "pyairvisual": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyalgotrade": [ + "setuptools" + ], + "pyalmond": [ + "setuptools" + ], + "pyamg": [ + "setuptools", + "setuptools-scm" + ], + "pyaml": [ + "setuptools" + ], + "pyannotate": [ + "setuptools" + ], + "pyarlo": [ + "setuptools" + ], + "pyarr": [ + "setuptools" ], "pyarrow": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "pyasn": [ + "setuptools" + ], + "pyasn1": [ + "setuptools" + ], + "pyasn1-modules": [ + "setuptools" + ], + "pyatag": [ + "setuptools" + ], + "pyathena": [ + "setuptools" + ], + "pyatmo": [ + "setuptools", + "setuptools-scm" + ], + "pyatome": [ + "setuptools" + ], + "pyatspi": [ + "setuptools" + ], + "pyatv": [ + "setuptools" + ], + "pyaudio": [ + "setuptools" ], "pyaussiebb": [ + "poetry-core", + "setuptools" + ], + "pyautogui": [ + "setuptools" + ], + "pyavm": [ + "setuptools" + ], + "pyaxmlparser": [ + "setuptools" + ], + "pybalboa": [ + "setuptools" + ], + "pybase64": [ + "setuptools" + ], + "pybigwig": [ + "setuptools" + ], + "pybind11": [ + "setuptools" + ], + "pybindgen": [ + "setuptools", + "setuptools-scm" + ], + "pyblackbird": [ + "setuptools" + ], + "pyblake2": [ + "setuptools" + ], + "pybluez": [ + "setuptools" + ], + "pybotvac": [ + "setuptools" + ], + "pybravia": [ "poetry-core" ], + "pybrowserid": [ + "setuptools" + ], + "pybtex": [ + "setuptools" + ], + "pybtex-docutils": [ + "setuptools" + ], + "pybullet": [ + "setuptools" + ], + "pycairo": [ + "setuptools" + ], "pycangjie": [ - "cython" + "cython", + "setuptools" ], "pycapnp": [ - "cython" + "cython", + "setuptools" + ], + "pycaption": [ + "setuptools" + ], + "pycares": [ + "setuptools" + ], + "pycarwings2": [ + "setuptools" + ], + "pycategories": [ + "setuptools" + ], + "pycdio": [ + "setuptools" + ], + "pycec": [ + "setuptools" ], "pycep-parser": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pycfdns": [ + "setuptools" + ], + "pycflow2dot": [ + "setuptools" + ], + "pycfmodel": [ + "setuptools" + ], + "pychannels": [ + "setuptools" + ], + "pychef": [ + "setuptools" + ], + "pychm": [ + "setuptools" + ], + "pychromecast": [ + "setuptools" + ], + "pycketcasts": [ + "setuptools" + ], + "pyclimacell": [ + "setuptools" + ], + "pyclip": [ + "setuptools" ], "pyclipper": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "pycm": [ + "setuptools" + ], + "pycmarkgfm": [ + "setuptools" ], "pycocotools": [ - "cython" + "cython", + "setuptools" + ], + "pycodestyle": [ + "setuptools" + ], + "pycognito": [ + "setuptools" + ], + "pycoin": [ + "setuptools" + ], + "pycollada": [ + "setuptools" + ], + "pycomfoconnect": [ + "setuptools" + ], + "pycontracts": [ + "setuptools" + ], + "pycontrol4": [ + "setuptools" + ], + "pycoolmasternet-async": [ + "setuptools" + ], + "pycosat": [ + "setuptools" + ], + "pycountry": [ + "setuptools" + ], + "pycparser": [ + "setuptools" + ], + "pycrc": [ + "setuptools" + ], + "pycritty": [ + "setuptools" + ], + "pycron": [ + "setuptools" + ], + "pycrypto": [ + "setuptools" + ], + "pycryptodome": [ + "setuptools" + ], + "pycryptodomex": [ + "setuptools" + ], + "pycsdr": [ + "setuptools" + ], + "pyct": [ + "setuptools" + ], + "pyctr": [ + "setuptools" + ], + "pycuda": [ + "setuptools" + ], + "pycups": [ + "setuptools" + ], + "pycurl": [ + "setuptools" + ], + "pycxx": [ + "setuptools" + ], + "pydaikin": [ + "setuptools" + ], + "pydal": [ + "setuptools" + ], + "pydanfossair": [ + "setuptools" ], "pydantic": [ - "cython" + "cython", + "setuptools" + ], + "pydantic-dydb": [ + "poetry-core" + ], + "pydash": [ + "setuptools" + ], + "pydata-sphinx-theme": [ + "setuptools" + ], + "pydbus": [ + "setuptools" + ], + "pydeck": [ + "setuptools" + ], + "pydeconz": [ + "setuptools" + ], + "pydelijn": [ + "setuptools" + ], + "pydenticon": [ + "setuptools" + ], + "pydeps": [ + "setuptools" + ], + "pydes": [ + "setuptools" + ], + "pydevccu": [ + "setuptools" + ], + "pydevd": [ + "setuptools" + ], + "pydexcom": [ + "setuptools" + ], + "pydicom": [ + "setuptools" + ], + "pydigiham": [ + "setuptools" + ], + "pydispatcher": [ + "setuptools" + ], + "pydmd": [ + "setuptools" + ], + "pydns": [ + "setuptools" + ], + "pydocstyle": [ + "setuptools" + ], + "pydocumentdb": [ + "setuptools" + ], + "pydoods": [ + "setuptools" + ], + "pydot": [ + "setuptools" + ], + "pydrive2": [ + "setuptools" + ], + "pydroid-ipcam": [ + "setuptools" + ], + "pydsdl": [ + "setuptools" + ], + "pydub": [ + "setuptools" + ], + "pyduke-energy": [ + "setuptools" ], "pydy": [ - "cython" + "cython", + "setuptools" + ], + "pydyf": [ + "setuptools" + ], + "pyeapi": [ + "setuptools" ], "pyebus": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyeclib": [ + "setuptools" + ], + "pyeconet": [ + "setuptools" + ], + "pyecowitt": [ + "setuptools" + ], + "pyedimax": [ + "setuptools" + ], + "pyee": [ + "setuptools" + ], + "pyefergy": [ + "setuptools" + ], + "pyeight": [ + "setuptools" + ], + "pyelftools": [ + "setuptools" + ], + "pyemby": [ + "setuptools" ], "pyemd": [ - "cython" + "cython", + "setuptools" + ], + "pyenchant": [ + "setuptools" + ], + "pyenvisalink": [ + "setuptools" + ], + "pyephember": [ + "setuptools" + ], + "pyepsg": [ + "setuptools" + ], + "pyerfa": [ + "setuptools", + "setuptools-scm" + ], + "pyeverlights": [ + "setuptools" + ], + "pyevilgenius": [ + "setuptools" + ], + "pyevmasm": [ + "setuptools" + ], + "pyexcel": [ + "setuptools" + ], + "pyexcel-io": [ + "setuptools" + ], + "pyexcel-ods": [ + "setuptools" + ], + "pyexcel-xls": [ + "setuptools" + ], + "pyext": [ + "setuptools" + ], + "pyezviz": [ + "setuptools" + ], + "pyface": [ + "setuptools" + ], + "pyfaidx": [ + "setuptools", + "setuptools-scm" + ], + "pyfakefs": [ + "setuptools" + ], + "pyfakewebcam": [ + "setuptools" + ], + "pyfantom": [ + "setuptools" + ], + "pyfcm": [ + "setuptools" ], "pyfftw": [ - "cython" + "cython", + "setuptools" + ], + "pyfido": [ + "setuptools" + ], + "pyfiglet": [ + "setuptools" + ], + "pyfireservicerota": [ + "setuptools" + ], + "pyflakes": [ + "setuptools" + ], + "pyflexit": [ + "setuptools" + ], + "pyflic": [ + "setuptools" + ], + "pyflick": [ + "setuptools" + ], + "pyflume": [ + "setuptools" ], "pyflunearyou": [ - "poetry-core" + "poetry-core", + "setuptools" ], - "pygame_sdl2": [ - "cython" + "pyfma": [ + "setuptools" + ], + "pyfnip": [ + "setuptools" + ], + "pyfreedompro": [ + "setuptools" + ], + "pyfribidi": [ + "setuptools" + ], + "pyfritzhome": [ + "setuptools" + ], + "pyfronius": [ + "setuptools" + ], + "pyftdi": [ + "setuptools" + ], + "pyftgl": [ + "setuptools" + ], + "pyftpdlib": [ + "setuptools" + ], + "pyfttt": [ + "setuptools" + ], + "pyfuse3": [ + "cython", + "setuptools" + ], + "pyfxa": [ + "setuptools" + ], + "pyfzf": [ + "setuptools" + ], + "pygal": [ + "setuptools" + ], + "pygame": [ + "setuptools" + ], + "pygame-gui": [ + "setuptools" + ], + "pygame-sdl2": [ + "cython", + "setuptools" + ], + "pygatt": [ + "setuptools" + ], + "pygccxml": [ + "setuptools" + ], + "pygdbmi": [ + "setuptools" + ], + "pygeoip": [ + "setuptools" ], "pygeos": [ - "cython" + "cython", + "setuptools" + ], + "pygetwindow": [ + "setuptools" + ], + "pygit2": [ + "setuptools" + ], + "pygithub": [ + "setuptools" + ], + "pyglet": [ + "setuptools" + ], + "pygls": [ + "setuptools", + "setuptools-scm" + ], + "pygmars": [ + "setuptools", + "setuptools-scm" + ], + "pygments": [ + "setuptools" + ], + "pygments-better-html": [ + "setuptools" + ], + "pygments-markdown-lexer": [ + "setuptools" + ], + "pygmt": [ + "setuptools", + "setuptools-scm" + ], + "pygobject3": [ + "setuptools" + ], + "pygogo": [ + "setuptools" + ], + "pygpgme": [ + "setuptools" + ], + "pygraphviz": [ + "setuptools" + ], + "pygreat": [ + "setuptools" + ], + "pygrok": [ + "setuptools" + ], + "pygtail": [ + "setuptools" + ], + "pygtfs": [ + "setuptools", + "setuptools-scm" + ], + "pygti": [ + "setuptools", + "setuptools-scm" + ], + "pygtkspellcheck": [ + "setuptools" + ], + "pygtrie": [ + "setuptools" + ], + "pyhamcrest": [ + "hatchling", + "setuptools" + ], + "pyhanko": [ + "setuptools" + ], + "pyhanko-certvalidator": [ + "setuptools" + ], + "pyhaversion": [ + "setuptools" + ], + "pyhcl": [ + "setuptools" + ], + "pyheos": [ + "setuptools" + ], + "pyhiveapi": [ + "setuptools" + ], + "pyhocon": [ + "setuptools" + ], + "pyhomematic": [ + "setuptools" + ], + "pyhomepilot": [ + "setuptools" + ], + "pyhomeworks": [ + "setuptools" + ], + "pyhs100": [ + "setuptools" ], "pyhumps": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyi2cflash": [ + "setuptools" + ], + "pyialarm": [ + "setuptools" + ], + "pyicloud": [ + "setuptools" + ], + "pyicu": [ + "setuptools" + ], + "pyimpfuzzy": [ + "setuptools" + ], + "pyinfra": [ + "setuptools" + ], + "pyinotify": [ + "setuptools" + ], + "pyinputevent": [ + "setuptools" + ], + "pyinsteon": [ + "setuptools" + ], + "pyinstrument": [ + "setuptools" + ], + "pyintesishome": [ + "setuptools" + ], + "pyipma": [ + "setuptools" + ], + "pyipp": [ + "setuptools" ], "pyiqvia": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyisbn": [ + "setuptools" + ], + "pyisy": [ + "setuptools" ], "pyjet": [ - "cython" + "cython", + "setuptools" + ], + "pyjks": [ + "setuptools" + ], + "pyjnius": [ + "cython", + "setuptools" ], "pyjsg": [ "pbr" ], + "pyjson5": [ + "setuptools" + ], + "pyjsparser": [ + "setuptools" + ], + "pyjwkest": [ + "setuptools" + ], + "pyjwt": [ + "setuptools" + ], + "pykakasi": [ + "setuptools", + "setuptools-scm" + ], + "pykdtree": [ + "setuptools" + ], + "pykeepass": [ + "setuptools" + ], + "pykerberos": [ + "setuptools" + ], + "pykeyatome": [ + "setuptools" + ], + "pykira": [ + "setuptools" + ], "pykka": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pykmtronic": [ + "setuptools" + ], + "pykodi": [ + "setuptools" + ], + "pykoplenti": [ + "setuptools" + ], + "pykostalpiko": [ + "setuptools" + ], + "pykrakenapi": [ + "setuptools" + ], + "pykulersky": [ + "setuptools" + ], + "pykwalify": [ + "setuptools" + ], + "pykwb": [ + "setuptools" + ], + "pylacrosse": [ + "setuptools" + ], + "pylama": [ + "setuptools" + ], + "pylast": [ + "setuptools", + "setuptools-scm" + ], + "pylatexenc": [ + "setuptools" + ], + "pylaunches": [ + "setuptools" + ], + "pyld": [ + "setuptools" + ], + "pylev": [ + "setuptools" + ], + "pylgnetcast": [ + "setuptools" + ], + "pylibacl": [ + "setuptools" + ], + "pylibconfig2": [ + "setuptools" + ], + "pylibdmtx": [ + "setuptools" + ], + "pylibftdi": [ + "setuptools" ], "pyliblo": [ - "cython" + "cython", + "setuptools" + ], + "pylibmc": [ + "setuptools" + ], + "pylink-square": [ + "setuptools" + ], + "pylint": [ + "setuptools" + ], + "pylint-celery": [ + "setuptools" + ], + "pylint-django": [ + "setuptools" + ], + "pylint-flask": [ + "setuptools" + ], + "pylint-plugin-utils": [ + "setuptools" + ], + "pylitterbot": [ + "poetry-core", + "setuptools" + ], + "pylnk3": [ + "setuptools" + ], + "pylru": [ + "setuptools" + ], + "pyls-flake8": [ + "setuptools" + ], + "pyls-isort": [ + "setuptools" + ], + "pyls-spyder": [ + "setuptools" + ], + "pylsp-mypy": [ + "setuptools" + ], + "pylutron": [ + "setuptools" + ], + "pylutron-caseta": [ + "setuptools" + ], + "pylxd": [ + "setuptools" + ], + "pylyrics": [ + "setuptools" + ], + "pylzma": [ + "setuptools" + ], + "pymacaroons": [ + "setuptools" + ], + "pymaging": [ + "setuptools" + ], + "pymaging-png": [ + "setuptools" + ], + "pymailgunner": [ + "setuptools" + ], + "pymanopt": [ + "setuptools" + ], + "pymarshal": [ + "setuptools" + ], + "pymata-express": [ + "setuptools" ], "pymatgen": [ - "cython" + "cython", + "setuptools" ], "pymaven-patch": [ - "pbr" + "pbr", + "setuptools" + ], + "pymavlink": [ + "setuptools" + ], + "pymazda": [ + "setuptools" + ], + "pymbolic": [ + "setuptools" + ], + "pymc": [ + "setuptools" + ], + "pymc3": [ + "setuptools" ], "pymdown-extensions": [ - "hatchling" + "hatchling", + "setuptools" + ], + "pymdstat": [ + "setuptools" + ], + "pymediainfo": [ + "setuptools", + "setuptools-scm" + ], + "pymediaroom": [ + "setuptools" + ], + "pymeeus": [ + "setuptools" + ], + "pymelcloud": [ + "setuptools" + ], + "pymemcache": [ + "setuptools" + ], + "pymemoize": [ + "setuptools" + ], + "pyment": [ + "setuptools" + ], + "pymetar": [ + "setuptools" + ], + "pymeteireann": [ + "setuptools" + ], + "pymeteoclimatic": [ + "setuptools" + ], + "pymetno": [ + "setuptools" ], "pymfy": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pymicrobot": [ + "setuptools" + ], + "pymitv": [ + "setuptools" + ], + "pymodbus": [ + "setuptools" + ], + "pymongo": [ + "setuptools" + ], + "pymoo": [ + "cython", + "setuptools" + ], + "pymorphy2": [ + "setuptools" + ], + "pymorphy2-dicts-ru": [ + "setuptools" + ], + "pympler": [ + "setuptools" + ], + "pymsgbox": [ + "setuptools" ], "pymssql": [ "cython" ], + "pymsteams": [ + "setuptools" + ], + "pymumble": [ + "setuptools" + ], + "pymunk": [ + "setuptools" + ], + "pymupdf": [ + "setuptools" + ], + "pymvglive": [ + "setuptools" + ], + "pymyq": [ + "setuptools" + ], + "pymysensors": [ + "setuptools" + ], + "pymysql": [ + "setuptools" + ], + "pymysqlsa": [ + "setuptools" + ], + "pymystem3": [ + "setuptools" + ], + "pynac": [ + "setuptools" + ], + "pynacl": [ + "setuptools" + ], + "pynamecheap": [ + "setuptools" + ], + "pynamodb": [ + "setuptools" + ], + "pynanoleaf": [ + "setuptools" + ], + "pynello": [ + "setuptools" + ], + "pynest2d": [ + "setuptools" + ], + "pynetbox": [ + "setuptools", + "setuptools-scm" + ], + "pynetdicom": [ + "setuptools" + ], + "pynetgear": [ + "setuptools" + ], + "pynina": [ + "setuptools" + ], + "pynisher": [ + "setuptools" + ], "pynixutil": [ "poetry" ], + "pynmea2": [ + "setuptools" + ], + "pynndescent": [ + "setuptools" + ], + "pynobo": [ + "setuptools" + ], + "pynput": [ + "setuptools" + ], + "pynrrd": [ + "setuptools" + ], "pynuki": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pynut2": [ + "setuptools" + ], + "pynvim": [ + "setuptools" + ], + "pynvml": [ + "setuptools" + ], + "pynws": [ + "setuptools" + ], + "pynx584": [ + "setuptools" + ], + "pynzb": [ + "setuptools" + ], + "pyobihai": [ + "setuptools" + ], + "pyocr": [ + "setuptools" + ], + "pyoctoprintapi": [ + "setuptools" + ], + "pyodbc": [ + "setuptools" + ], + "pyogg": [ + "setuptools" + ], + "pyombi": [ + "setuptools" + ], + "pyomo": [ + "setuptools" ], "pyopencl": [ - "pybind11" + "pybind11", + "setuptools" + ], + "pyopengl": [ + "setuptools" + ], + "pyopenssl": [ + "setuptools" ], "pyopenuv": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pyopnsense": [ - "pbr" + "pbr", + "setuptools" + ], + "pyoppleio": [ + "setuptools" + ], + "pyosf": [ + "setuptools" + ], + "pyosmium": [ + "setuptools" + ], + "pyotgw": [ + "setuptools" + ], + "pyotp": [ + "setuptools" ], "pyoverkiz": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyowm": [ + "setuptools" + ], + "pyownet": [ + "setuptools" + ], + "pyp": [ + "setuptools" + ], + "pypandoc": [ + "setuptools" + ], + "pyparser": [ + "setuptools" ], "pyparsing": [ - "flit-core" + "flit-core", + "setuptools" + ], + "pyparted": [ + "setuptools" ], "pypass": [ - "pbr" + "pbr", + "setuptools" + ], + "pypblib": [ + "setuptools" + ], + "pypca": [ + "setuptools" + ], + "pypcap": [ + "setuptools" + ], + "pypck": [ + "setuptools" + ], + "pypdf2": [ + "setuptools" + ], + "pypdf3": [ + "setuptools" + ], + "pypeg2": [ + "setuptools" + ], + "pypemicro": [ + "setuptools" + ], + "pyperclip": [ + "setuptools" + ], + "pyperf": [ + "setuptools" ], "pyphen": [ - "flit" + "flit", + "setuptools" + ], + "pyphotonfile": [ + "setuptools" ], "pypika-tortoise": [ "poetry-core" ], + "pypillowfight": [ + "setuptools" + ], + "pypinyin": [ + "setuptools" + ], + "pypiserver": [ + "setuptools" + ], + "pyplaato": [ + "setuptools" + ], + "pypng": [ + "setuptools" + ], + "pypoint": [ + "setuptools" + ], "pypoolstation": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pyppeteer": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pyprecice": [ - "cython" + "cython", + "setuptools" + ], + "pypresence": [ + "setuptools" + ], + "pyprind": [ + "setuptools" + ], + "pyprof2calltree": [ + "setuptools" ], "pyproj": [ - "cython" + "cython", + "setuptools" ], "pyproject-flake8": [ "flit-core" ], + "pyproject-metadata": [ + "setuptools" + ], + "pyprosegur": [ + "setuptools" + ], "pypsrp": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pypubsub": [ + "setuptools" + ], + "pypugjs": [ + "setuptools" + ], + "pypykatz": [ + "setuptools" + ], + "pypytools": [ + "setuptools" + ], + "pyqldb": [ + "setuptools" + ], + "pyqrcode": [ + "setuptools" + ], + "pyqt-builder": [ + "setuptools" + ], + "pyqt4": [ + "setuptools" + ], + "pyqt5": [ + "setuptools" + ], + "pyqt5-sip": [ + "setuptools" + ], + "pyqt5-with-qtmultimedia": [ + "setuptools" + ], + "pyqt5-with-qtwebkit": [ + "setuptools" + ], + "pyqtgraph": [ + "setuptools" + ], + "pyqtwebengine": [ + "setuptools" + ], + "pyquaternion": [ + "setuptools" + ], + "pyquery": [ + "setuptools" ], "pyquil": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyqvrpro": [ + "setuptools" + ], + "pyrabbit2": [ + "setuptools" ], "pyrad": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyradios": [ + "setuptools" + ], + "pyrainbird": [ + "setuptools" + ], + "pyramid": [ + "setuptools" + ], + "pyramid-chameleon": [ + "setuptools" + ], + "pyramid-exclog": [ + "setuptools" + ], + "pyramid-hawkauth": [ + "setuptools" + ], + "pyramid-jinja2": [ + "setuptools" + ], + "pyramid-mako": [ + "setuptools" + ], + "pyramid-multiauth": [ + "setuptools" + ], + "pyreadability": [ + "setuptools" + ], + "pyrect": [ + "setuptools" ], "pyregion": [ - "cython" + "cython", + "setuptools" ], "pyrevolve": [ - "cython" + "cython", + "setuptools" + ], + "pyrfc3339": [ + "setuptools" + ], + "pyrfxtrx": [ + "setuptools" + ], + "pyric": [ + "setuptools" + ], + "pyrisco": [ + "setuptools" + ], + "pyrituals": [ + "setuptools" ], "pyrmvtransport": [ - "flit" + "flit", + "setuptools" + ], + "pyro-api": [ + "setuptools" + ], + "pyro-ppl": [ + "setuptools" + ], + "pyro4": [ + "setuptools" + ], + "pyro5": [ + "setuptools" + ], + "pyrogram": [ + "setuptools" + ], + "pyroma": [ + "setuptools" + ], + "pyroute2": [ + "setuptools" + ], + "pyrr": [ + "setuptools" + ], + "pyrsistent": [ + "setuptools" + ], + "pyrss2gen": [ + "setuptools" + ], + "pyruckus": [ + "setuptools" + ], + "pysabnzbd": [ + "setuptools" + ], + "pysaj": [ + "setuptools" ], "pysam": [ - "cython" + "cython", + "setuptools" + ], + "pysaml2": [ + "setuptools" + ], + "pysatochip": [ + "setuptools" + ], + "pysbd": [ + "setuptools" + ], + "pyscard": [ + "setuptools" + ], + "pyscf": [ + "setuptools" + ], + "pyschedule": [ + "setuptools" + ], + "pyschemes": [ + "setuptools" + ], + "pyscreenshot": [ + "setuptools" + ], + "pyscreeze": [ + "setuptools" + ], + "pyscrypt": [ + "setuptools" + ], + "pyscss": [ + "setuptools" + ], + "pysdcp": [ + "setuptools" + ], + "pysdl2": [ + "setuptools" + ], + "pysecuritas": [ + "setuptools" + ], + "pysendfile": [ + "setuptools" + ], + "pysensibo": [ + "setuptools" + ], + "pysensors": [ + "setuptools" + ], + "pyserial": [ + "setuptools" + ], + "pyserial-asyncio": [ + "setuptools" + ], + "pysftp": [ + "setuptools" + ], + "pysha3": [ + "setuptools" + ], + "pyshark": [ + "setuptools" ], "pyshex": [ "pbr" @@ -1166,529 +12288,4021 @@ "pyshexc": [ "pbr" ], + "pyshp": [ + "setuptools" + ], + "pysiaalarm": [ + "setuptools", + "setuptools-scm" + ], + "pyside": [ + "setuptools" + ], + "pyside2": [ + "setuptools" + ], + "pysideshiboken": [ + "setuptools" + ], + "pysidetools": [ + "setuptools" + ], "pysigma": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pysigma-backend-elasticsearch": [ + "poetry-core", + "setuptools" ], "pysigma-backend-insightidr": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pysigma-backend-opensearch": [ + "poetry-core", + "setuptools" + ], + "pysigma-backend-qradar": [ + "poetry-core", + "setuptools" ], "pysigma-backend-splunk": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pysigma-pipeline-crowdstrike": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pysigma-pipeline-sysmon": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pysigma-pipeline-windows": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pysignalclirestapi": [ + "setuptools" + ], + "pysigset": [ + "setuptools" + ], + "pysimplegui": [ + "setuptools" + ], + "pysingleton": [ + "setuptools" + ], + "pyskyqhub": [ + "setuptools" + ], + "pyskyqremote": [ + "setuptools" ], "pyslurm": [ - "cython" + "cython", + "setuptools" + ], + "pysma": [ + "setuptools" + ], + "pysmappee": [ + "setuptools" + ], + "pysmart": [ + "setuptools" + ], + "pysmart-smartx": [ + "setuptools" + ], + "pysmartapp": [ + "setuptools" + ], + "pysmartdl": [ + "setuptools" + ], + "pysmartthings": [ + "setuptools" + ], + "pysmb": [ + "setuptools" + ], + "pysmbc": [ + "setuptools" ], "pysmf": [ - "cython" + "cython", + "setuptools" + ], + "pysmi": [ + "setuptools" ], "pysml": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pysmt": [ + "setuptools" + ], + "pysnmp": [ + "setuptools" ], "pysnmp-pyasn1": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pysnmp-pysmi": [ - "poetry-core" + "poetry-core", + "setuptools" ], "pysnmplib": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pysnooper": [ + "setuptools" ], "pysnow": [ "poetry", - "poetry-core" + "poetry-core", + "setuptools" + ], + "pysocks": [ + "setuptools" + ], + "pysolcast": [ + "setuptools", + "setuptools-scm" + ], + "pysolr": [ + "setuptools", + "setuptools-scm" + ], + "pysoma": [ + "setuptools" + ], + "pysonos": [ + "setuptools" + ], + "pysoundfile": [ + "setuptools" + ], + "pyspark": [ + "setuptools" + ], + "pyspcwebgw": [ + "setuptools" + ], + "pyspf": [ + "setuptools" + ], + "pyspice": [ + "setuptools" + ], + "pyspiflash": [ + "setuptools" + ], + "pyspinel": [ + "setuptools" + ], + "pyspnego": [ + "setuptools" ], "pysptk": [ - "cython" + "cython", + "setuptools" + ], + "pysqlite": [ + "setuptools" + ], + "pysqlitecipher": [ + "setuptools" + ], + "pysqueezebox": [ + "setuptools" + ], + "pysrim": [ + "setuptools" + ], + "pysrt": [ + "setuptools" + ], + "pyssim": [ + "setuptools" + ], + "pystache": [ + "setuptools" + ], + "pystemd": [ + "setuptools" + ], + "pystemmer": [ + "cython", + "setuptools" + ], + "pystray": [ + "setuptools" + ], + "pysvg-py3": [ + "setuptools" + ], + "pysvn": [ + "setuptools" + ], + "pyswitchbot": [ + "setuptools" + ], + "pysychonaut": [ + "setuptools" + ], + "pysyncobj": [ + "setuptools" + ], + "pysyncthru": [ + "setuptools" + ], + "pytabix": [ + "setuptools" + ], + "pytado": [ + "setuptools" ], "pytaglib": [ - "cython" + "cython", + "setuptools" + ], + "pytankerkoenig": [ + "setuptools" + ], + "pytap2": [ + "setuptools" + ], + "pytautulli": [ + "setuptools" + ], + "pyte": [ + "setuptools" + ], + "pytelegrambotapi": [ + "setuptools" + ], + "pytenable": [ + "setuptools" + ], + "pytesseract": [ + "setuptools" + ], + "pytest": [ + "setuptools", + "setuptools-scm" + ], + "pytest-6": [ + "setuptools", + "setuptools-scm" + ], + "pytest-aio": [ + "setuptools" + ], + "pytest-aiohttp": [ + "setuptools", + "setuptools-scm" + ], + "pytest-annotate": [ + "setuptools" + ], + "pytest-arraydiff": [ + "setuptools", + "setuptools-scm" + ], + "pytest-astropy": [ + "setuptools", + "setuptools-scm" + ], + "pytest-astropy-header": [ + "setuptools", + "setuptools-scm" + ], + "pytest-asyncio": [ + "setuptools", + "setuptools-scm" + ], + "pytest-bdd": [ + "setuptools" + ], + "pytest-benchmark": [ + "setuptools" + ], + "pytest-black": [ + "setuptools", + "setuptools-scm" + ], + "pytest-cache": [ + "setuptools" + ], + "pytest-cases": [ + "setuptools", + "setuptools-scm" + ], + "pytest-catchlog": [ + "setuptools" ], "pytest-celery": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" ], "pytest-check": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" ], "pytest-cid": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "pytest-clarity": [ + "setuptools" + ], + "pytest-click": [ + "setuptools" + ], + "pytest-console-scripts": [ + "setuptools", + "setuptools-scm" + ], + "pytest-cov": [ + "setuptools" + ], + "pytest-cram": [ + "setuptools" + ], + "pytest-datadir": [ + "setuptools", + "setuptools-scm" + ], + "pytest-datafiles": [ + "setuptools" + ], + "pytest-dependency": [ + "setuptools" + ], + "pytest-describe": [ + "setuptools" + ], + "pytest-django": [ + "setuptools", + "setuptools-scm" + ], + "pytest-doctestplus": [ + "setuptools", + "setuptools-scm" + ], + "pytest-dotenv": [ + "setuptools" + ], + "pytest-env": [ + "setuptools" + ], + "pytest-error-for-skips": [ + "setuptools" + ], + "pytest-expect": [ + "setuptools" + ], + "pytest-factoryboy": [ + "setuptools" + ], + "pytest-filter-subpackage": [ + "setuptools", + "setuptools-scm" + ], + "pytest-fixture-config": [ + "setuptools" + ], + "pytest-flakes": [ + "setuptools" + ], + "pytest-flask": [ + "setuptools", + "setuptools-scm" + ], + "pytest-forked": [ + "setuptools", + "setuptools-scm" + ], + "pytest-freezegun": [ + "setuptools" + ], + "pytest-helpers-namespace": [ + "setuptools", + "setuptools-scm" + ], + "pytest-html": [ + "setuptools", + "setuptools-scm" + ], + "pytest-httpbin": [ + "setuptools" ], "pytest-httpserver": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pytest-httpx": [ + "setuptools" + ], + "pytest-instafail": [ + "setuptools" ], "pytest-isort": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pytest-json-report": [ + "setuptools" + ], + "pytest-lazy-fixture": [ + "setuptools" + ], + "pytest-localserver": [ + "setuptools" + ], + "pytest-logdog": [ + "setuptools", + "setuptools-scm" + ], + "pytest-metadata": [ + "setuptools", + "setuptools-scm" + ], + "pytest-mock": [ + "setuptools", + "setuptools-scm" ], "pytest-mockservers": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pytest-mpl": [ + "setuptools", + "setuptools-scm" + ], + "pytest-mypy": [ + "setuptools", + "setuptools-scm" + ], + "pytest-mypy-plugins": [ + "setuptools" + ], + "pytest-openfiles": [ + "setuptools", + "setuptools-scm" + ], + "pytest-order": [ + "setuptools" + ], + "pytest-param-files": [ + "flit-core", + "flitBuildHook", + "setuptools" ], "pytest-profiling": [ + "setuptools", "setuptools-git" ], + "pytest-pylint": [ + "setuptools" + ], + "pytest-qt": [ + "setuptools", + "setuptools-scm" + ], + "pytest-raises": [ + "setuptools" + ], + "pytest-raisesregexp": [ + "setuptools" + ], "pytest-raisin": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "pytest-random-order": [ + "setuptools" + ], + "pytest-randomly": [ + "setuptools" + ], + "pytest-regressions": [ + "setuptools", + "setuptools-scm" + ], + "pytest-remotedata": [ + "setuptools", + "setuptools-scm" + ], + "pytest-repeat": [ + "setuptools", + "setuptools-scm" + ], + "pytest-rerunfailures": [ + "setuptools" + ], + "pytest-resource-path": [ + "setuptools" + ], + "pytest-runner": [ + "setuptools", + "setuptools-scm" + ], + "pytest-server-fixtures": [ + "setuptools" + ], + "pytest-services": [ + "setuptools", + "setuptools-scm" + ], + "pytest-shutil": [ + "setuptools" + ], + "pytest-snapshot": [ + "setuptools", + "setuptools-scm" ], "pytest-socket": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pytest-subprocess": [ + "setuptools" + ], + "pytest-subtesthack": [ + "setuptools" + ], + "pytest-subtests": [ + "setuptools", + "setuptools-scm" + ], + "pytest-sugar": [ + "setuptools" + ], + "pytest-test-utils": [ + "setuptools" + ], + "pytest-testmon": [ + "setuptools" + ], + "pytest-timeout": [ + "setuptools" + ], + "pytest-tornado": [ + "setuptools" + ], + "pytest-tornasync": [ + "setuptools" + ], + "pytest-trio": [ + "setuptools" + ], + "pytest-twisted": [ + "setuptools" + ], + "pytest-unordered": [ + "setuptools" + ], + "pytest-vcr": [ + "setuptools" + ], + "pytest-virtualenv": [ + "setuptools" + ], + "pytest-warnings": [ + "setuptools" + ], + "pytest-watch": [ + "setuptools" + ], + "pytest-xdist": [ + "setuptools", + "setuptools-scm" + ], + "pytest-xprocess": [ + "setuptools", + "setuptools-scm" + ], + "pytest-xvfb": [ + "setuptools" + ], + "pytestcache": [ + "setuptools" + ], + "pytestcov": [ + "setuptools" + ], + "pytestrunner": [ + "setuptools", + "setuptools-scm" ], "python-awair": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "python-axolotl": [ + "setuptools" + ], + "python-axolotl-curve25519": [ + "setuptools" + ], + "python-barcode": [ + "setuptools", + "setuptools-scm" + ], + "python-baseconv": [ + "setuptools" + ], + "python-benedict": [ + "setuptools" + ], + "python-bidi": [ + "setuptools" + ], + "python-binance": [ + "setuptools" + ], + "python-box": [ + "setuptools" ], "python-cinderclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-codon-tables": [ + "setuptools" + ], + "python-constraint": [ + "setuptools" + ], + "python-crfsuite": [ + "setuptools" + ], + "python-crontab": [ + "setuptools" ], "python-csxcad": [ - "cython" + "cython", + "setuptools" + ], + "python-ctags3": [ + "setuptools" + ], + "python-daemon": [ + "setuptools" + ], + "python-datemath": [ + "setuptools" + ], + "python-dateutil": [ + "setuptools", + "setuptools-scm" + ], + "python-dbusmock": [ + "setuptools", + "setuptools-scm" + ], + "python-didl-lite": [ + "setuptools" + ], + "python-digitalocean": [ + "setuptools" + ], + "python-docx": [ + "setuptools" + ], + "python-doi": [ + "setuptools" + ], + "python-dotenv": [ + "setuptools" + ], + "python-ecobee-api": [ + "setuptools" + ], + "python-editor": [ + "setuptools" + ], + "python-engineio": [ + "setuptools" + ], + "python-etcd": [ + "setuptools" + ], + "python-ethtool": [ + "setuptools" + ], + "python-family-hub-local": [ + "setuptools" + ], + "python-fedora": [ + "setuptools" + ], + "python-flirt": [ + "setuptools" ], "python-fontconfig": [ - "cython" + "cython", + "setuptools" + ], + "python-forecastio": [ + "setuptools" + ], + "python-frontmatter": [ + "setuptools" + ], + "python-fsutil": [ + "setuptools" + ], + "python-gammu": [ + "setuptools" + ], + "python-gitlab": [ + "setuptools" ], "python-glanceclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-gnupg": [ + "setuptools" + ], + "python-google-nest": [ + "setuptools" ], "python-gvm": [ - "poetry-core" + "poetry-core", + "setuptools" ], "python-heatclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-hglib": [ + "setuptools" + ], + "python-homewizard-energy": [ + "poetry-core", + "setuptools" + ], + "python-hosts": [ + "setuptools" + ], + "python-hpilo": [ + "setuptools" + ], + "python-http-client": [ + "setuptools" + ], + "python-i18n": [ + "setuptools" + ], + "python-igraph": [ + "setuptools" + ], + "python-ipmi": [ + "setuptools" ], "python-ironicclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-izone": [ + "setuptools", + "setuptools-scm" ], "python-jenkins": [ - "pbr" + "pbr", + "setuptools" + ], + "python-jose": [ + "setuptools" + ], + "python-json-logger": [ + "setuptools" + ], + "python-jsonrpc-server": [ + "setuptools" + ], + "python-juicenet": [ + "setuptools" ], "python-kasa": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "python-keycloak": [ + "setuptools" + ], + "python-keyczar": [ + "setuptools" ], "python-keystoneclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-ldap-test": [ + "setuptools" + ], + "python-levenshtein": [ + "setuptools" + ], + "python-linux-procfs": [ + "setuptools" + ], + "python-logstash": [ + "setuptools" + ], + "python-louvain": [ + "setuptools" + ], + "python-lsp-black": [ + "setuptools" + ], + "python-lsp-jsonrpc": [ + "setuptools" + ], + "python-lsp-server": [ + "setuptools", + "setuptools-scm" + ], + "python-ly": [ + "setuptools" + ], + "python-lz4": [ + "setuptools", + "setuptools-scm" + ], + "python-lzf": [ + "setuptools" + ], + "python-lzo": [ + "setuptools" + ], + "python-magic": [ + "setuptools" ], "python-manilaclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-mapnik": [ + "setuptools" + ], + "python-markdown-math": [ + "setuptools" + ], + "python-memcached": [ + "setuptools" ], "python-miio": [ "poetry", - "poetry-core" + "poetry-core", + "setuptools" + ], + "python-mimeparse": [ + "setuptools" + ], + "python-mnist": [ + "setuptools" + ], + "python-mpv-jsonipc": [ + "setuptools" + ], + "python-multipart": [ + "setuptools" + ], + "python-mystrom": [ + "setuptools" + ], + "python-nest": [ + "setuptools" + ], + "python-nmap": [ + "setuptools" + ], + "python-nomad": [ + "setuptools" ], "python-novaclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-nvd3": [ + "setuptools" + ], + "python-oauth2": [ + "setuptools" + ], + "python-olm": [ + "setuptools" + ], + "python-opendata-transport": [ + "setuptools" ], "python-openems": [ - "cython" + "cython", + "setuptools" ], "python-openstackclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-openzwave": [ + "cython", + "setuptools" + ], + "python-openzwave-mqtt": [ + "setuptools" + ], + "python-osc": [ + "setuptools" + ], + "python-owasp-zap-v2-4": [ + "setuptools" + ], + "python-packer": [ + "setuptools" ], "python-pae": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "python-pam": [ + "setuptools" + ], + "python-periphery": [ + "setuptools" + ], + "python-picnic-api": [ + "setuptools" + ], + "python-pidfile": [ + "setuptools" + ], + "python-pipedrive": [ + "setuptools" ], "python-pkcs11": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "python-prctl": [ + "setuptools" + ], + "python-ptrace": [ + "setuptools" + ], + "python-pushover": [ + "setuptools" + ], + "python-rabbitair": [ + "setuptools" + ], + "python-rapidjson": [ + "setuptools" + ], + "python-redis-lock": [ + "setuptools" + ], + "python-registry": [ + "setuptools" + ], + "python-rtmidi": [ + "setuptools" + ], + "python-sat": [ + "setuptools" + ], + "python-simple-hipchat": [ + "setuptools" + ], + "python-slugify": [ + "setuptools" + ], + "python-smarttub": [ + "setuptools" + ], + "python-snap7": [ + "setuptools" + ], + "python-snappy": [ + "setuptools" + ], + "python-socketio": [ + "setuptools" + ], + "python-socks": [ + "setuptools" ], "python-songpal": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "python-sql": [ + "setuptools" + ], + "python-status": [ + "setuptools" + ], + "python-stdnum": [ + "setuptools" + ], + "python-string-utils": [ + "setuptools" + ], + "python-subunit": [ + "setuptools" ], "python-swiftclient": [ - "pbr" + "pbr", + "setuptools" + ], + "python-tado": [ + "setuptools" + ], + "python-telegram": [ + "setuptools" + ], + "python-telegram-bot": [ + "setuptools" + ], + "python-toolbox": [ + "setuptools" ], "python-trovo": [ - "poetry" + "poetry", + "setuptools" ], - "python_openzwave": [ - "cython" + "python-twitch-client": [ + "setuptools" + ], + "python-twitter": [ + "setuptools" + ], + "python-u2flib-host": [ + "setuptools" + ], + "python-uinput": [ + "setuptools" + ], + "python-unshare": [ + "setuptools" + ], + "python-utils": [ + "setuptools" + ], + "python-vagrant": [ + "setuptools" + ], + "python-velbus": [ + "setuptools" + ], + "python-vipaccess": [ + "setuptools" + ], + "python-vlc": [ + "setuptools" + ], + "python-whois": [ + "setuptools" + ], + "python-wink": [ + "setuptools" + ], + "python-xmp-toolkit": [ + "setuptools" + ], + "python-zbar": [ + "setuptools" + ], + "python3-application": [ + "setuptools" + ], + "python3-eventlib": [ + "setuptools" + ], + "python3-gnutls": [ + "setuptools" + ], + "python3-openid": [ + "setuptools" + ], + "python3-saml": [ + "setuptools" + ], + "pythoncatchconflictshook": [ + "setuptools" + ], + "pythondialog": [ + "setuptools" + ], + "pythonefl": [ + "setuptools" + ], + "pythonegardia": [ + "setuptools" + ], + "pythonfinder": [ + "setuptools" + ], + "pythonix": [ + "setuptools" + ], + "pythonnet": [ + "setuptools" + ], + "pythran": [ + "setuptools" + ], + "pytibber": [ + "setuptools" ], "pytile": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pytimeparse": [ + "setuptools" ], "pytkdocs": [ "pdm-pep517" ], + "pytm": [ + "setuptools" + ], + "pytmx": [ + "setuptools" + ], + "pytoml": [ + "setuptools" + ], + "pytomlpp": [ + "setuptools" + ], + "pytomorrowio": [ + "setuptools" + ], + "pytools": [ + "setuptools" + ], + "pytorch": [ + "setuptools" + ], + "pytorch-bin": [ + "setuptools" + ], + "pytorch-lightning": [ + "setuptools" + ], + "pytorch-metric-learning": [ + "setuptools" + ], + "pytorch-pfn-extras": [ + "setuptools" + ], + "pytorchwithcuda": [ + "setuptools" + ], + "pytorchwithoutcuda": [ + "setuptools" + ], + "pytraccar": [ + "poetry-core", + "setuptools" + ], + "pytradfri": [ + "setuptools" + ], + "pytrafikverket": [ + "setuptools" + ], + "pytransportnsw": [ + "setuptools" + ], + "pytransportnswv2": [ + "setuptools" + ], + "pytrends": [ + "setuptools" + ], + "pytricia": [ + "setuptools" + ], + "pyttsx3": [ + "setuptools" + ], + "pytube": [ + "setuptools" + ], + "pytun": [ + "setuptools" + ], + "pyturbojpeg": [ + "setuptools" + ], + "pytweening": [ + "setuptools" + ], + "pytwitchapi": [ + "setuptools" + ], + "pytz": [ + "setuptools" + ], + "pytz-deprecation-shim": [ + "setuptools" + ], "pytzdata": [ - "poetry" + "poetry", + "setuptools" + ], + "pyu2f": [ + "setuptools" + ], + "pyuavcan": [ + "setuptools" + ], + "pyudev": [ + "setuptools" + ], + "pyunifi": [ + "setuptools" + ], + "pyunifiprotect": [ + "setuptools" + ], + "pyupdate": [ + "setuptools" + ], + "pyupgrade": [ + "setuptools" + ], + "pyuptimerobot": [ + "setuptools" + ], + "pyusb": [ + "setuptools", + "setuptools-scm" + ], + "pyuseragents": [ + "setuptools" + ], + "pyutil": [ + "setuptools" + ], + "pyutilib": [ + "setuptools" + ], + "pyuv": [ + "setuptools" + ], + "pyvcd": [ + "setuptools", + "setuptools-scm" ], "pyvera": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pyverilog": [ + "setuptools" + ], + "pyversasense": [ + "setuptools" + ], + "pyvesync": [ + "setuptools" + ], + "pyvex": [ + "setuptools" + ], + "pyvicare": [ + "setuptools" + ], + "pyvips": [ + "setuptools" + ], + "pyvis": [ + "setuptools" + ], + "pyvisa": [ + "setuptools", + "setuptools-scm" + ], + "pyvisa-py": [ + "setuptools", + "setuptools-scm" + ], + "pyviz-comms": [ + "setuptools" + ], + "pyvizio": [ + "setuptools" + ], + "pyvlx": [ + "setuptools" + ], + "pyvmomi": [ + "setuptools" + ], + "pyvo": [ + "setuptools", + "setuptools-scm" + ], + "pyvolumio": [ + "setuptools" + ], + "pyvoro": [ + "setuptools" + ], + "pywal": [ + "setuptools" + ], + "pywatchman": [ + "setuptools" ], "pywavelets": [ - "cython" + "cython", + "setuptools" + ], + "pywayland": [ + "setuptools" ], "pywbem": [ - "pbr" + "pbr", + "setuptools" + ], + "pyweatherflowrest": [ + "setuptools" + ], + "pywebpush": [ + "setuptools" + ], + "pywebview": [ + "setuptools" ], "pywemo": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "pywerview": [ + "setuptools" + ], + "pywilight": [ + "setuptools" + ], + "pywinrm": [ + "setuptools" + ], + "pywizlight": [ + "setuptools" + ], + "pywlroots": [ + "setuptools" ], "pyworld": [ - "cython" + "cython", + "setuptools" + ], + "pyws66i": [ + "setuptools" + ], + "pyx": [ + "setuptools" + ], + "pyxattr": [ + "setuptools" + ], + "pyxb": [ + "setuptools" + ], + "pyxbe": [ + "setuptools" + ], + "pyxdg": [ + "setuptools" + ], + "pyxeoma": [ + "setuptools" + ], + "pyxiaomigateway": [ + "setuptools" + ], + "pyxl3": [ + "setuptools" + ], + "pyxnat": [ + "setuptools" ], "pyyaml": [ - "cython" + "cython", + "setuptools" ], "pyyaml-env-tag": [ - "flit-core" + "flit-core", + "setuptools" + ], + "pyzbar": [ + "setuptools" + ], + "pyzerproc": [ + "setuptools" + ], + "pyzmq": [ + "setuptools" + ], + "pyzufall": [ + "setuptools" + ], + "qcelemental": [ + "setuptools" + ], + "qcengine": [ + "setuptools" ], "qcs-api-client": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "qdarkstyle": [ + "setuptools" + ], + "qdldl": [ + "setuptools" + ], + "qiling": [ + "setuptools" + ], + "qimage2ndarray": [ + "setuptools" + ], + "qingping-ble": [ + "poetry-core", + "setuptools" + ], + "qiskit": [ + "setuptools" ], "qiskit-aer": [ - "cython" + "cython", + "setuptools" + ], + "qiskit-finance": [ + "setuptools" + ], + "qiskit-ibmq-provider": [ + "setuptools" + ], + "qiskit-ignis": [ + "setuptools" + ], + "qiskit-machine-learning": [ + "setuptools" + ], + "qiskit-nature": [ + "setuptools" + ], + "qiskit-optimization": [ + "setuptools" ], "qiskit-terra": [ - "cython" + "cython", + "setuptools" + ], + "qmk-dotty-dict": [ + "setuptools", + "setuptools-scm" + ], + "qnap-qsw": [ + "setuptools" + ], + "qnapstats": [ + "setuptools" + ], + "qrcode": [ + "setuptools" + ], + "qreactor": [ + "setuptools" + ], + "qscintilla": [ + "setuptools" + ], + "qscintilla-qt4": [ + "setuptools" + ], + "qscintilla-qt5": [ + "setuptools" ], "qstylizer": [ - "pbr" + "pbr", + "setuptools" + ], + "qt5reactor": [ + "setuptools" + ], + "qtawesome": [ + "setuptools" + ], + "qtconsole": [ + "setuptools" + ], + "qtpy": [ + "setuptools" + ], + "qualysclient": [ + "setuptools" + ], + "quamash": [ + "setuptools" + ], + "quandl": [ + "setuptools" + ], + "quantities": [ + "setuptools" + ], + "quantum-gateway": [ + "setuptools" + ], + "querystring-parser": [ + "setuptools" ], "questionary": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "queuelib": [ + "setuptools" ], "qutip": [ - "cython" + "cython", + "setuptools" + ], + "r2pipe": [ + "setuptools" + ], + "rachiopy": [ + "setuptools" + ], + "radicale-infcloud": [ + "setuptools" + ], + "radio-beam": [ + "setuptools", + "setuptools-scm" ], "radios": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "radiotherm": [ + "setuptools" + ], + "radish-bdd": [ + "setuptools" + ], + "railroad-diagrams": [ + "setuptools" + ], + "rainbowstream": [ + "setuptools" + ], + "raincloudy": [ + "setuptools" + ], + "ramlfications": [ + "setuptools" + ], + "random2": [ + "setuptools" + ], + "rangehttpserver": [ + "setuptools" + ], + "rapidfuzz": [ + "setuptools" + ], + "rapidfuzz-capi": [ + "setuptools" + ], + "rarfile": [ + "setuptools" ], "rasterio": [ + "cython", + "setuptools" + ], + "ratelim": [ + "setuptools" + ], + "ratelimit": [ + "setuptools" + ], + "ratelimiter": [ + "setuptools" + ], + "raven": [ + "setuptools" + ], + "rawkit": [ + "setuptools" + ], + "rbtools": [ + "setuptools" + ], + "rcssmin": [ + "setuptools" + ], + "rdflib": [ + "setuptools" + ], + "rdkit": [ + "setuptools" + ], + "re-assert": [ + "setuptools" + ], + "readability-lxml": [ + "setuptools" + ], + "readchar": [ + "setuptools" + ], + "readlike": [ + "setuptools" + ], + "readme": [ + "setuptools" + ], + "readme-renderer": [ + "setuptools" + ], + "readstats": [ "cython" ], + "readthedocs-sphinx-ext": [ + "setuptools" + ], + "rebulk": [ + "setuptools" + ], + "recoll": [ + "setuptools" + ], + "recommonmark": [ + "setuptools" + ], + "recordlinkage": [ + "setuptools" + ], + "redbaron": [ + "setuptools" + ], + "redis": [ + "setuptools" + ], + "rednose": [ + "setuptools" + ], "reedsolo": [ - "cython" + "cython", + "setuptools" + ], + "reflink": [ + "setuptools" ], "regenmaschine": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "regex": [ + "setuptools" + ], + "regional": [ + "setuptools" + ], + "reikna": [ + "setuptools" + ], + "related": [ + "setuptools" + ], + "relatorio": [ + "setuptools" + ], + "releases": [ + "setuptools" ], "remarshal": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "remi": [ + "setuptools" ], "renault-api": [ - "poetry-core" + "poetry-core", + "setuptools" ], "rencode": [ - "cython" + "cython", + "setuptools" + ], + "reolink": [ + "setuptools" + ], + "reorder-python-imports": [ + "setuptools" + ], + "reparser": [ + "setuptools" + ], + "repocheck": [ + "setuptools" + ], + "reportengine": [ + "flit", + "setuptools" + ], + "reportlab": [ + "setuptools" + ], + "repoze-lru": [ + "setuptools" + ], + "repoze-sphinx-autointerface": [ + "setuptools" + ], + "repoze-who": [ + "setuptools" ], "reproject": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "reqif": [ + "poetry-core", + "setuptools" + ], + "requests": [ + "setuptools" + ], + "requests-aws4auth": [ + "setuptools" ], "requests-cache": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "requests-credssp": [ + "setuptools" + ], + "requests-download": [ + "setuptools" + ], + "requests-file": [ + "setuptools" + ], + "requests-futures": [ + "setuptools" + ], + "requests-hawk": [ + "setuptools" + ], + "requests-http-signature": [ + "setuptools", + "setuptools-scm" + ], + "requests-kerberos": [ + "setuptools" ], "requests-mock": [ - "pbr" + "pbr", + "setuptools" + ], + "requests-ntlm": [ + "setuptools" + ], + "requests-oauthlib": [ + "setuptools" + ], + "requests-pkcs12": [ + "setuptools" + ], + "requests-toolbelt": [ + "setuptools" ], "requests-unixsocket": [ - "pbr" + "pbr", + "setuptools" ], "requestsexceptions": [ - "pbr" + "pbr", + "setuptools" + ], + "requirements-detector": [ + "poetry-core", + "setuptools" ], "requirements-parser": [ - "poetry-core" + "poetry-core", + "setuptools" ], "resampy": [ - "cython" + "cython", + "setuptools" + ], + "resolvelib": [ + "setuptools" + ], + "responses": [ + "setuptools" + ], + "respx": [ + "setuptools" + ], + "restfly": [ + "setuptools" + ], + "restrictedpython": [ + "setuptools" + ], + "restructuredtext-lint": [ + "setuptools" + ], + "restview": [ + "setuptools" + ], + "result": [ + "setuptools" + ], + "rethinkdb": [ + "setuptools" ], "retry": [ - "pbr" + "pbr", + "setuptools" + ], + "retry-decorator": [ + "setuptools" + ], + "retrying": [ + "setuptools" + ], + "retworkx": [ + "setuptools" + ], + "rfc3339": [ + "setuptools" + ], + "rfc3339-validator": [ + "setuptools" + ], + "rfc3986": [ + "setuptools" + ], + "rfc3987": [ + "setuptools" + ], + "rfc6555": [ + "setuptools" + ], + "rfc7464": [ + "setuptools" + ], + "rfcat": [ + "setuptools" + ], + "rflink": [ + "setuptools" ], "rich": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "rich-rst": [ + "setuptools" + ], + "ring-doorbell": [ + "setuptools" ], "rio-tiler": [ "flit-core" ], + "ripe-atlas-cousteau": [ + "setuptools" + ], + "ripe-atlas-sagan": [ + "setuptools" + ], + "riprova": [ + "setuptools" + ], "ripser": [ - "cython" + "cython", + "setuptools" + ], + "rising": [ + "setuptools" + ], + "ritassist": [ + "setuptools" + ], + "rjpl": [ + "setuptools" + ], + "rjsmin": [ + "setuptools" + ], + "rki-covid-parser": [ + "setuptools" + ], + "rlax": [ + "setuptools" + ], + "rlp": [ + "setuptools" ], "rmcl": [ - "poetry-core" + "poetry-core", + "setuptools" ], "rmfuse": [ "poetry-core" ], "rmrl": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "rnc2rng": [ + "setuptools" + ], + "rnginline": [ + "setuptools" + ], + "rns": [ + "setuptools" + ], + "robot-detection": [ + "setuptools" + ], + "robotframework": [ + "setuptools" + ], + "robotframework-databaselibrary": [ + "setuptools" + ], + "robotframework-requests": [ + "setuptools" + ], + "robotframework-selenium2library": [ + "setuptools" + ], + "robotframework-seleniumlibrary": [ + "setuptools" + ], + "robotframework-sshlibrary": [ + "setuptools" + ], + "robotstatuschecker": [ + "setuptools" + ], + "robotsuite": [ + "setuptools" + ], + "rocket-errbot": [ + "setuptools" + ], + "roku": [ + "setuptools" ], "rokuecp": [ "poetry", - "poetry-core" + "poetry-core", + "setuptools" + ], + "rollbar": [ + "setuptools" + ], + "roman": [ + "setuptools" + ], + "ronin": [ + "setuptools" ], "roombapy": [ - "poetry-core" + "poetry-core", + "setuptools" ], "roonapi": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "rope": [ + "setuptools" + ], + "ropgadget": [ + "setuptools" + ], + "ropper": [ + "setuptools" + ], + "routes": [ + "setuptools" + ], + "rova": [ + "setuptools" + ], + "rpcq": [ + "setuptools" + ], + "rpdb": [ + "setuptools" + ], + "rpi-bad-power": [ + "setuptools" + ], + "rpi-gpio": [ + "setuptools" + ], + "rpi-gpio2": [ + "setuptools" + ], + "rplcd": [ + "setuptools" + ], + "rply": [ + "setuptools" + ], + "rpmfile": [ + "setuptools", + "setuptools-scm" + ], + "rpmfluff": [ + "setuptools" + ], + "rpy2": [ + "setuptools" + ], + "rpyc": [ + "setuptools" + ], + "rq": [ + "setuptools" ], "rsa": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "rsskey": [ + "flitBuildHook", + "setuptools" + ], + "rst2ansi": [ + "setuptools" + ], + "rstcheck": [ + "poetry-core", + "setuptools" + ], + "rstcheck-core": [ + "poetry-core", + "setuptools" ], "rtmidi-python": [ - "cython" + "cython", + "setuptools" ], "rtmixer": [ - "cython" + "cython", + "setuptools" + ], + "rtoml": [ + "setuptools" + ], + "rtree": [ + "setuptools" + ], + "rtslib": [ + "setuptools" + ], + "rtsp-to-webrtc": [ + "setuptools" + ], + "ruamel-base": [ + "setuptools" + ], + "ruamel-yaml": [ + "setuptools" + ], + "ruamel-yaml-clib": [ + "setuptools" + ], + "rubymarshal": [ + "setuptools" + ], + "ruffus": [ + "setuptools" + ], + "runway-python": [ + "setuptools" + ], + "ruyaml": [ + "setuptools", + "setuptools-scm" + ], + "rx": [ + "setuptools" + ], + "rxv": [ + "setuptools", + "setuptools-scm" + ], + "rzpipe": [ + "setuptools" + ], + "s2clientprotocol": [ + "setuptools" + ], + "s3-credentials": [ + "setuptools" + ], + "s3fs": [ + "setuptools" + ], + "s3transfer": [ + "setuptools" + ], + "sabyenc": [ + "setuptools" + ], + "sabyenc3": [ + "setuptools" + ], + "sacn": [ + "setuptools" + ], + "sacred": [ + "setuptools" + ], + "sacremoses": [ + "setuptools" + ], + "safe": [ + "setuptools" + ], + "safeeyes": [ + "setuptools" + ], + "safeio": [ + "setuptools" + ], + "safety": [ + "setuptools" + ], + "sagemaker": [ + "setuptools" + ], + "salmon-mail": [ + "setuptools" + ], + "sampledata": [ + "setuptools" + ], + "samplerate": [ + "setuptools" + ], + "samsungctl": [ + "setuptools" + ], + "samsungtvws": [ + "setuptools" + ], + "sane": [ + "setuptools" ], "sane-python": [ "poetry-core" ], + "saneyaml": [ + "setuptools", + "setuptools-scm" + ], "sanic": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "sanic-auth": [ + "setuptools" + ], + "sanic-routing": [ + "setuptools" + ], + "sanic-testing": [ + "setuptools" + ], + "sansio-multipart": [ + "setuptools" + ], + "sapi-python-client": [ + "setuptools", + "setuptools-scm" + ], + "sarge": [ + "setuptools" ], "sarif-om": [ - "pbr" + "pbr", + "setuptools" + ], + "sasmodels": [ + "setuptools" ], "sat-search": [ "pytest-runner" ], + "scales": [ + "setuptools" + ], + "scancode-toolkit": [ + "setuptools" + ], + "scandir": [ + "setuptools" + ], + "scapy": [ + "setuptools" + ], + "schedule": [ + "setuptools" + ], + "schema": [ + "setuptools" + ], + "schema-salad": [ + "setuptools" + ], + "schiene": [ + "setuptools" + ], + "schwifty": [ + "setuptools" + ], "scikit-bio": [ - "cython" + "cython", + "setuptools" ], "scikit-build": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "scikit-fmm": [ + "setuptools" + ], + "scikit-fuzzy": [ + "setuptools" + ], + "scikit-hep-testdata": [ + "setuptools", + "setuptools-scm" ], "scikit-image": [ "cython" ], "scikit-learn": [ - "cython" + "cython", + "setuptools" ], "scikit-learn-extra": [ - "cython" + "cython", + "setuptools" + ], + "scikit-misc": [ + "cython", + "setuptools" + ], + "scikit-optimize": [ + "setuptools" ], "scikit-survival": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" ], "scikit-tda": [ - "cython" + "cython", + "setuptools" ], "scikitimage": [ - "cython" + "cython", + "setuptools" ], "scikitlearn": [ - "cython" + "cython", + "setuptools" ], "scikits-odes": [ - "cython" + "cython", + "setuptools" ], "scipy": [ - "cython" + "cython", + "setuptools" + ], + "scmrepo": [ + "setuptools" + ], + "scour": [ + "setuptools" + ], + "scp": [ + "setuptools" + ], + "scramp": [ + "setuptools" + ], + "scrap-engine": [ + "setuptools", + "setuptools-scm" + ], + "scrapy": [ + "setuptools" + ], + "scrapy-deltafetch": [ + "setuptools" + ], + "scrapy-fake-useragent": [ + "setuptools" + ], + "scrapy-splash": [ + "setuptools" + ], + "screeninfo": [ + "poetry-core", + "setuptools" + ], + "screenlogicpy": [ + "setuptools" + ], + "scripttest": [ + "setuptools" + ], + "scs": [ + "setuptools" + ], + "sdds": [ + "setuptools" + ], + "sdnotify": [ + "setuptools" + ], + "seaborn": [ + "flit-core", + "setuptools" ], "seabreeze": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "seatconnect": [ + "setuptools", + "setuptools-scm" ], "seccomp": [ - "cython" + "cython", + "setuptools" + ], + "secp256k1": [ + "setuptools" + ], + "secretstorage": [ + "setuptools" + ], + "secure": [ + "setuptools" + ], + "securetar": [ + "setuptools" + ], + "seekpath": [ + "setuptools" + ], + "segments": [ + "setuptools" + ], + "segno": [ + "setuptools" + ], + "selectors2": [ + "setuptools" + ], + "selenium": [ + "setuptools" + ], + "selinux": [ + "setuptools" + ], + "semantic-version": [ + "setuptools" + ], + "semver": [ + "setuptools" + ], + "send2trash": [ + "setuptools" + ], + "sendgrid": [ + "setuptools" + ], + "sense-energy": [ + "setuptools" + ], + "sensor-state-data": [ + "poetry-core", + "setuptools" + ], + "sensorpro-ble": [ + "poetry-core", + "setuptools" + ], + "sensorpush-ble": [ + "poetry-core", + "setuptools" + ], + "sentencepiece": [ + "setuptools" ], "sentinel": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "sentinels": [ + "setuptools" + ], + "sentry-sdk": [ + "setuptools" + ], + "sepaxml": [ + "setuptools" + ], + "seqdiag": [ + "setuptools" + ], + "seqeval": [ + "setuptools" + ], + "sequoia": [ + "setuptools" + ], + "serpent": [ + "setuptools" + ], + "serpy": [ + "setuptools" + ], + "servefile": [ + "setuptools" + ], + "serverlessrepo": [ + "setuptools" + ], + "service-identity": [ + "setuptools" + ], + "setproctitle": [ + "setuptools" + ], + "setupmeta": [ + "setuptools", + "setuptools-scm" + ], + "setuptools-declarative-requirements": [ + "setuptools", + "setuptools-scm" + ], + "setuptools-git": [ + "setuptools" + ], + "setuptools-lint": [ + "setuptools" + ], + "setuptools-rust": [ + "setuptools", + "setuptools-scm" + ], + "setuptools-scm": [ + "setuptools" + ], + "setuptools-scm-git-archive": [ + "setuptools", + "setuptools-scm" + ], + "setuptoolsbuildhook": [ + "setuptools" + ], + "setuptoolscheckhook": [ + "setuptools" + ], + "setuptoolstrial": [ + "setuptools" ], "seventeentrack": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "sexpdata": [ + "setuptools" ], "sfepy": [ - "cython" + "cython", + "setuptools" + ], + "sgmllib3k": [ + "setuptools" + ], + "sgp4": [ + "setuptools" + ], + "sh": [ + "setuptools" + ], + "shamir-mnemonic": [ + "setuptools" ], "shapely": [ - "cython" + "cython", + "setuptools" + ], + "sharedmem": [ + "setuptools" + ], + "sharkiq": [ + "setuptools" + ], + "sharkiqpy": [ + "setuptools" + ], + "shellescape": [ + "setuptools" + ], + "shellingham": [ + "setuptools" ], "shexjsg": [ "pbr" ], + "shiboken2": [ + "setuptools" + ], + "shippai": [ + "setuptools" + ], + "shiv": [ + "setuptools" + ], + "shodan": [ + "setuptools" + ], + "shortuuid": [ + "poetry", + "setuptools" + ], + "should-dsl": [ + "setuptools" + ], + "showit": [ + "setuptools" + ], + "shtab": [ + "setuptools", + "setuptools-scm" + ], + "shutilwhich": [ + "setuptools" + ], + "sievelib": [ + "setuptools", + "setuptools-scm" + ], + "signedjson": [ + "setuptools", + "setuptools-scm" + ], + "signify": [ + "setuptools" + ], + "sigrok": [ + "setuptools" + ], + "sigtools": [ + "setuptools", + "setuptools-scm" + ], + "simanneal": [ + "setuptools" + ], + "simber": [ + "setuptools" + ], + "simple-di": [ + "setuptools" + ], + "simple-rest-client": [ + "setuptools" + ], + "simple-rlp": [ + "setuptools" + ], + "simple-salesforce": [ + "setuptools" + ], + "simple-websocket-server": [ + "setuptools" + ], + "simpleaudio": [ + "setuptools" + ], + "simplebayes": [ + "setuptools" + ], + "simpleeval": [ + "setuptools" + ], + "simplefix": [ + "setuptools" + ], + "simplegeneric": [ + "setuptools" + ], + "simplehound": [ + "setuptools" + ], + "simplejson": [ + "setuptools" + ], + "simplekml": [ + "setuptools" + ], + "simplenote": [ + "setuptools" + ], "simplisafe-python": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "simpy": [ + "setuptools", + "setuptools-scm" ], "single-source": [ "poetry-core" ], "single-version": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "siobrultech-protocols": [ + "setuptools" + ], + "siosocks": [ + "setuptools" + ], + "sip": [ + "setuptools" + ], + "sip-4": [ + "setuptools" + ], + "six": [ + "setuptools" + ], + "sjcl": [ + "setuptools" + ], + "skein": [ + "setuptools" ], "skia-pathops": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "skidl": [ + "setuptools" + ], + "skodaconnect": [ + "setuptools", + "setuptools-scm" + ], + "skybellpy": [ + "setuptools" + ], + "skyfield": [ + "setuptools" + ], + "skytemple-dtef": [ + "setuptools" + ], + "skytemple-eventserver": [ + "setuptools" + ], + "skytemple-files": [ + "setuptools" + ], + "skytemple-icons": [ + "setuptools" + ], + "skytemple-rust": [ + "setuptools" + ], + "skytemple-ssb-debugger": [ + "setuptools" + ], + "slack-sdk": [ + "setuptools" + ], + "slackclient": [ + "setuptools" + ], + "sleepyq": [ + "setuptools" + ], + "slicedimage": [ + "setuptools" + ], + "slicer": [ + "setuptools" + ], + "slicerator": [ + "setuptools" + ], + "slither-analyzer": [ + "setuptools" + ], + "slixmpp": [ + "setuptools" + ], + "slob": [ + "setuptools" ], "slowapi": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "slugid": [ + "setuptools" + ], + "sly": [ + "setuptools" + ], + "smart-meter-texas": [ + "setuptools" + ], + "smart-open": [ + "setuptools" + ], + "smarthab": [ + "setuptools" + ], + "smartypants": [ + "setuptools" + ], + "smbprotocol": [ + "setuptools" + ], + "smbus-cffi": [ + "setuptools" + ], + "smbus2": [ + "setuptools" + ], + "smdebug-rulesconfig": [ + "setuptools" + ], + "smhi-pkg": [ + "setuptools" + ], + "smmap": [ + "setuptools" + ], + "smpplib": [ + "setuptools" + ], + "snakebite": [ + "setuptools" + ], + "snakeviz": [ + "setuptools" + ], + "snapcast": [ + "setuptools" + ], + "snapshottest": [ + "setuptools" + ], + "sniffio": [ + "setuptools" + ], + "snitun": [ + "setuptools" + ], + "snowballstemmer": [ + "setuptools" + ], + "snowflake-connector-python": [ + "setuptools" + ], + "snowflake-sqlalchemy": [ + "setuptools" + ], + "snscrape": [ + "setuptools", + "setuptools-scm" + ], + "snuggs": [ + "setuptools" + ], + "social-auth-app-django": [ + "setuptools" + ], + "social-auth-core": [ + "setuptools" + ], + "socialscan": [ + "setuptools" + ], + "socid-extractor": [ + "setuptools" + ], + "socketio-client": [ + "setuptools" + ], + "sockjs": [ + "setuptools" + ], + "sockjs-tornado": [ + "setuptools" ], "socksio": [ - "flit-core" + "flit-core", + "setuptools" + ], + "socksipy-branch": [ + "setuptools" + ], + "soco": [ + "setuptools" + ], + "softlayer": [ + "setuptools" + ], + "solaredge": [ + "setuptools" + ], + "solax": [ + "setuptools", + "setuptools-scm" + ], + "solc-select": [ + "setuptools" ], "solo-python": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "somajo": [ + "setuptools" + ], + "somecomfort": [ + "setuptools" + ], + "somfy-mylink-synergy": [ + "setuptools" + ], + "sonarr": [ + "setuptools" + ], + "sopel": [ + "setuptools" + ], + "sorl-thumbnail": [ + "setuptools", + "setuptools-scm" + ], + "sortedcollections": [ + "setuptools" + ], + "sortedcontainers": [ + "setuptools" + ], + "soundcloud-v2": [ + "setuptools" + ], + "sounddevice": [ + "setuptools" + ], + "soundfile": [ + "setuptools" ], "soupsieve": [ - "hatchling" + "hatchling", + "setuptools" + ], + "spacy": [ + "setuptools" + ], + "spacy-alignments": [ + "setuptools" + ], + "spacy-legacy": [ + "setuptools" + ], + "spacy-loggers": [ + "setuptools" ], "spacy-pkuseg": [ - "cython" + "cython", + "setuptools" + ], + "spacy-transformers": [ + "setuptools" + ], + "spake2": [ + "setuptools" + ], + "spark-parser": [ + "setuptools" + ], + "sparklines": [ + "setuptools" ], "sparqlslurper": [ "pbr" ], + "sparse": [ + "setuptools" + ], + "spdx-tools": [ + "setuptools" + ], + "speaklater": [ + "setuptools" + ], + "speaklater3": [ + "setuptools" + ], + "spectral-cube": [ + "setuptools", + "setuptools-scm" + ], + "speedtest-cli": [ + "setuptools" + ], + "spglib": [ + "setuptools" + ], + "sphfile": [ + "setuptools" + ], + "sphinx": [ + "cython", + "setuptools" + ], + "sphinx-argparse": [ + "setuptools" + ], + "sphinx-autobuild": [ + "setuptools" + ], + "sphinx-autodoc-typehints": [ + "setuptools" + ], + "sphinx-basic-ng": [ + "setuptools" + ], + "sphinx-better-theme": [ + "setuptools" + ], + "sphinx-book-theme": [ + "setuptools" + ], + "sphinx-comments": [ + "setuptools" + ], + "sphinx-copybutton": [ + "setuptools" + ], + "sphinx-design": [ + "flit-core", + "flitBuildHook", + "setuptools" + ], + "sphinx-external-toc": [ + "flit-core", + "flitBuildHook", + "setuptools" + ], + "sphinx-fortran": [ + "setuptools" + ], "sphinx-inline-tabs": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" ], "sphinx-jinja": [ - "pbr" + "pbr", + "setuptools" + ], + "sphinx-jupyterbook-latex": [ + "setuptools" + ], + "sphinx-markdown-parser": [ + "setuptools" + ], + "sphinx-material": [ + "setuptools" + ], + "sphinx-mdinclude": [ + "flit-core", + "flitBuildHook", + "setuptools" + ], + "sphinx-multitoc-numbering": [ + "setuptools" + ], + "sphinx-pypi-upload": [ + "setuptools" + ], + "sphinx-pytest": [ + "flit-core", + "flitBuildHook", + "setuptools" + ], + "sphinx-rtd-theme": [ + "setuptools" + ], + "sphinx-serve": [ + "setuptools" + ], + "sphinx-testing": [ + "setuptools" + ], + "sphinx-thebe": [ + "setuptools" + ], + "sphinx-togglebutton": [ + "setuptools" + ], + "sphinxcontrib-actdiag": [ + "setuptools" ], "sphinxcontrib-apidoc": [ - "pbr" + "pbr", + "setuptools" + ], + "sphinxcontrib-applehelp": [ + "setuptools" + ], + "sphinxcontrib-autoapi": [ + "setuptools" + ], + "sphinxcontrib-bibtex": [ + "setuptools" + ], + "sphinxcontrib-blockdiag": [ + "setuptools" + ], + "sphinxcontrib-confluencebuilder": [ + "setuptools" + ], + "sphinxcontrib-devhelp": [ + "setuptools" + ], + "sphinxcontrib-excel-table": [ + "setuptools" ], "sphinxcontrib-fulltoc": [ - "pbr" + "pbr", + "setuptools" + ], + "sphinxcontrib-htmlhelp": [ + "setuptools" + ], + "sphinxcontrib-httpdomain": [ + "setuptools" + ], + "sphinxcontrib-jsmath": [ + "setuptools" + ], + "sphinxcontrib-katex": [ + "setuptools" + ], + "sphinxcontrib-newsfeed": [ + "setuptools" + ], + "sphinxcontrib-nwdiag": [ + "setuptools" + ], + "sphinxcontrib-openapi": [ + "setuptools", + "setuptools-scm" + ], + "sphinxcontrib-plantuml": [ + "setuptools" + ], + "sphinxcontrib-programoutput": [ + "setuptools" + ], + "sphinxcontrib-qthelp": [ + "setuptools" + ], + "sphinxcontrib-seqdiag": [ + "setuptools" + ], + "sphinxcontrib-serializinghtml": [ + "setuptools" ], "sphinxcontrib-spelling": [ - "pbr" + "pbr", + "setuptools" + ], + "sphinxcontrib-tikz": [ + "setuptools" + ], + "sphinxcontrib-websupport": [ + "setuptools" + ], + "sphinxext-opengraph": [ + "setuptools" ], "spiderpy": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "spidev": [ + "setuptools" + ], + "spinners": [ + "setuptools" + ], + "splinter": [ + "setuptools" + ], + "spotipy": [ + "setuptools" + ], + "spsdk": [ + "setuptools" + ], + "spur": [ + "setuptools" + ], + "spyder": [ + "setuptools" + ], + "spyder-kernels": [ + "setuptools" + ], + "spyse-python": [ + "setuptools" + ], + "sqlalchemy": [ + "cython", + "setuptools" + ], + "sqlalchemy-citext": [ + "setuptools" + ], + "sqlalchemy-continuum": [ + "setuptools" + ], + "sqlalchemy-i18n": [ + "setuptools" + ], + "sqlalchemy-jsonfield": [ + "setuptools", + "setuptools-scm" ], "sqlalchemy-migrate": [ - "pbr" + "pbr", + "setuptools" ], - "sqlalchemy_migrate": [ - "pbr" + "sqlalchemy-mixins": [ + "setuptools" + ], + "sqlalchemy-utils": [ + "setuptools" + ], + "sqlglot": [ + "setuptools" + ], + "sqlite-fts4": [ + "setuptools" + ], + "sqlite-utils": [ + "setuptools" + ], + "sqlitedict": [ + "setuptools" + ], + "sqlmap": [ + "setuptools" + ], + "sqlobject": [ + "setuptools" + ], + "sqlparse": [ + "setuptools" + ], + "srp": [ + "setuptools" + ], + "srpenergy": [ + "setuptools" + ], + "srptools": [ + "setuptools" ], "srsly": [ - "cython" + "cython", + "setuptools" + ], + "srt": [ + "setuptools" + ], + "srvlookup": [ + "setuptools" + ], + "ssdeep": [ + "setuptools" ], "ssdp": [ - "pbr" + "pbr", + "setuptools", + "setuptools-scm" + ], + "sseclient": [ + "setuptools" + ], + "sseclient-py": [ + "setuptools" + ], + "ssh-mitm": [ + "setuptools" + ], + "sshpubkeys": [ + "setuptools" + ], + "sshtunnel": [ + "setuptools" + ], + "sslib": [ + "setuptools" ], "stack-data": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "stanza": [ + "setuptools" + ], + "starkbank-ecdsa": [ + "setuptools" + ], + "starlette": [ + "setuptools" + ], + "starline": [ + "setuptools" + ], + "stashy": [ + "setuptools" ], "staticjinja": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "statistics": [ + "setuptools" ], "statmake": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "statsd": [ + "setuptools" ], "statsmodels": [ - "cython" + "cython", + "setuptools" + ], + "stdiomask": [ + "setuptools" + ], + "stdlib-list": [ + "setuptools" + ], + "steamodd": [ + "setuptools" + ], + "stem": [ + "setuptools" ], "stestr": [ - "pbr" + "pbr", + "setuptools" ], "stevedore": [ - "pbr" + "pbr", + "setuptools" + ], + "stickytape": [ + "setuptools" + ], + "stim": [ + "setuptools" + ], + "stm32loader": [ + "setuptools" + ], + "stone": [ + "setuptools" + ], + "stookalert": [ + "setuptools" + ], + "stopit": [ + "setuptools" + ], + "strategies": [ + "setuptools" + ], + "stravalib": [ + "setuptools" ], "strawberry-graphql": [ - "poetry" + "poetry", + "setuptools" + ], + "streamdeck": [ + "setuptools" ], "streaming-form-data": [ - "cython" + "cython", + "setuptools" + ], + "streamlabswater": [ + "setuptools" + ], + "streamz": [ + "setuptools" + ], + "strenum": [ + "setuptools" + ], + "strict-rfc3339": [ + "setuptools" + ], + "strictyaml": [ + "setuptools" + ], + "stringcase": [ + "setuptools" + ], + "stringly": [ + "setuptools" + ], + "stripe": [ + "setuptools" + ], + "striprtf": [ + "setuptools" ], "structlog": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" ], "structlog-sentry": [ "poetry-core" ], + "stumpy": [ + "setuptools" + ], + "stups-cli-support": [ + "setuptools" + ], + "stups-fullstop": [ + "setuptools" + ], + "stups-pierone": [ + "setuptools" + ], + "stups-tokens": [ + "setuptools" + ], + "stups-zign": [ + "setuptools" + ], + "stytra": [ + "setuptools" + ], + "subarulink": [ + "setuptools" + ], + "subliminal": [ + "setuptools" + ], + "subprocess-tee": [ + "setuptools", + "setuptools-scm" + ], + "subprocess32": [ + "setuptools", + "setuptools-scm" + ], + "subunit": [ + "setuptools" + ], "subunit2sql": [ - "pbr" + "pbr", + "setuptools" + ], + "subzerod": [ + "setuptools" ], "sumo": [ - "cython" + "cython", + "setuptools" + ], + "sumtypes": [ + "setuptools" + ], + "sunpy": [ + "setuptools", + "setuptools-scm" + ], + "sunwatcher": [ + "setuptools" + ], + "superqt": [ + "setuptools", + "setuptools-scm" + ], + "supervise-api": [ + "setuptools" + ], + "supervisor": [ + "setuptools" + ], + "sure": [ + "setuptools" ], "surepy": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "surt": [ + "setuptools" + ], + "survey": [ + "setuptools" + ], + "svg-path": [ + "setuptools" + ], + "svglib": [ + "setuptools" + ], + "svgwrite": [ + "setuptools" + ], + "swagger-spec-validator": [ + "setuptools" + ], + "swagger-ui-bundle": [ + "setuptools" ], "swift": [ - "pbr" + "pbr", + "setuptools" + ], + "swisshydrodata": [ + "setuptools" ], "swspotify": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "sybil": [ + "setuptools" ], "symengine": [ - "cython" + "cython", + "setuptools" + ], + "sympy": [ + "setuptools" + ], + "syncer": [ + "setuptools" + ], + "synergy": [ + "setuptools" ], "synologydsm-api": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "syslog-rfc5424-formatter": [ + "setuptools" + ], + "systembridge": [ + "setuptools" + ], + "systemd": [ + "setuptools" + ], + "sysv-ipc": [ + "setuptools" + ], + "tableaudocumentapi": [ + "setuptools" ], "tables": [ - "cython" + "cython", + "setuptools" + ], + "tablib": [ + "setuptools", + "setuptools-scm" + ], + "tabula-py": [ + "setuptools", + "setuptools-scm" + ], + "tabulate": [ + "setuptools" + ], + "tabview": [ + "setuptools" + ], + "tadasets": [ + "setuptools" + ], + "tag-expressions": [ + "setuptools" + ], + "tago": [ + "setuptools" + ], + "tahoma-api": [ + "setuptools" + ], + "tailer": [ + "setuptools" ], "tailscale": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "tank-utility": [ + "setuptools" + ], + "tappy": [ + "setuptools" ], "tarsafe": [ "poetry" ], + "tasklib": [ + "setuptools" + ], + "taskw": [ + "setuptools" + ], + "tatsu": [ + "setuptools" + ], + "taxi": [ + "setuptools" + ], + "tblib": [ + "setuptools" + ], + "tbm-utils": [ + "setuptools" + ], + "tcxparser": [ + "setuptools" + ], + "tcxreader": [ + "setuptools" + ], + "teamcity-messages": [ + "setuptools" + ], + "telegram": [ + "setuptools" + ], + "telegraph": [ + "setuptools" + ], + "telethon": [ + "setuptools" + ], + "telethon-session-sqlalchemy": [ + "setuptools" + ], + "teletype": [ + "setuptools" + ], + "telfhash": [ + "setuptools" + ], + "tellduslive": [ + "setuptools" + ], + "temescal": [ + "setuptools" + ], "tempest": [ - "pbr" + "pbr", + "setuptools" + ], + "tempita": [ + "setuptools" + ], + "tempora": [ + "setuptools", + "setuptools-scm" ], "tenacity": [ - "pbr" + "pbr", + "setuptools", + "setuptools-scm" ], - "terminaltables": [ - "poetry" + "tensorboard": [ + "setuptools" + ], + "tensorboard-data-server": [ + "setuptools" + ], + "tensorboard-plugin-profile": [ + "setuptools" + ], + "tensorboard-plugin-wit": [ + "setuptools" + ], + "tensorboardx": [ + "setuptools" + ], + "tensorflow": [ + "setuptools" + ], + "tensorflow-bin": [ + "setuptools" + ], + "tensorflow-bin-2": [ + "setuptools" + ], + "tensorflow-build": [ + "setuptools" + ], + "tensorflow-build-2": [ + "setuptools" + ], + "tensorflow-datasets": [ + "setuptools" + ], + "tensorflow-estimator": [ + "setuptools" + ], + "tensorflow-estimator-2": [ + "setuptools" + ], + "tensorflow-metadata": [ + "setuptools" + ], + "tensorflow-probability": [ + "setuptools" + ], + "tensorflow-tensorboard": [ + "setuptools" + ], + "tensorflow-tensorboard-2": [ + "setuptools" + ], + "tensorflowwithcuda": [ + "setuptools" + ], + "tensorflowwithoutcuda": [ + "setuptools" + ], + "tensorly": [ + "setuptools" + ], + "tensorrt": [ + "setuptools" + ], + "termcolor": [ + "hatch-vcs", + "hatchling", + "setuptools" ], "terminado": [ - "hatchling" + "hatchling", + "setuptools" + ], + "terminaltables": [ + "poetry", + "setuptools" + ], + "termplotlib": [ + "setuptools" + ], + "termstyle": [ + "setuptools" ], "tern": [ - "pbr" + "pbr", + "setuptools" + ], + "tesla-powerwall": [ + "setuptools" ], "tesla-wall-connector": [ - "poetry-core" + "poetry-core", + "setuptools" ], "teslajsonpy": [ - "poetry-core" + "poetry-core", + "setuptools" ], "tess": [ - "cython" + "cython", + "setuptools" ], "tesserocr": [ - "cython" + "cython", + "setuptools" + ], + "test-tube": [ + "setuptools" + ], + "testcontainers": [ + "setuptools" + ], + "testfixtures": [ + "setuptools" + ], + "testing-common-database": [ + "setuptools" + ], + "testing-postgresql": [ + "setuptools" ], "testpath": [ "flit", - "flit-core" + "flit-core", + "setuptools" ], "testrepository": [ - "pbr" + "pbr", + "setuptools" ], "testresources": [ - "pbr" + "pbr", + "setuptools" + ], + "testscenarios": [ + "setuptools" ], "testtools": [ - "pbr" + "pbr", + "setuptools" + ], + "text-unidecode": [ + "setuptools" + ], + "textacy": [ + "setuptools" + ], + "textdistance": [ + "setuptools" + ], + "textfsm": [ + "setuptools" + ], + "textile": [ + "setuptools" + ], + "texttable": [ + "setuptools" ], "textual": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "textwrap3": [ + "setuptools" + ], + "textx": [ + "setuptools" + ], + "tflearn": [ + "setuptools" + ], + "tgcrypto": [ + "setuptools" + ], + "theano": [ + "setuptools" + ], + "theano-pymc": [ + "setuptools" + ], + "theanowithcuda": [ + "setuptools" + ], + "theanowithoutcuda": [ + "setuptools" + ], + "thermobeacon-ble": [ + "poetry-core", + "setuptools" + ], + "thermopro-ble": [ + "poetry-core", + "setuptools" + ], + "thespian": [ + "setuptools" ], "thinc": [ - "cython" + "cython", + "setuptools" + ], + "threadloop": [ + "setuptools" + ], + "threadpool": [ + "setuptools" ], "threadpoolctl": [ - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "threat9-test-bed": [ + "setuptools", + "setuptools-scm" + ], + "three-merge": [ + "setuptools" + ], + "thrift": [ + "setuptools" + ], + "thrift-sasl": [ + "setuptools" ], "thriftpy2": [ - "cython" + "cython", + "setuptools" + ], + "tidylib": [ + "setuptools" + ], + "tifffile": [ + "setuptools" + ], + "tika": [ + "setuptools" ], "tikzplotlib": [ - "flit-core" + "flit-core", + "setuptools" + ], + "tilequant": [ + "setuptools" + ], + "tiler": [ + "setuptools" + ], + "tilt-ble": [ + "poetry-core", + "setuptools" + ], + "time-machine": [ + "setuptools" + ], + "timeago": [ + "setuptools" + ], + "timecop": [ + "setuptools" + ], + "timelib": [ + "setuptools" + ], + "timeout-decorator": [ + "setuptools" + ], + "timetagger": [ + "setuptools" + ], + "timezonefinder": [ + "poetry-core", + "setuptools" ], "tinycss": [ - "cython" + "cython", + "setuptools" ], "tinycss2": [ - "flitBuildHook" + "flit-core", + "flitBuildHook", + "setuptools" ], "tinydb": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "tinyobjloader-py": [ + "setuptools" + ], + "tissue": [ + "setuptools" + ], + "titlecase": [ + "setuptools", + "setuptools-scm" + ], + "tkinter": [ + "setuptools" + ], + "tld": [ + "setuptools" + ], + "tldextract": [ + "setuptools", + "setuptools-scm" + ], + "tls-parser": [ + "setuptools" + ], + "tlsh": [ + "setuptools" + ], + "tlslite-ng": [ + "setuptools" + ], + "tmb": [ + "setuptools" + ], + "todoist": [ + "setuptools" ], "toggl-cli": [ - "pbr" + "pbr", + "setuptools" + ], + "token-bucket": [ + "setuptools" + ], + "tokenize-rt": [ + "setuptools" + ], + "tokenizers": [ + "setuptools" + ], + "tokenlib": [ + "setuptools" + ], + "tololib": [ + "setuptools", + "setuptools-scm" + ], + "toml": [ + "setuptools" + ], + "toml-adapt": [ + "poetry-core", + "setuptools" ], "toml-cli": [ "poetry" @@ -1697,107 +16311,1690 @@ "poetry" ], "tomli": [ - "flit-core" + "flit-core", + "setuptools" ], "tomli-w": [ - "flit-core" + "flit-core", + "setuptools" ], "tomlkit": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "toolz": [ + "setuptools" + ], + "toonapi": [ + "setuptools" + ], + "toposort": [ + "setuptools" + ], + "torch": [ + "setuptools" + ], + "torch-bin": [ + "setuptools" + ], + "torch-tb-profiler": [ + "setuptools" + ], + "torchaudio-bin": [ + "setuptools" + ], + "torchgpipe": [ + "setuptools" + ], + "torchinfo": [ + "setuptools" + ], + "torchmetrics": [ + "setuptools" + ], + "torchvision": [ + "setuptools" + ], + "torchvision-bin": [ + "setuptools" + ], + "torchwithcuda": [ + "setuptools" + ], + "torchwithoutcuda": [ + "setuptools" + ], + "tornado": [ + "setuptools" + ], + "torpy": [ + "setuptools" + ], + "torrequest": [ + "setuptools" ], "tortoise-orm": [ "poetry-core" ], + "total-connect-client": [ + "setuptools" + ], + "towncrier": [ + "setuptools" + ], + "tox": [ + "setuptools", + "setuptools-scm" + ], + "tpm2-pytss": [ + "setuptools", + "setuptools-scm" + ], + "tqdm": [ + "setuptools", + "setuptools-scm" + ], "traceback2": [ - "pbr" + "pbr", + "setuptools" + ], + "tracing": [ + "setuptools" + ], + "trackpy": [ + "setuptools" ], "traitlets": [ - { "buildSystem": "flit-core", "until": "5.2.1" }, - { "buildSystem": "hatchling", "from": "5.2.1" } + { + "buildSystem": "flit-core", + "until": "5.2.1" + }, + { + "buildSystem": "hatchling", + "from": "5.2.1" + }, + "setuptools" + ], + "traits": [ + "setuptools" + ], + "traitsui": [ + "setuptools" + ], + "traittypes": [ + "setuptools" + ], + "transaction": [ + "setuptools" + ], + "transformers": [ + "setuptools" + ], + "transforms3d": [ + "setuptools" + ], + "transitions": [ + "setuptools" + ], + "translatepy": [ + "setuptools" + ], + "translationstring": [ + "setuptools" + ], + "transliterate": [ + "setuptools" ], "transmission-rpc": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "transmissionrpc": [ + "setuptools" + ], + "trectools": [ + "setuptools" + ], + "treelog": [ + "setuptools" ], "treeo": [ - "poetry-core" + "poetry-core", + "setuptools" ], "treex": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "treq": [ + "setuptools" + ], + "trezor": [ + "setuptools" + ], + "trezor-agent": [ + "setuptools" + ], + "trfl": [ + "setuptools" + ], + "trimesh": [ + "setuptools" + ], + "trio": [ + "setuptools" + ], + "trio-asyncio": [ + "setuptools" + ], + "trio-websocket": [ + "setuptools" + ], + "trueskill": [ + "setuptools" + ], + "trustme": [ + "setuptools" + ], + "trytond": [ + "setuptools" ], "ttls": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ttp": [ + "poetry-core", + "setuptools" + ], + "ttp-templates": [ + "poetry-core", + "setuptools" + ], + "tubes": [ + "setuptools" + ], + "tubeup": [ + "setuptools" + ], + "tumpa": [ + "setuptools" + ], + "tunigo": [ + "setuptools" + ], + "turnt": [ + "flitBuildHook", + "setuptools" + ], + "tuya-iot-py-sdk": [ + "setuptools" + ], + "tuyaha": [ + "setuptools" + ], + "tweedledum": [ + "setuptools" + ], + "tweepy": [ + "setuptools" ], "twentemilieu": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "twiggy": [ + "setuptools" + ], + "twilio": [ + "setuptools" + ], + "twill": [ + "setuptools" + ], + "twine": [ + "setuptools", + "setuptools-scm" + ], + "twinkly-client": [ + "setuptools" + ], + "twisted": [ + "setuptools" + ], + "twitch-python": [ + "setuptools" + ], + "twitchapi": [ + "setuptools" + ], + "twitter": [ + "setuptools", + "setuptools-scm" + ], + "twitter-common-collections": [ + "setuptools" + ], + "twitter-common-confluence": [ + "setuptools" + ], + "twitter-common-dirutil": [ + "setuptools" + ], + "twitter-common-lang": [ + "setuptools" + ], + "twitter-common-log": [ + "setuptools" + ], + "twitter-common-options": [ + "setuptools" + ], + "twitterapi": [ + "setuptools" + ], + "twofish": [ + "setuptools" + ], + "txaio": [ + "setuptools" + ], + "txamqp": [ + "setuptools" + ], + "txdbus": [ + "setuptools" + ], + "txgithub": [ + "setuptools" + ], + "txredisapi": [ + "setuptools" + ], + "txrequests": [ + "setuptools" + ], + "txtorcon": [ + "setuptools" + ], + "txzmq": [ + "setuptools" + ], + "typecode": [ + "setuptools", + "setuptools-scm" + ], + "typecode-libmagic": [ + "setuptools" + ], + "typed-ast": [ + "setuptools" + ], + "typed-settings": [ + "setuptools" + ], + "typeguard": [ + "setuptools", + "setuptools-scm" ], "typer": [ - "flit-core" + "flit-core", + "setuptools" + ], + "types-awscrt": [ + "poetry-core" + ], + "types-colorama": [ + "setuptools" + ], + "types-dateutil": [ + "setuptools" + ], + "types-decorator": [ + "setuptools" + ], + "types-docutils": [ + "setuptools" + ], + "types-enum34": [ + "setuptools" + ], + "types-freezegun": [ + "setuptools" + ], + "types-futures": [ + "setuptools" + ], + "types-html5lib": [ + "setuptools" + ], + "types-ipaddress": [ + "setuptools" + ], + "types-jsonschema": [ + "setuptools" + ], + "types-protobuf": [ + "setuptools" + ], + "types-pytz": [ + "setuptools" + ], + "types-pyyaml": [ + "setuptools" + ], + "types-redis": [ + "setuptools" + ], + "types-requests": [ + "setuptools" + ], + "types-s3transfer": [ + "poetry-core" + ], + "types-setuptools": [ + "setuptools" + ], + "types-tabulate": [ + "setuptools" + ], + "types-toml": [ + "setuptools" + ], + "types-typed-ast": [ + "setuptools" + ], + "types-urllib3": [ + "setuptools" + ], + "typesentry": [ + "setuptools" + ], + "typesystem": [ + "setuptools" ], "typical": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "typing": [ + "setuptools" ], "typing-extensions": [ "flit-core" ], + "typing-inspect": [ + "setuptools" + ], + "typish": [ + "setuptools" + ], + "typogrify": [ + "setuptools" + ], + "tzdata": [ + "setuptools" + ], + "tzlocal": [ + "setuptools" + ], + "u-msgpack-python": [ + "setuptools" + ], + "ua-parser": [ + "setuptools" + ], + "uamqp": [ + "setuptools" + ], + "uarray": [ + "setuptools" + ], + "uasiren": [ + "setuptools", + "setuptools-scm" + ], + "uc-micro-py": [ + "setuptools" + ], + "udatetime": [ + "setuptools" + ], + "ueagle": [ + "setuptools" + ], + "ueberzug": [ + "setuptools" + ], + "ufo2ft": [ + "setuptools", + "setuptools-scm" + ], + "ufolib2": [ + "setuptools", + "setuptools-scm" + ], + "ufonormalizer": [ + "setuptools", + "setuptools-scm" + ], + "ufoprocessor": [ + "setuptools", + "setuptools-scm" + ], "uharfbuzz": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" + ], + "ujson": [ + "setuptools", + "setuptools-scm" + ], + "ukkonen": [ + "setuptools" + ], + "ukpostcodeparser": [ + "setuptools" + ], + "ukrainealarm": [ + "setuptools", + "setuptools-scm" + ], + "ultraheat-api": [ + "setuptools" + ], + "umalqurra": [ + "setuptools" + ], + "umap-learn": [ + "setuptools" + ], + "unasync": [ + "setuptools" + ], + "uncertainties": [ + "setuptools" + ], + "unicode-slugify": [ + "setuptools" + ], + "unicodecsv": [ + "setuptools" + ], + "unicodedata2": [ + "setuptools" + ], + "unicorn": [ + "setuptools" + ], + "unicrypto": [ + "setuptools" + ], + "unidecode": [ + "setuptools" + ], + "unidic-lite": [ + "setuptools" + ], + "unidiff": [ + "setuptools" + ], + "unifi": [ + "setuptools" + ], + "unifi-discovery": [ + "poetry-core", + "setuptools" + ], + "unifiled": [ + "setuptools" + ], + "unify": [ + "setuptools" + ], + "units": [ + "setuptools" + ], + "unittest-data-provider": [ + "setuptools" + ], + "unittest-xml-reporting": [ + "setuptools" + ], + "unittest2": [ + "setuptools" + ], + "univers": [ + "setuptools", + "setuptools-scm" ], "unpaddedbase64": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "unrardll": [ + "setuptools" + ], + "untangle": [ + "setuptools" + ], + "untokenize": [ + "setuptools" + ], + "uonet-request-signer-hebe": [ + "setuptools" + ], + "upass": [ + "setuptools" + ], + "upb-lib": [ + "setuptools" + ], + "upcloud-api": [ + "setuptools" + ], + "update-checker": [ + "setuptools" + ], + "update-copyright": [ + "setuptools" + ], + "update-dotdee": [ + "setuptools" + ], + "upnpy": [ + "setuptools" + ], + "uproot": [ + "setuptools" + ], + "uproot3": [ + "setuptools" + ], + "uproot3-methods": [ + "setuptools" + ], + "uptime": [ + "setuptools" + ], + "uptime-kuma-monitor": [ + "setuptools" + ], + "uranium": [ + "setuptools" + ], + "uri-template": [ + "setuptools" + ], + "uritemplate": [ + "setuptools" + ], + "uritools": [ + "setuptools" ], "url-normalize": [ - "poetry-core" + "poetry-core", + "setuptools" ], - "vehicle": [ - "poetry-core" + "urlextract": [ + "setuptools" ], - "virtualenv": [ - "cython" + "urlgrabber": [ + "setuptools" ], - "virtualenvwrapper": [ - "pbr" + "urllib3": [ + "setuptools" ], - "vispy": [ - "cython" + "urlpy": [ + "setuptools" ], - "wakeonlan": [ - "poetry-core" + "urwid": [ + "setuptools" ], - "wcmatch": [ + "urwid-readline": [ + "setuptools" + ], + "urwidtrees": [ + "setuptools" + ], + "us": [ + "setuptools" + ], + "usbrelay-py": [ + "setuptools" + ], + "usbtmc": [ + "setuptools" + ], + "user-agents": [ + "setuptools" + ], + "userpath": [ + "setuptools" + ], + "ush": [ + "setuptools" + ], + "utils": [ + "setuptools" + ], + "uuid": [ + "setuptools" + ], + "uvcclient": [ + "setuptools" + ], + "uvicorn": [ + "hatchling", + "setuptools" + ], + "uvloop": [ + "cython", + "setuptools" + ], + "vaa": [ + "flit-core", + "setuptools" + ], + "validate-email": [ + "setuptools" + ], + "validators": [ + "setuptools" + ], + "validobj": [ + "flit", + "setuptools" + ], + "validphys2": [ + "setuptools" + ], + "vallox-websocket-api": [ + "setuptools" + ], + "vapoursynth": [ + "cython", + "setuptools" + ], + "variants": [ + "setuptools", + "setuptools-scm" + ], + "varint": [ + "setuptools" + ], + "vcrpy": [ + "setuptools" + ], + "vcver": [ + "setuptools" + ], + "vcversioner": [ + "setuptools" + ], + "vdf": [ + "setuptools" + ], + "vdirsyncer": [ + "setuptools", + "setuptools-scm" + ], + "vector": [ "hatchling" ], + "vega": [ + "setuptools" + ], + "vega-datasets": [ + "setuptools" + ], + "vehicle": [ + "poetry-core", + "setuptools" + ], + "velbus-aio": [ + "setuptools" + ], + "venstarcolortouch": [ + "setuptools" + ], + "venusian": [ + "setuptools" + ], + "verboselogs": [ + "setuptools" + ], + "versioneer": [ + "setuptools" + ], + "versionfinder": [ + "setuptools" + ], + "versioningit": [ + "setuptools" + ], + "versiontag": [ + "setuptools" + ], + "versiontools": [ + "setuptools" + ], + "vertica-python": [ + "setuptools" + ], + "veryprettytable": [ + "setuptools" + ], + "videocr": [ + "setuptools" + ], + "vidstab": [ + "setuptools" + ], + "viewstate": [ + "setuptools" + ], + "vilfo-api-client": [ + "setuptools", + "setuptools-scm" + ], + "vincenty": [ + "setuptools" + ], + "vine": [ + "setuptools" + ], + "virtkey": [ + "setuptools" + ], + "virtual-display": [ + "setuptools" + ], + "virtualenv": [ + "cython", + "setuptools", + "setuptools-scm" + ], + "virtualenv-clone": [ + "setuptools" + ], + "virtualenvwrapper": [ + "pbr", + "setuptools" + ], + "visitor": [ + "setuptools" + ], + "vispy": [ + "cython", + "setuptools", + "setuptools-scm" + ], + "viv-utils": [ + "setuptools" + ], + "vivisect": [ + "setuptools" + ], + "vmprof": [ + "setuptools" + ], + "vncdo": [ + "setuptools" + ], + "vobject": [ + "setuptools" + ], + "volkszaehler": [ + "setuptools" + ], + "voluptuous": [ + "setuptools" + ], + "voluptuous-serialize": [ + "setuptools" + ], + "volvooncall": [ + "setuptools" + ], + "vowpalwabbit": [ + "setuptools" + ], + "vpk": [ + "setuptools" + ], + "vqgan-jax": [ + "setuptools" + ], + "vsts": [ + "setuptools" + ], + "vsts-cd-manager": [ + "setuptools" + ], + "vsure": [ + "setuptools" + ], + "vt-py": [ + "setuptools" + ], + "vulcan-api": [ + "setuptools" + ], + "vultr": [ + "setuptools" + ], + "vulture": [ + "setuptools" + ], + "vxi11": [ + "setuptools" + ], + "vyper": [ + "setuptools", + "setuptools-scm" + ], + "w3lib": [ + "setuptools" + ], + "wadllib": [ + "setuptools" + ], + "waitress": [ + "setuptools" + ], + "waitress-django": [ + "setuptools" + ], + "wakeonlan": [ + "poetry-core", + "setuptools" + ], + "wallbox": [ + "setuptools" + ], + "wand": [ + "setuptools" + ], + "wandb": [ + "setuptools" + ], + "waqiasync": [ + "setuptools" + ], + "warcio": [ + "setuptools" + ], + "warlock": [ + "poetry-core", + "setuptools" + ], + "warrant": [ + "setuptools" + ], + "warrant-lite": [ + "setuptools" + ], + "wasabi": [ + "setuptools" + ], + "wasmer": [ + "setuptools" + ], + "wasmer-compiler-cranelift": [ + "setuptools" + ], + "wasmer-compiler-llvm": [ + "setuptools" + ], + "wasmer-compiler-singlepass": [ + "setuptools" + ], + "wasmerpackages-wasmer": [ + "setuptools" + ], + "wasmerpackages-wasmer-compiler-cranelift": [ + "setuptools" + ], + "wasmerpackages-wasmer-compiler-llvm": [ + "setuptools" + ], + "wasmerpackages-wasmer-compiler-singlepass": [ + "setuptools" + ], + "watchdog": [ + "setuptools" + ], + "watchfiles": [ + "setuptools" + ], + "watchgod": [ + "setuptools" + ], + "waterfurnace": [ + "setuptools" + ], + "watermark": [ + "setuptools" + ], + "wavedrom": [ + "setuptools", + "setuptools-scm" + ], + "wavefile": [ + "setuptools" + ], + "wavinsentio": [ + "setuptools" + ], + "wazeroutecalculator": [ + "setuptools" + ], + "wcag-contrast-ratio": [ + "setuptools" + ], + "wcmatch": [ + "hatchling", + "setuptools" + ], + "wcwidth": [ + "setuptools" + ], "weasyprint": [ - "flit-core" + "flit-core", + "setuptools" + ], + "web": [ + "setuptools" + ], + "web-cache": [ + "setuptools" + ], + "web3": [ + "setuptools" + ], + "webargs": [ + "setuptools" + ], + "webassets": [ + "setuptools" + ], + "webauthn": [ + "setuptools" + ], + "webcolors": [ + "setuptools" + ], + "webdav4": [ + "setuptools", + "setuptools-scm" + ], + "webdavclient3": [ + "setuptools" + ], + "webencodings": [ + "setuptools" + ], + "webexteamssdk": [ + "setuptools" + ], + "webhelpers": [ + "setuptools" + ], + "webob": [ + "setuptools" + ], + "weboob": [ + "setuptools" + ], + "webrtcvad": [ + "setuptools" + ], + "websocket-client": [ + "setuptools" + ], + "websockets": [ + "setuptools" + ], + "websockify": [ + "setuptools" + ], + "webssh": [ + "setuptools" + ], + "webtest": [ + "setuptools" + ], + "webtest-aiohttp": [ + "setuptools" + ], + "webthing": [ + "setuptools" + ], + "weconnect": [ + "setuptools" + ], + "weconnect-mqtt": [ + "setuptools" + ], + "werkzeug": [ + "setuptools" + ], + "west": [ + "setuptools" + ], + "wfuzz": [ + "setuptools" + ], + "wget": [ + "setuptools" + ], + "whatthepatch": [ + "setuptools" + ], + "wheel": [ + "setuptools" + ], + "wheel-filename": [ + "setuptools" + ], + "wheel-inspect": [ + "setuptools" + ], + "whichcraft": [ + "setuptools" + ], + "whirlpool-sixth-sense": [ + "setuptools" + ], + "whisper": [ + "setuptools" + ], + "whispers": [ + "setuptools" + ], + "whitenoise": [ + "setuptools" + ], + "whodap": [ + "setuptools" + ], + "whois": [ + "setuptools" + ], + "whoosh": [ + "setuptools" + ], + "widgetsnbextension": [ + "jupyter-packaging", + "setuptools" + ], + "widlparser": [ + "setuptools" + ], + "wiffi": [ + "setuptools" + ], + "wifi": [ + "setuptools" + ], + "willow": [ + "setuptools" + ], + "winacl": [ + "setuptools" + ], + "winsspi": [ + "setuptools" + ], + "wktutils": [ + "setuptools" ], "wled": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "woob": [ + "setuptools" + ], + "woodblock": [ + "setuptools" ], "word2vec": [ - "cython" + "cython", + "setuptools", + "setuptools-scm" ], "wordcloud": [ - "cython" + "cython", + "setuptools" + ], + "wordfreq": [ + "setuptools" + ], + "wrapio": [ + "setuptools" + ], + "wrapt": [ + "setuptools" + ], + "wrf-python": [ + "setuptools" + ], + "ws4py": [ + "setuptools" + ], + "wsdiscovery": [ + "setuptools" + ], + "wsgi-intercept": [ + "setuptools" + ], + "wsgidav": [ + "setuptools" + ], + "wsgiprox": [ + "setuptools" + ], + "wsgiproxy2": [ + "setuptools" + ], + "wsgitools": [ + "setuptools" + ], + "wsnsimpy": [ + "setuptools" + ], + "wsproto": [ + "setuptools" + ], + "wtf-peewee": [ + "setuptools" + ], + "wtforms": [ + "setuptools" + ], + "wurlitzer": [ + "setuptools" + ], + "wxpython-4-0": [ + "setuptools" + ], + "wxpython-4-1": [ + "setuptools" + ], + "x11-hash": [ + "setuptools" + ], + "x256": [ + "setuptools" + ], + "xapian": [ + "setuptools" + ], + "xapp": [ + "setuptools" + ], + "xarray": [ + "setuptools", + "setuptools-scm" + ], + "xarray-einstats": [ + "flit-core", + "setuptools" + ], + "xattr": [ + "setuptools" + ], + "xbox-webapi": [ + "setuptools" + ], + "xboxapi": [ + "setuptools" + ], + "xcffib": [ + "setuptools" ], "xdg": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "xdis": [ + "setuptools" + ], + "xdot": [ + "setuptools" + ], + "xhtml2pdf": [ + "setuptools" + ], + "xiaomi-ble": [ + "poetry-core", + "setuptools" + ], + "xkbcommon": [ + "setuptools" + ], + "xkcdpass": [ + "setuptools" + ], + "xknx": [ + "setuptools" + ], + "xlib": [ + "setuptools", + "setuptools-scm" + ], + "xlrd": [ + "setuptools" + ], + "xlsx2csv": [ + "setuptools" + ], + "xlsxwriter": [ + "setuptools" + ], + "xlwt": [ + "setuptools" + ], + "xmind": [ + "setuptools" + ], + "xml-marshaller": [ + "setuptools" + ], + "xml2rfc": [ + "setuptools" + ], + "xmldiff": [ + "setuptools" + ], + "xmljson": [ + "setuptools" + ], + "xmlschema": [ + "setuptools" + ], + "xmlsec": [ + "setuptools", + "setuptools-scm" + ], + "xmltodict": [ + "setuptools" + ], + "xmodem": [ + "setuptools" + ], + "xnd": [ + "setuptools" ], "xpath-expressions": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "xpybutil": [ + "setuptools" + ], + "xsdata": [ + "setuptools" + ], + "xstatic": [ + "setuptools" + ], + "xstatic-bootbox": [ + "setuptools" + ], + "xstatic-bootstrap": [ + "setuptools" + ], + "xstatic-jquery": [ + "setuptools" + ], + "xstatic-jquery-file-upload": [ + "setuptools" + ], + "xstatic-jquery-ui": [ + "setuptools" + ], + "xstatic-pygments": [ + "setuptools" + ], + "xtensor-python": [ + "setuptools" + ], + "xvfbwrapper": [ + "setuptools" + ], + "xxh": [ + "setuptools" + ], + "xxhash": [ + "setuptools", + "setuptools-scm" + ], + "yabadaba": [ + "setuptools" + ], + "yacs": [ + "setuptools" + ], + "yahooweather": [ + "setuptools" + ], + "yalesmartalarmclient": [ + "setuptools" + ], + "yalexs": [ + "setuptools" + ], + "yalexs-ble": [ + "poetry-core", + "setuptools" + ], + "yamale": [ + "setuptools" + ], + "yamlfix": [ + "setuptools" + ], + "yamllint": [ + "setuptools" + ], + "yamlloader": [ + "setuptools" + ], + "yamlordereddictloader": [ + "setuptools" + ], + "yanc": [ + "setuptools" + ], + "yangson": [ + "setuptools", + "setuptools-scm" + ], + "yapf": [ + "setuptools" + ], + "yappi": [ + "setuptools" + ], + "yapsy": [ + "setuptools" + ], + "yara-python": [ + "setuptools" + ], + "yarg": [ + "setuptools" + ], + "yarl": [ + "setuptools" ], "yaspin": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "yaswfp": [ + "setuptools" + ], + "yattag": [ + "setuptools" + ], + "ydiff": [ + "setuptools" + ], + "yeelight": [ + "setuptools" + ], + "yfinance": [ + "setuptools" ], "yoda": [ "cython" ], + "yolink-api": [ + "setuptools" + ], + "youless-api": [ + "setuptools" + ], + "youtube-dl": [ + "setuptools" + ], + "youtube-dl-light": [ + "setuptools" + ], + "youtube-search": [ + "setuptools" + ], + "youtube-search-python": [ + "setuptools" + ], + "youtube-transcript-api": [ + "setuptools" + ], + "yowsup": [ + "setuptools" + ], + "yoyo-migrations": [ + "setuptools" + ], + "yq": [ + "setuptools", + "setuptools-scm" + ], + "yt-dlp": [ + "setuptools" + ], + "yt-dlp-light": [ + "setuptools" + ], "yte": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "ytmusicapi": [ + "setuptools" + ], + "yubico-client": [ + "setuptools" + ], + "yutto": [ + "poetry-core", + "setuptools" + ], + "z3": [ + "setuptools" + ], + "z3c-checkversions": [ + "setuptools" + ], + "zadnegoale": [ + "setuptools" + ], + "zarr": [ + "setuptools", + "setuptools-scm" + ], + "zc-buildout": [ + "setuptools" + ], + "zc-buildout221": [ + "setuptools" + ], + "zc-lockfile": [ + "setuptools" + ], + "zconfig": [ + "setuptools" + ], + "zcs": [ + "setuptools" + ], + "zdaemon": [ + "setuptools" + ], + "zeep": [ + "setuptools" + ], + "zeroc-ice": [ + "setuptools" + ], + "zeroconf": [ + "setuptools" + ], + "zerorpc": [ + "setuptools" ], "zeversolarlocal": [ "flit-core", - "flitBuildHook" + "flitBuildHook", + "setuptools" + ], + "zfec": [ + "setuptools" + ], + "zha-quirks": [ + "setuptools" + ], + "zict": [ + "setuptools" + ], + "zigpy": [ + "setuptools" + ], + "zigpy-cc": [ + "setuptools" + ], + "zigpy-deconz": [ + "setuptools" + ], + "zigpy-xbee": [ + "setuptools" + ], + "zigpy-zigate": [ + "setuptools" + ], + "zigpy-znp": [ + "setuptools" + ], + "zimports": [ + "setuptools" + ], + "zipp": [ + "setuptools", + "setuptools-scm" + ], + "zipstream": [ + "setuptools" + ], + "zipstream-new": [ + "setuptools" + ], + "zipstream-ng": [ + "setuptools" + ], + "zm-py": [ + "setuptools" + ], + "zodb": [ + "setuptools" + ], + "zodbpickle": [ + "setuptools" + ], + "zope-broken": [ + "setuptools" + ], + "zope-cachedescriptors": [ + "setuptools" + ], + "zope-component": [ + "setuptools" + ], + "zope-configuration": [ + "setuptools" + ], + "zope-contenttype": [ + "setuptools" + ], + "zope-copy": [ + "setuptools" + ], + "zope-deferredimport": [ + "setuptools" + ], + "zope-deprecation": [ + "setuptools" + ], + "zope-dottedname": [ + "setuptools" + ], + "zope-event": [ + "setuptools" + ], + "zope-exceptions": [ + "setuptools" + ], + "zope-filerepresentation": [ + "setuptools" + ], + "zope-hookable": [ + "setuptools" + ], + "zope-i18nmessageid": [ + "setuptools" + ], + "zope-interface": [ + "setuptools" + ], + "zope-lifecycleevent": [ + "setuptools" + ], + "zope-location": [ + "setuptools" + ], + "zope-proxy": [ + "setuptools" + ], + "zope-schema": [ + "setuptools" + ], + "zope-size": [ + "setuptools" + ], + "zope-testbrowser": [ + "setuptools" + ], + "zope-testing": [ + "setuptools" + ], + "zope-testrunner": [ + "setuptools" + ], + "zopfli": [ + "setuptools", + "setuptools-scm" + ], + "zstandard": [ + "setuptools" + ], + "zstd": [ + "setuptools" + ], + "zulip": [ + "setuptools" + ], + "zwave-js-server-python": [ + "setuptools" ], "zwave-me-ws": [ - "poetry-core" + "poetry-core", + "setuptools" + ], + "zxcvbn": [ + "setuptools" ] } diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix index 7efb61e98a9f..bcf38f77049d 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix @@ -1,6 +1,7 @@ { pkgs ? import { } , lib ? pkgs.lib , stdenv ? pkgs.stdenv +, poetryLib }: let @@ -37,6 +38,8 @@ let ( # Flit only works on Python3 if (attr == "flit-core" || attr == "flit" || attr == "hatchling") && !self.isPy3k then drv + else if drv == null then null + else if drv ? overridePythonAttrs == false then drv else drv.overridePythonAttrs ( old: @@ -56,6 +59,8 @@ let in lib.composeManyExtensions [ + # normalize all the names + (self: super: poetryLib.normalizePackageSet super) # NixOps (self: super: @@ -80,22 +85,11 @@ lib.composeManyExtensions [ systems) buildSystems) - # Build systems with conditionals - (self: super: { - - platformdirs = - if lib.versionAtLeast super.platformdirs.version "2.5.2" - then addBuildSystem { inherit self; drv = super.platformdirs; attr = "hatchling"; extraAttrs = [ "hatch-vcs" ]; } - else super.platformdirs; - - }) - # Build fixes (self: super: let inherit (self.python) stdenv; inherit (pkgs.buildPackages) pkg-config; - inherit (pkgs) buildPackages; pyBuildPackages = self.python.pythonForBuild.pkgs; selectQt5 = version: @@ -108,7 +102,7 @@ lib.composeManyExtensions [ { automat = super.automat.overridePythonAttrs ( - old: rec { + old: { propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.m2r ]; } ); @@ -152,7 +146,7 @@ lib.composeManyExtensions [ ); argcomplete = super.argcomplete.overridePythonAttrs ( - old: rec { + old: { buildInputs = (old.buildInputs or [ ]) ++ [ self.importlib-metadata ]; } ); @@ -164,7 +158,7 @@ lib.composeManyExtensions [ ); astroid = super.astroid.overridePythonAttrs ( - old: rec { + old: { buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ]; } ); @@ -193,13 +187,37 @@ lib.composeManyExtensions [ dontUseCmakeConfigure = true; } ); - - bcrypt = super.bcrypt.overridePythonAttrs ( - old: { - buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libffi ]; - } - ); - + bcrypt = + let + getCargoHash = version: { + "4.0.0" = "sha256-HvfRLyUhlXVuvxWrtSDKx3rMKJbjvuiMcDY6g+pYFS0="; + }.${version} or ( + lib.warn "Unknown bcrypt version: '${version}'. Please update getCargoHash." lib.fakeHash + ); + sha256 = getCargoHash super.bcrypt.version; + in + super.bcrypt.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) + ++ [ pkgs.libffi ] + ++ lib.optionals (lib.versionAtLeast old.version "4" && stdenv.isDarwin) + [ pkgs.darwin.apple_sdk.frameworks.Security pkgs.libiconv ]; + nativeBuildInputs = with pkgs; + (old.nativeBuildInputs or [ ]) + ++ lib.optionals (lib.versionAtLeast old.version "4") + (with pkgs.rustPlatform; [ rust.rustc rust.cargo cargoSetupHook self.setuptools-rust ]); + } // lib.optionalAttrs (lib.versionAtLeast old.version "4") rec { + cargoDeps = + pkgs.rustPlatform.fetchCargoTarball + { + src = old.src; + sourceRoot = "${old.pname}-${old.version}/src/_bcrypt"; + name = "${old.pname}-${old.version}"; + sha256 = getCargoHash old.version; + }; + cargoRoot = "src/_bcrypt"; + } + ); bjoern = super.bjoern.overridePythonAttrs ( old: { buildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.libev ]; @@ -276,6 +294,12 @@ lib.composeManyExtensions [ ) ); + contourpy = super.contourpy.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) ++ [ self.pybind11 ]; + } + ); + cloudflare = super.cloudflare.overridePythonAttrs ( old: { postPatch = '' @@ -326,6 +350,7 @@ lib.composeManyExtensions [ "36.0.2" = "1a0ni1a3dbv2dvh6gx2i54z8v5j9m6asqg97kkv7gqb1ivihsbp8"; "37.0.2" = "sha256-qvrxvneoBXjP96AnUPyrtfmCnZo+IriHR5HbtWQ5Gk8="; "37.0.4" = "sha256-f8r6QclTwkgK20CNe9i65ZOqvSUeDc4Emv6BFBhh1hI"; + "38.0.1" = "sha256-o8l13fnfEUvUdDasq3LxSPArozRHKVsZfQg9DNR6M6Q="; }.${version} or ( lib.warn "Unknown cryptography version: '${version}'. Please update getCargoHash." lib.fakeHash ); @@ -344,7 +369,8 @@ lib.composeManyExtensions [ ++ lib.optional (!self.isPyPy) pyBuildPackages.cffi ++ lib.optional (lib.versionAtLeast old.version "3.5") (with pkgs.rustPlatform; [ cargoSetupHook rust.cargo rust.rustc ]); - buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.openssl ] + buildInputs = (old.buildInputs or [ ]) + ++ [ (if lib.versionAtLeast old.version "37" then pkgs.openssl_3 else pkgs.openssl_1_1) ] ++ lib.optionals stdenv.isDarwin [ pkgs.darwin.apple_sdk.frameworks.Security pkgs.libiconv ]; propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ self.cffi ]; } // lib.optionalAttrs (lib.versionAtLeast old.version "3.4" && lib.versionOlder old.version "3.5") { @@ -624,6 +650,11 @@ lib.composeManyExtensions [ outputs = [ "out" "dev" ]; }); + gunicorn = super.gunicorn.overridePythonAttrs (old: { + # actually needs setuptools as a runtime dependency + propagatedBuildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ]; + }); + h3 = super.h3.overridePythonAttrs ( old: { preBuild = (old.preBuild or "") + '' @@ -834,8 +865,17 @@ lib.composeManyExtensions [ buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.yajl ]; }); + jsonschema = + if lib.versionAtLeast super.jsonschema.version "4.0.0" + then + super.jsonschema.overridePythonAttrs + (old: { + propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.importlib-resources ]; + }) + else super.jsonschema; + jupyter = super.jupyter.overridePythonAttrs ( - old: rec { + old: { # jupyter is a meta-package. Everything relevant comes from the # dependencies. It does however have a jupyter.py file that conflicts # with jupyter-core so this meta solves this conflict. @@ -848,7 +888,7 @@ lib.composeManyExtensions [ }); jupyterlab-widgets = super.jupyterlab-widgets.overridePythonAttrs ( - old: rec { + old: { buildInputs = (old.buildInputs or [ ]) ++ [ self.jupyter-packaging ]; } ); @@ -1089,11 +1129,11 @@ lib.composeManyExtensions [ excludes = [ "pyproject.toml" ]; }) ]; - buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools-scm-git-archive ]; + buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools self.setuptools-scm self.setuptools-scm-git-archive ]; } )) else super.molecule.overridePythonAttrs (old: { - buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools-scm-git-archive ]; + buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools self.setuptools-scm self.setuptools-scm-git-archive ]; }); mpi4py = super.mpi4py.overridePythonAttrs ( @@ -1153,7 +1193,7 @@ lib.composeManyExtensions [ url = "https://github.com/python/mypy/commit/e7869f05751561958b946b562093397027f6d5fa.patch"; sha256 = "sha256-waIZ+m3tfvYE4HJ8kL6rN/C4fMjvLEe9UoPbt9mHWIM="; }) - ] ++ lib.optionals (lib.strings.versionAtLeast old.version "0.960") [ + ] ++ lib.optionals ((lib.strings.versionAtLeast old.version "0.960") && (lib.strings.versionOlder old.version "0.971")) [ (pkgs.fetchpatch { url = "https://github.com/python/mypy/commit/2004ae023b9d3628d9f09886cbbc20868aee8554.patch"; sha256 = "sha256-y+tXvgyiECO5+66YLvaje8Bz5iPvfWNIBJcsnZ2nOdI="; @@ -1224,6 +1264,12 @@ lib.composeManyExtensions [ } ); + omegaconf = super.omegaconf.overridePythonAttrs ( + old: { + nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.jdk ]; + } + ); + open3d = super.open3d.overridePythonAttrs (old: { buildInputs = (old.buildInputs or [ ]) ++ (with pkgs; [ udev @@ -1232,13 +1278,16 @@ lib.composeManyExtensions [ autoPatchelfIgnoreMissingDeps = true; }); - opencv-python = super.opencv-python.overridePythonAttrs ( + _opencv-python-override = old: { nativeBuildInputs = [ pkgs.cmake ] ++ old.nativeBuildInputs; buildInputs = [ self.scikit-build ] ++ (old.buildInputs or [ ]); dontUseCmakeConfigure = true; - } - ); + }; + + opencv-python = super.opencv-python.overridePythonAttrs self._opencv-python-override; + + opencv-python-headless = super.opencv-python.overridePythonAttrs self._opencv-python-override; opencv-contrib-python = super.opencv-contrib-python.overridePythonAttrs ( old: { @@ -1249,19 +1298,35 @@ lib.composeManyExtensions [ ); openexr = super.openexr.overridePythonAttrs ( - old: rec { + old: { buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.openexr pkgs.ilmbase ]; NIX_CFLAGS_COMPILE = [ "-I${pkgs.openexr.dev}/include/OpenEXR" "-I${pkgs.ilmbase.dev}/include/OpenEXR" ]; } ); + openvino = super.openvino.overridePythonAttrs ( + old: { + buildInputs = [ + pkgs.ocl-icd + pkgs.hwloc + pkgs.tbb + pkgs.numactl + pkgs.libxml2 + ] ++ (old.buildInputs or [ ]); + } + ); + orjson = let getCargoHash = version: { "3.6.7" = "sha256-sz2k9podPB6QSptkyOu7+BoVTrKhefizRtYU+MICPt4="; "3.6.8" = "sha256-vpfceVtYkU09xszNIihY1xbqGWieqDquxwsAmDH8jd4="; "3.7.2" = "sha256-2U37IhftNYjH7sV7Nh51YpR/WjmPmmzX/aGuHsFgwf4="; - }.${version} or null; + "3.7.9" = "sha256-QHzAhjHgm4XLxY2zUdnIsd/WWMI7dJLQQAvTXC+2asQ="; + "3.8.0" = "sha256-8k0DetamwLqkdcg8V/D2J5ja6IJSLi50CE+ZjFa7Hdc="; + }.${version} or ( + lib.warn "Unknown orjson version: '${version}'. Please update getCargoHash." lib.fakeHash + ); in super.orjson.overridePythonAttrs (old: { cargoDeps = pkgs.rustPlatform.fetchCargoTarball { @@ -1318,7 +1383,7 @@ lib.composeManyExtensions [ }); parsel = super.parsel.overridePythonAttrs ( - old: rec { + old: { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.pytest-runner ]; } ); @@ -1351,30 +1416,52 @@ lib.composeManyExtensions [ ); pillow = super.pillow.overridePythonAttrs ( - old: { + old: + let + preConfigure = (old.preConfigure or "") + pkgs.python3.pkgs.pillow.preConfigure; + in + { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkg-config self.pytest-runner ]; buildInputs = with pkgs; (old.buildInputs or [ ]) ++ [ freetype libjpeg zlib libtiff libwebp tcl lcms2 ] ++ lib.optionals (lib.versionAtLeast old.version "7.1.0") [ xorg.libxcb ] ++ lib.optionals (self.isPyPy) [ tk xorg.libX11 ]; + preConfigure = lib.optional (old.format != "wheel") preConfigure; } ); - poetry-core = super.poetry-core.overridePythonAttrs (old: { - # "Vendor" dependencies (for build-system support) - postPatch = '' - echo "import sys" >> poetry/__init__.py - for path in $propagatedBuildInputs; do - echo "sys.path.insert(0, \"$path\")" >> poetry/__init__.py - done - ''; + poetry-core = super.poetry-core.overridePythonAttrs (old: + let + initFile = + if lib.versionOlder super.poetry-core.version "1.1" + then "poetry/__init__.py" + else "./src/poetry/core/__init__.py"; + in + { + # "Vendor" dependencies (for build-system support) + postPatch = '' + find . - # Propagating dependencies leads to issues downstream - # We've already patched poetry to prefer "vendored" dependencies - postFixup = '' - rm $out/nix-support/propagated-build-inputs - ''; + echo "import sys" >> ${initFile} + for path in $propagatedBuildInputs; do + echo "sys.path.insert(0, \"$path\")" >> ${initFile} + done + ''; + + # Propagating dependencies leads to issues downstream + # We've already patched poetry to prefer "vendored" dependencies + postFixup = '' + rm $out/nix-support/propagated-build-inputs + ''; + }); + + # Requires poetry which isn't available during bootstrap + poetry-plugin-export = super.poetry-plugin-export.overridePythonAttrs (old: { + dontUsePythonImportsCheck = true; + pipInstallFlags = [ + "--no-deps" + ]; }); portend = super.portend.overridePythonAttrs ( @@ -1666,6 +1753,11 @@ lib.composeManyExtensions [ in super.pyqt5.overridePythonAttrs ( old: { + postPatch = '' + # Confirm license + sed -i s/"if tool == 'pep517':"/"if True:"/ project.py + ''; + dontConfigure = true; dontWrapQtApps = true; nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ @@ -1840,7 +1932,7 @@ lib.composeManyExtensions [ ); rockset = super.rockset.overridePythonAttrs ( - old: rec { + old: { postPatch = '' cp ./setup_rockset.py ./setup.py ''; @@ -1994,6 +2086,12 @@ lib.composeManyExtensions [ ''; }); + suds = super.suds.overridePythonAttrs (old: { + # Fix naming convention shenanigans. + # https://github.com/suds-community/suds/blob/a616d96b070ca119a532ff395d4a2a2ba42b257c/setup.py#L648 + SUDS_PACKAGE = "suds"; + }); + systemd-python = super.systemd-python.overridePythonAttrs (old: { buildInputs = old.buildInputs ++ [ pkgs.systemd ]; nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkg-config ]; @@ -2287,7 +2385,7 @@ lib.composeManyExtensions [ # For some reason the toml dependency of tqdm declared here: # https://github.com/tqdm/tqdm/blob/67130a23646ae672836b971e1086b6ae4c77d930/pyproject.toml#L2 # is not translated correctly to a nix dependency. - tqdm = super.tqdm.overrideAttrs ( + tqdm = super.tqdm.overridePythonAttrs ( old: { buildInputs = [ super.toml ] ++ (old.buildInputs or [ ]); } diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pep425.nix b/pkgs/development/tools/poetry2nix/poetry2nix/pep425.nix index 00c33956edd1..d5723b854560 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/pep425.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/pep425.nix @@ -99,7 +99,7 @@ let filtered = builtins.filter filterWheel filesWithoutSources; choose = files: let - osxMatches = [ "12_0" "11_0" "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ]; + osxMatches = [ "12_0" "11_0" "10_15" "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ]; linuxMatches = [ "manylinux1_" "manylinux2010_" "manylinux2014_" "manylinux_" "any" ]; chooseLinux = x: lib.take 1 (findBestMatches linuxMatches x); chooseOSX = x: lib.take 1 (findBestMatches osxMatches x); diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix index 868599bde689..85cd8f0788f7 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix @@ -18,17 +18,19 @@ poetry2nix.mkPoetryApplication { # "Vendor" dependencies (for build-system support) postPatch = '' - echo "import sys" >> poetry/__init__.py + # Figure out the location of poetry.core + # As poetry.core is using the same root import name as the poetry package and the python module system wont look for the root + # in the separate second location we need to link poetry.core to poetry + POETRY_CORE=$(python -c 'import poetry.core; import os.path; print(os.path.dirname(poetry.core.__file__))') + + echo "import sys" >> src/poetry/__init__.py for path in $propagatedBuildInputs; do - echo "sys.path.insert(0, \"$path\")" >> poetry/__init__.py + echo "sys.path.insert(0, \"$path\")" >> src/poetry/__init__.py done ''; postInstall = '' - # Figure out the location of poetry.core - # As poetry.core is using the same root import name as the poetry package and the python module system wont look for the root - # in the separate second location we need to link poetry.core to poetry - ln -s $(python -c 'import poetry.core; import os.path; print(os.path.dirname(poetry.core.__file__))') $out/${python.sitePackages}/poetry/core + ln -s $POETRY_CORE $out/${python.sitePackages}/poetry/core mkdir -p "$out/share/bash-completion/completions" "$out/bin/poetry" completions bash > "$out/share/bash-completion/completions/poetry" diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock index 5d1e6d671dfb..a72c2a50de81 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock +++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock @@ -1,44 +1,27 @@ -[[package]] -name = "atomicwrites" -version = "1.4.0" -description = "Atomic file writes." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - [[package]] name = "attrs" -version = "21.4.0" +version = "22.1.0" description = "Classes Without Boilerplate" -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - -[package.extras] -dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"] -docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] -tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"] - -[[package]] -name = "cachecontrol" -version = "0.12.6" -description = "httplib2 caching for requests" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.dependencies] -lockfile = {version = ">=0.9", optional = true, markers = "extra == \"filecache\""} -msgpack = ">=0.5.2" -requests = "*" +python-versions = ">=3.5" [package.extras] -filecache = ["lockfile (>=0.9)"] -redis = ["redis (>=2.10.5)"] +dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"] +docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] +tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] +tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] [[package]] -name = "cachecontrol" +name = "backports.cached-property" +version = "1.0.2" +description = "cached_property() - computed once per instance, cached as attribute" +category = "main" +optional = false +python-versions = ">=3.6.0" + +[[package]] +name = "CacheControl" version = "0.12.11" description = "httplib2 caching for requests" category = "main" @@ -63,17 +46,17 @@ optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [package.extras] -redis = ["redis (>=3.3.6,<4.0.0)"] memcached = ["python-memcached (>=1.59,<2.0)"] msgpack = ["msgpack-python (>=0.5,<0.6)"] +redis = ["redis (>=3.3.6,<4.0.0)"] [[package]] name = "certifi" -version = "2021.10.8" +version = "2022.9.24" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.6" [[package]] name = "cffi" @@ -95,37 +78,27 @@ optional = false python-versions = ">=3.6.1" [[package]] -name = "chardet" -version = "4.0.0" -description = "Universal encoding detector for Python 2 and 3" +name = "charset-normalizer" +version = "2.1.1" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6.0" + +[package.extras] +unicode_backport = ["unicodedata2"] [[package]] name = "cleo" -version = "0.8.1" +version = "1.0.0a5" description = "Cleo allows you to create beautiful and testable command-line interfaces." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.7,<4.0" [package.dependencies] -clikit = ">=0.6.0,<0.7.0" - -[[package]] -name = "clikit" -version = "0.6.2" -description = "CliKit is a group of utilities to build beautiful and testable command line interfaces." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.dependencies] -crashtest = {version = ">=0.3.0,<0.4.0", markers = "python_version >= \"3.6\" and python_version < \"4.0\""} -pastel = ">=0.2.0,<0.3.0" -pylev = ">=1.3,<2.0" -typing-extensions = {version = ">=3.6,<4.0", markers = "python_version >= \"3.5\" and python_full_version < \"3.5.4\""} +crashtest = ">=0.3.1,<0.4.0" +pylev = ">=1.3.0,<2.0.0" [[package]] name = "colorama" @@ -137,14 +110,17 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [[package]] name = "coverage" -version = "5.5" +version = "6.5.0" description = "Code coverage measurement for Python" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +python-versions = ">=3.7" + +[package.dependencies] +tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} [package.extras] -toml = ["toml"] +toml = ["tomli"] [[package]] name = "crashtest" @@ -156,26 +132,7 @@ python-versions = ">=3.6,<4.0" [[package]] name = "cryptography" -version = "3.2.1" -description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -category = "main" -optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" - -[package.dependencies] -cffi = ">=1.8,<1.11.3 || >1.11.3" -six = ">=1.4.1" - -[package.extras] -docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] -docstest = ["doc8", "pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] -pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] -ssh = ["bcrypt (>=3.1.5)"] -test = ["pytest (>=3.6.0,!=3.9.0,!=3.9.1,!=3.9.2)", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] - -[[package]] -name = "cryptography" -version = "37.0.4" +version = "38.0.1" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." category = "main" optional = false @@ -186,31 +143,81 @@ cffi = ">=1.12" [package.extras] docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] -docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] -sdist = ["setuptools_rust (>=0.11.4)"] +sdist = ["setuptools-rust (>=0.11.4)"] ssh = ["bcrypt (>=3.1.5)"] -test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] +test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"] + +[[package]] +name = "deepdiff" +version = "5.8.1" +description = "Deep Difference and Search of any Python object/data." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +ordered-set = ">=4.1.0,<4.2.0" + +[package.extras] +cli = ["clevercsv (==0.7.1)", "click (==8.0.3)", "pyyaml (==5.4.1)", "toml (==0.10.2)"] [[package]] name = "distlib" -version = "0.3.4" +version = "0.3.6" description = "Distribution utilities" category = "main" optional = false python-versions = "*" +[[package]] +name = "dulwich" +version = "0.20.46" +description = "Python Git Library" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +urllib3 = ">=1.25" + +[package.extras] +fastimport = ["fastimport"] +https = ["urllib3 (>=1.24.1)"] +paramiko = ["paramiko"] +pgp = ["gpg"] + +[[package]] +name = "execnet" +version = "1.9.0" +description = "execnet: rapid multi-Python deployment" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.extras] +testing = ["pre-commit"] + [[package]] name = "filelock" -version = "3.2.1" +version = "3.8.0" description = "A platform independent file lock." category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.7" [package.extras] -docs = ["furo (>=2021.8.17b43)", "sphinx (>=4.1)", "sphinx-autodoc-typehints (>=1.12)"] -testing = ["coverage (>=4)", "pytest (>=4)", "pytest-cov", "pytest-timeout (>=1.4.2)"] +docs = ["furo (>=2022.6.21)", "sphinx (>=5.1.1)", "sphinx-autodoc-typehints (>=1.19.1)"] +testing = ["covdefaults (>=2.2)", "coverage (>=6.4.2)", "pytest (>=7.1.2)", "pytest-cov (>=3)", "pytest-timeout (>=2.1)"] + +[[package]] +name = "flatdict" +version = "4.0.1" +description = "Python module for interacting with nested dicts as a single level dict with delimited keys." +category = "dev" +optional = false +python-versions = "*" [[package]] name = "html5lib" @@ -225,7 +232,7 @@ six = ">=1.9" webencodings = "*" [package.extras] -all = ["genshi", "chardet (>=2.2)", "lxml"] +all = ["chardet (>=2.2)", "genshi", "lxml"] chardet = ["chardet (>=2.2)"] genshi = ["genshi"] lxml = ["lxml"] @@ -240,51 +247,54 @@ python-versions = ">=3" [[package]] name = "identify" -version = "2.4.4" +version = "2.5.6" description = "File identification library for Python" category = "dev" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.7" [package.extras] license = ["ukkonen"] [[package]] name = "idna" -version = "2.10" +version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.5" [[package]] name = "importlib-metadata" -version = "1.7.0" +version = "4.13.0" description = "Read metadata from Python packages" category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.7" [package.dependencies] +typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""} zipp = ">=0.5" [package.extras] -docs = ["sphinx", "rst.linker"] -testing = ["packaging", "pep517", "importlib-resources (>=1.3)"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)"] +perf = ["ipython"] +testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] [[package]] name = "importlib-resources" -version = "3.2.1" +version = "5.9.0" description = "Read resources from Python packages" category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.7" [package.dependencies] -zipp = {version = ">=0.4", markers = "python_version < \"3.8\""} +zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["sphinx", "rst.linker", "jaraco.packaging"] +docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] +testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [[package]] name = "iniconfig" @@ -295,62 +305,70 @@ optional = false python-versions = "*" [[package]] -name = "jeepney" -version = "0.4.3" -description = "Low-level, pure Python DBus protocol wrapper." +name = "jaraco.classes" +version = "3.2.3" +description = "Utility functions for Python class constructs" category = "main" optional = false -python-versions = ">=3.5" - -[package.extras] -dev = ["testpath"] - -[[package]] -name = "jeepney" -version = "0.7.1" -description = "Low-level, pure Python DBus protocol wrapper." -category = "main" -optional = false -python-versions = ">=3.6" - -[package.extras] -test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio", "async-timeout"] -trio = ["trio", "async-generator"] - -[[package]] -name = "keyring" -version = "20.0.1" -description = "Store and access your passwords safely." -category = "main" -optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" [package.dependencies] +more-itertools = "*" + +[package.extras] +docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)"] +testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] + +[[package]] +name = "jeepney" +version = "0.8.0" +description = "Low-level, pure Python DBus protocol wrapper." +category = "main" +optional = false +python-versions = ">=3.7" + +[package.extras] +test = ["async-timeout", "pytest", "pytest-asyncio (>=0.17)", "pytest-trio", "testpath", "trio"] +trio = ["async_generator", "trio"] + +[[package]] +name = "jsonschema" +version = "4.16.0" +description = "An implementation of JSON Schema validation for Python" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +attrs = ">=17.4.0" importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} -pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""} -secretstorage = {version = "*", markers = "sys_platform == \"linux\""} +importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" +typing-extensions = {version = "*", markers = "python_version < \"3.8\""} [package.extras] -docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] -testing = ["pytest (>=3.5,!=3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-black-multipy", "pytest-cov"] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] [[package]] name = "keyring" -version = "22.3.0" +version = "23.9.3" description = "Store and access your passwords safely." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] -importlib-metadata = {version = ">=1", markers = "python_version < \"3.8\""} +importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} +"jaraco.classes" = "*" jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""} pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""} SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""} [package.extras] -docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] -testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "pytest-black (>=0.3.7)", "pytest-mypy"] +docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] +testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [[package]] name = "lockfile" @@ -362,9 +380,9 @@ python-versions = "*" [[package]] name = "more-itertools" -version = "8.13.0" +version = "8.14.0" description = "More routines for operating on iterables, beyond itertools" -category = "dev" +category = "main" optional = false python-versions = ">=3.5" @@ -377,42 +395,64 @@ optional = false python-versions = "*" [[package]] -name = "nodeenv" -version = "1.6.0" -description = "Node.js virtual environment builder" +name = "mypy" +version = "0.982" +description = "Optional static typing for Python" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +mypy-extensions = ">=0.4.3" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typed-ast = {version = ">=1.4.0,<2", markers = "python_version < \"3.8\""} +typing-extensions = ">=3.10" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "0.4.3" +description = "Experimental type system extensions for programs checked with the mypy typechecker." category = "dev" optional = false python-versions = "*" +[[package]] +name = "nodeenv" +version = "1.7.0" +description = "Node.js virtual environment builder" +category = "dev" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" + +[package.dependencies] +setuptools = "*" + +[[package]] +name = "ordered-set" +version = "4.1.0" +description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +dev = ["black", "mypy", "pytest"] + [[package]] name = "packaging" -version = "20.9" +version = "21.3" description = "Core utilities for Python packages" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.6" [package.dependencies] -pyparsing = ">=2.0.2" - -[[package]] -name = "pastel" -version = "0.2.1" -description = "Bring colors to your terminal." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[[package]] -name = "pathlib2" -version = "2.3.7.post1" -description = "Object-oriented filesystem paths" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -six = "*" +pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" [[package]] name = "pexpect" @@ -427,66 +467,101 @@ ptyprocess = ">=0.5" [[package]] name = "pkginfo" -version = "1.8.2" +version = "1.8.3" description = "Query metadatdata from sdists / bdists / installed packages." category = "main" optional = false -python-versions = "*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" [package.extras] testing = ["coverage", "nose"] +[[package]] +name = "pkgutil_resolve_name" +version = "1.3.10" +description = "Resolve a name to an object." +category = "main" +optional = false +python-versions = ">=3.6" + [[package]] name = "platformdirs" -version = "2.0.2" +version = "2.5.2" description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" + +[package.extras] +docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] [[package]] name = "pluggy" -version = "0.13.1" +version = "1.0.0" description = "plugin and hook calling mechanisms for python" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.6" [package.dependencies] importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} [package.extras] dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] [[package]] name = "poetry-core" -version = "1.0.8" +version = "1.2.0" description = "Poetry PEP 517 Build Backend" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7,<4.0" [package.dependencies] -importlib-metadata = {version = ">=1.7.0,<2.0.0", markers = "python_version >= \"2.7\" and python_version < \"2.8\" or python_version >= \"3.5\" and python_version < \"3.8\""} +importlib-metadata = {version = ">=1.7.0", markers = "python_version < \"3.8\""} + +[[package]] +name = "poetry-plugin-export" +version = "1.1.1" +description = "Poetry plugin to export the dependencies to various formats" +category = "main" +optional = false +python-versions = ">=3.7,<4.0" + +[package.dependencies] +poetry = ">=1.2.0,<2.0.0" +poetry-core = ">=1.1.0,<2.0.0" [[package]] name = "pre-commit" -version = "2.17.0" +version = "2.20.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." category = "dev" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.7" [package.dependencies] cfgv = ">=2.0.0" identify = ">=1.0.0" importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} -importlib-resources = {version = "<5.3", markers = "python_version < \"3.7\""} nodeenv = ">=0.11.1" pyyaml = ">=5.1" toml = "*" virtualenv = ">=20.0.8" +[[package]] +name = "psutil" +version = "5.9.2" +description = "Cross-platform lib for process and system monitoring in Python." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.extras] +test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] + [[package]] name = "ptyprocess" version = "0.7.0" @@ -521,46 +596,32 @@ python-versions = "*" [[package]] name = "pyparsing" -version = "2.4.7" -description = "Python parsing module" +version = "3.0.9" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" category = "main" optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "pytest" -version = "5.4.3" -description = "pytest: simple powerful testing with Python" -category = "dev" -optional = false -python-versions = ">=3.5" - -[package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=17.4.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} -more-itertools = ">=4.0.0" -packaging = "*" -pathlib2 = {version = ">=2.2.0", markers = "python_version < \"3.6\""} -pluggy = ">=0.12,<1.0" -py = ">=1.5.0" -wcwidth = "*" +python-versions = ">=3.6.8" [package.extras] -checkqa-mypy = ["mypy (==v0.761)"] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "pyrsistent" +version = "0.18.1" +description = "Persistent/Functional/Immutable data structures" +category = "main" +optional = false +python-versions = ">=3.7" [[package]] name = "pytest" -version = "6.2.5" +version = "7.1.3" description = "pytest: simple powerful testing with Python" category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} @@ -568,44 +629,67 @@ iniconfig = "*" packaging = "*" pluggy = ">=0.12,<2.0" py = ">=1.8.2" -toml = "*" +tomli = ">=1.0.0" [package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] [[package]] name = "pytest-cov" -version = "2.12.1" +version = "3.0.0" description = "Pytest plugin for measuring coverage." category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6" [package.dependencies] -coverage = ">=5.2.1" +coverage = {version = ">=5.2.1", extras = ["toml"]} pytest = ">=4.6" -toml = "*" [package.extras] -testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"] +testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] + +[[package]] +name = "pytest-forked" +version = "1.4.0" +description = "run tests in isolated forked subprocesses" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +py = "*" +pytest = ">=3.10" [[package]] name = "pytest-mock" -version = "1.13.0" -description = "Thin-wrapper around the mock package for easier use with py.test" +version = "3.10.0" +description = "Thin-wrapper around the mock package for easier use with pytest" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.7" [package.dependencies] -pytest = ">=2.7" +pytest = ">=5.0" [package.extras] -dev = ["pre-commit", "tox"] +dev = ["pre-commit", "pytest-asyncio", "tox"] + +[[package]] +name = "pytest-randomly" +version = "3.12.0" +description = "Pytest plugin to randomly order tests and control random.seed." +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +importlib-metadata = {version = ">=3.6.0", markers = "python_version < \"3.10\""} +pytest = "*" [[package]] name = "pytest-sugar" -version = "0.9.4" +version = "0.9.5" description = "pytest-sugar is a plugin for pytest that changes the default look and feel of pytest (e.g. progressbar, show tests that fail instantly)." category = "dev" optional = false @@ -616,6 +700,25 @@ packaging = ">=14.1" pytest = ">=2.9" termcolor = ">=1.1.0" +[[package]] +name = "pytest-xdist" +version = "2.5.0" +description = "pytest xdist plugin for distributed testing and loop-on-failing modes" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +execnet = ">=1.1" +psutil = {version = ">=3.0", optional = true, markers = "extra == \"psutil\""} +pytest = ">=6.2.0" +pytest-forked = "*" + +[package.extras] +psutil = ["psutil (>=3.0)"] +setproctitle = ["setproctitle"] +testing = ["filelock"] + [[package]] name = "pywin32-ctypes" version = "0.2.0" @@ -625,7 +728,7 @@ optional = false python-versions = "*" [[package]] -name = "pyyaml" +name = "PyYAML" version = "6.0" description = "YAML parser and emitter for Python" category = "dev" @@ -634,21 +737,21 @@ python-versions = ">=3.6" [[package]] name = "requests" -version = "2.25.1" +version = "2.28.1" description = "Python HTTP for Humans." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7, <4" [package.dependencies] certifi = ">=2017.4.17" -chardet = ">=3.0.2,<5" -idna = ">=2.5,<3" +charset-normalizer = ">=2,<3" +idna = ">=2.5,<4" urllib3 = ">=1.21.1,<1.27" [package.extras] -security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"] -socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-toolbelt" @@ -662,20 +765,8 @@ python-versions = "*" requests = ">=2.0.1,<3.0.0" [[package]] -name = "secretstorage" -version = "3.2.0" -description = "Python bindings to FreeDesktop.org Secret Service API" -category = "main" -optional = false -python-versions = ">=3.5" - -[package.dependencies] -cryptography = ">=2.0" -jeepney = ">=0.4.2" - -[[package]] -name = "secretstorage" -version = "3.3.2" +name = "SecretStorage" +version = "3.3.3" description = "Python bindings to FreeDesktop.org Secret Service API" category = "main" optional = false @@ -685,13 +776,26 @@ python-versions = ">=3.6" cryptography = ">=2.0" jeepney = ">=0.6" +[[package]] +name = "setuptools" +version = "65.4.1" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mock", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + [[package]] name = "shellingham" -version = "1.4.0" +version = "1.5.0" description = "Tool to Detect Surrounding Shell" category = "main" optional = false -python-versions = "!=3.0,!=3.1,!=3.2,!=3.3,>=2.6" +python-versions = ">=3.4" [[package]] name = "six" @@ -703,11 +807,14 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" [[package]] name = "termcolor" -version = "1.1.0" -description = "ANSII Color formatting for output in terminal." +version = "2.0.1" +description = "ANSI color formatting for output in terminal" category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.7" + +[package.extras] +tests = ["pytest", "pytest-cov"] [[package]] name = "toml" @@ -717,17 +824,25 @@ category = "dev" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +category = "dev" +optional = false +python-versions = ">=3.7" + [[package]] name = "tomlkit" -version = "0.7.2" +version = "0.11.5" description = "Style preserving TOML library" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6,<4.0" [[package]] name = "tox" -version = "3.25.1" +version = "3.26.0" description = "tox is a generic virtualenv management and test command line tool" category = "dev" optional = false @@ -741,61 +856,94 @@ packaging = ">=14" pluggy = ">=0.12.0" py = ">=1.4.17" six = ">=1.14.0" -toml = ">=0.9.4" +tomli = {version = ">=2.0.1", markers = "python_version >= \"3.7\" and python_version < \"3.11\""} virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7" [package.extras] docs = ["pygments-github-lexers (>=0.0.5)", "sphinx (>=2.0.0)", "sphinxcontrib-autoprogram (>=0.1.5)", "towncrier (>=18.5.0)"] -testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "pytest (>=4.0.0)", "pytest-cov (>=2.5.1)", "pytest-mock (>=1.10.0)", "pytest-randomly (>=1.0.0)", "psutil (>=5.6.1)", "pathlib2 (>=2.3.3)"] +testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "pathlib2 (>=2.3.3)", "psutil (>=5.6.1)", "pytest (>=4.0.0)", "pytest-cov (>=2.5.1)", "pytest-mock (>=1.10.0)", "pytest-randomly (>=1.0.0)"] [[package]] -name = "typing-extensions" -version = "3.10.0.2" -description = "Backported and Experimental Type Hints for Python 3.5+" -category = "main" +name = "typed-ast" +version = "1.5.4" +description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "dev" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "types-html5lib" +version = "1.1.11" +description = "Typing stubs for html5lib" +category = "dev" optional = false python-versions = "*" +[[package]] +name = "types-jsonschema" +version = "4.16.1" +description = "Typing stubs for jsonschema" +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "types-requests" +version = "2.28.11.2" +description = "Typing stubs for requests" +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +types-urllib3 = "<1.27" + +[[package]] +name = "types-urllib3" +version = "1.26.25" +description = "Typing stubs for urllib3" +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "typing-extensions" +version = "4.4.0" +description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" +optional = false +python-versions = ">=3.7" + [[package]] name = "urllib3" -version = "1.26.9" +version = "1.26.12" description = "HTTP library with thread-safe connection pooling, file post, and more." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" [package.extras] -brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"] -secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "virtualenv" -version = "20.15.1" +version = "20.16.5" description = "Virtual Python Environment builder" category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.6" [package.dependencies] -distlib = ">=0.3.1,<1" -filelock = ">=3.2,<4" -importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} -importlib-resources = {version = ">=1.0", markers = "python_version < \"3.7\""} -platformdirs = ">=2,<3" -six = ">=1.9.0,<2" +distlib = ">=0.3.5,<1" +filelock = ">=3.4.1,<4" +importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.8\""} +platformdirs = ">=2.4,<3" [package.extras] -docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"] -testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"] - -[[package]] -name = "wcwidth" -version = "0.2.5" -description = "Measures the displayed width of unicode strings in a terminal" -category = "dev" -optional = false -python-versions = "*" +docs = ["proselint (>=0.13)", "sphinx (>=5.1.1)", "sphinx-argparse (>=0.3.1)", "sphinx-rtd-theme (>=1)", "towncrier (>=21.9)"] +testing = ["coverage (>=6.2)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=21.3)", "pytest (>=7.0.1)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.6.1)", "pytest-randomly (>=3.10.3)", "pytest-timeout (>=2.1)"] [[package]] name = "webencodings" @@ -805,35 +953,44 @@ category = "main" optional = false python-versions = "*" +[[package]] +name = "xattr" +version = "0.9.9" +description = "Python wrapper for extended filesystem attributes" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +cffi = ">=1.0" + [[package]] name = "zipp" -version = "1.2.0" +version = "3.8.1" description = "Backport of pathlib-compatible object wrapper for zip files" category = "main" optional = false -python-versions = ">=2.7" +python-versions = ">=3.7" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] -testing = ["pathlib2", "unittest2", "jaraco.itertools", "func-timeout"] +docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] +testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [metadata] lock-version = "1.1" -python-versions = "^3.5" -content-hash = "9ef4eff67412cb5b3e575b88a4424e26f4f8a519ee503046ec435c9c10786d00" +python-versions = "^3.7" +content-hash = "a3480636766bb3c5c00e1ed48b6b70136726754001837ef7515c6b355fa35812" [metadata.files] -atomicwrites = [ - {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, - {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, -] attrs = [ - {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, - {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, + {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"}, + {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, ] -cachecontrol = [ - {file = "CacheControl-0.12.6-py2.py3-none-any.whl", hash = "sha256:10d056fa27f8563a271b345207402a6dcce8efab7e5b377e270329c62471b10d"}, - {file = "CacheControl-0.12.6.tar.gz", hash = "sha256:be9aa45477a134aee56c8fac518627e1154df063e85f67d4f83ce0ccc23688e8"}, +"backports.cached-property" = [ + {file = "backports.cached-property-1.0.2.tar.gz", hash = "sha256:9306f9eed6ec55fd156ace6bc1094e2c86fae5fb2bf07b6a9c00745c656e75dd"}, + {file = "backports.cached_property-1.0.2-py3-none-any.whl", hash = "sha256:baeb28e1cd619a3c9ab8941431fe34e8490861fb998c6c4590693d50171db0cc"}, +] +CacheControl = [ {file = "CacheControl-0.12.11-py2.py3-none-any.whl", hash = "sha256:2c75d6a8938cb1933c75c50184549ad42728a27e9f6b92fd677c3151aa72555b"}, {file = "CacheControl-0.12.11.tar.gz", hash = "sha256:a5b9fcc986b184db101aa280b42ecdcdfc524892596f606858e0b7a8b4d9e144"}, ] @@ -842,8 +999,8 @@ cachy = [ {file = "cachy-0.3.0.tar.gz", hash = "sha256:186581f4ceb42a0bbe040c407da73c14092379b1e4c0e327fdb72ae4a9b269b1"}, ] certifi = [ - {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, - {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, + {file = "certifi-2022.9.24-py3-none-any.whl", hash = "sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382"}, + {file = "certifi-2022.9.24.tar.gz", hash = "sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14"}, ] cffi = [ {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, @@ -915,133 +1072,153 @@ cfgv = [ {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, ] -chardet = [ - {file = "chardet-4.0.0-py2.py3-none-any.whl", hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5"}, - {file = "chardet-4.0.0.tar.gz", hash = "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa"}, +charset-normalizer = [ + {file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"}, + {file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"}, ] cleo = [ - {file = "cleo-0.8.1-py2.py3-none-any.whl", hash = "sha256:141cda6dc94a92343be626bb87a0b6c86ae291dfc732a57bf04310d4b4201753"}, - {file = "cleo-0.8.1.tar.gz", hash = "sha256:3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f"}, -] -clikit = [ - {file = "clikit-0.6.2-py2.py3-none-any.whl", hash = "sha256:71268e074e68082306e23d7369a7b99f824a0ef926e55ba2665e911f7208489e"}, - {file = "clikit-0.6.2.tar.gz", hash = "sha256:442ee5db9a14120635c5990bcdbfe7c03ada5898291f0c802f77be71569ded59"}, + {file = "cleo-1.0.0a5-py3-none-any.whl", hash = "sha256:ff53056589300976e960f75afb792dfbfc9c78dcbb5a448e207a17b643826360"}, + {file = "cleo-1.0.0a5.tar.gz", hash = "sha256:097c9d0e0332fd53cc89fc11eb0a6ba0309e6a3933c08f7b38558555486925d3"}, ] colorama = [ {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, ] coverage = [ - {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"}, - {file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b"}, - {file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669"}, - {file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90"}, - {file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c"}, - {file = "coverage-5.5-cp27-cp27m-win32.whl", hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a"}, - {file = "coverage-5.5-cp27-cp27m-win_amd64.whl", hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5"}, - {file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81"}, - {file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6"}, - {file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0"}, - {file = "coverage-5.5-cp310-cp310-win_amd64.whl", hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae"}, - {file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb"}, - {file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160"}, - {file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6"}, - {file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701"}, - {file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793"}, - {file = "coverage-5.5-cp35-cp35m-win32.whl", hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e"}, - {file = "coverage-5.5-cp35-cp35m-win_amd64.whl", hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3"}, - {file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066"}, - {file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a"}, - {file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465"}, - {file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb"}, - {file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821"}, - {file = "coverage-5.5-cp36-cp36m-win32.whl", hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45"}, - {file = "coverage-5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184"}, - {file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a"}, - {file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53"}, - {file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d"}, - {file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638"}, - {file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3"}, - {file = "coverage-5.5-cp37-cp37m-win32.whl", hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a"}, - {file = "coverage-5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a"}, - {file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6"}, - {file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2"}, - {file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759"}, - {file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873"}, - {file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a"}, - {file = "coverage-5.5-cp38-cp38-win32.whl", hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6"}, - {file = "coverage-5.5-cp38-cp38-win_amd64.whl", hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502"}, - {file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b"}, - {file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529"}, - {file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b"}, - {file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff"}, - {file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b"}, - {file = "coverage-5.5-cp39-cp39-win32.whl", hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6"}, - {file = "coverage-5.5-cp39-cp39-win_amd64.whl", hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03"}, - {file = "coverage-5.5-pp36-none-any.whl", hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079"}, - {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"}, - {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"}, + {file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"}, + {file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"}, + {file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"}, + {file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"}, + {file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"}, + {file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"}, + {file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"}, + {file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027018943386e7b942fa832372ebc120155fd970837489896099f5cfa2890f79"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"}, + {file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"}, + {file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"}, + {file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"}, + {file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"}, + {file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"}, + {file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"}, + {file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"}, + {file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"}, + {file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"}, + {file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"}, + {file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"}, + {file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"}, ] crashtest = [ {file = "crashtest-0.3.1-py3-none-any.whl", hash = "sha256:300f4b0825f57688b47b6d70c6a31de33512eb2fa1ac614f780939aa0cf91680"}, {file = "crashtest-0.3.1.tar.gz", hash = "sha256:42ca7b6ce88b6c7433e2ce47ea884e91ec93104a4b754998be498a8e6c3d37dd"}, ] cryptography = [ - {file = "cryptography-3.2.1-cp27-cp27m-macosx_10_10_x86_64.whl", hash = "sha256:6dc59630ecce8c1f558277ceb212c751d6730bd12c80ea96b4ac65637c4f55e7"}, - {file = "cryptography-3.2.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:75e8e6684cf0034f6bf2a97095cb95f81537b12b36a8fedf06e73050bb171c2d"}, - {file = "cryptography-3.2.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4e7268a0ca14536fecfdf2b00297d4e407da904718658c1ff1961c713f90fd33"}, - {file = "cryptography-3.2.1-cp27-cp27m-win32.whl", hash = "sha256:7117319b44ed1842c617d0a452383a5a052ec6aa726dfbaffa8b94c910444297"}, - {file = "cryptography-3.2.1-cp27-cp27m-win_amd64.whl", hash = "sha256:a733671100cd26d816eed39507e585c156e4498293a907029969234e5e634bc4"}, - {file = "cryptography-3.2.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:a75f306a16d9f9afebfbedc41c8c2351d8e61e818ba6b4c40815e2b5740bb6b8"}, - {file = "cryptography-3.2.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:5849d59358547bf789ee7e0d7a9036b2d29e9a4ddf1ce5e06bb45634f995c53e"}, - {file = "cryptography-3.2.1-cp35-abi3-macosx_10_10_x86_64.whl", hash = "sha256:bd717aa029217b8ef94a7d21632a3bb5a4e7218a4513d2521c2a2fd63011e98b"}, - {file = "cryptography-3.2.1-cp35-abi3-manylinux1_x86_64.whl", hash = "sha256:efe15aca4f64f3a7ea0c09c87826490e50ed166ce67368a68f315ea0807a20df"}, - {file = "cryptography-3.2.1-cp35-abi3-manylinux2010_x86_64.whl", hash = "sha256:32434673d8505b42c0de4de86da8c1620651abd24afe91ae0335597683ed1b77"}, - {file = "cryptography-3.2.1-cp35-abi3-manylinux2014_aarch64.whl", hash = "sha256:7b8d9d8d3a9bd240f453342981f765346c87ade811519f98664519696f8e6ab7"}, - {file = "cryptography-3.2.1-cp35-cp35m-win32.whl", hash = "sha256:d3545829ab42a66b84a9aaabf216a4dce7f16dbc76eb69be5c302ed6b8f4a29b"}, - {file = "cryptography-3.2.1-cp35-cp35m-win_amd64.whl", hash = "sha256:a4e27ed0b2504195f855b52052eadcc9795c59909c9d84314c5408687f933fc7"}, - {file = "cryptography-3.2.1-cp36-abi3-win32.whl", hash = "sha256:13b88a0bd044b4eae1ef40e265d006e34dbcde0c2f1e15eb9896501b2d8f6c6f"}, - {file = "cryptography-3.2.1-cp36-abi3-win_amd64.whl", hash = "sha256:07ca431b788249af92764e3be9a488aa1d39a0bc3be313d826bbec690417e538"}, - {file = "cryptography-3.2.1-cp36-cp36m-win32.whl", hash = "sha256:a035a10686532b0587d58a606004aa20ad895c60c4d029afa245802347fab57b"}, - {file = "cryptography-3.2.1-cp36-cp36m-win_amd64.whl", hash = "sha256:d26a2557d8f9122f9bf445fc7034242f4375bd4e95ecda007667540270965b13"}, - {file = "cryptography-3.2.1-cp37-cp37m-win32.whl", hash = "sha256:545a8550782dda68f8cdc75a6e3bf252017aa8f75f19f5a9ca940772fc0cb56e"}, - {file = "cryptography-3.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:55d0b896631412b6f0c7de56e12eb3e261ac347fbaa5d5e705291a9016e5f8cb"}, - {file = "cryptography-3.2.1-cp38-cp38-win32.whl", hash = "sha256:3cd75a683b15576cfc822c7c5742b3276e50b21a06672dc3a800a2d5da4ecd1b"}, - {file = "cryptography-3.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:d25cecbac20713a7c3bc544372d42d8eafa89799f492a43b79e1dfd650484851"}, - {file = "cryptography-3.2.1.tar.gz", hash = "sha256:d3d5e10be0cf2a12214ddee45c6bd203dab435e3d83b4560c03066eda600bfe3"}, - {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:549153378611c0cca1042f20fd9c5030d37a72f634c9326e225c9f666d472884"}, - {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:a958c52505c8adf0d3822703078580d2c0456dd1d27fabfb6f76fe63d2971cd6"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f721d1885ecae9078c3f6bbe8a88bc0786b6e749bf32ccec1ef2b18929a05046"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3d41b965b3380f10e4611dbae366f6dc3cefc7c9ac4e8842a806b9672ae9add5"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80f49023dd13ba35f7c34072fa17f604d2f19bf0989f292cedf7ab5770b87a0b"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2dcb0b3b63afb6df7fd94ec6fbddac81b5492513f7b0436210d390c14d46ee8"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:b7f8dd0d4c1f21759695c05a5ec8536c12f31611541f8904083f3dc582604280"}, - {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:30788e070800fec9bbcf9faa71ea6d8068f5136f60029759fd8c3efec3c9dcb3"}, - {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:190f82f3e87033821828f60787cfa42bff98404483577b591429ed99bed39d59"}, - {file = "cryptography-37.0.4-cp36-abi3-win32.whl", hash = "sha256:b62439d7cd1222f3da897e9a9fe53bbf5c104fff4d60893ad1355d4c14a24157"}, - {file = "cryptography-37.0.4-cp36-abi3-win_amd64.whl", hash = "sha256:f7a6de3e98771e183645181b3627e2563dcde3ce94a9e42a3f427d2255190327"}, - {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc95ed67b6741b2607298f9ea4932ff157e570ef456ef7ff0ef4884a134cc4b"}, - {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:f8c0a6e9e1dd3eb0414ba320f85da6b0dcbd543126e30fcc546e7372a7fbf3b9"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:e007f052ed10cc316df59bc90fbb7ff7950d7e2919c9757fd42a2b8ecf8a5f67"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bc997818309f56c0038a33b8da5c0bfbb3f1f067f315f9abd6fc07ad359398d"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d204833f3c8a33bbe11eda63a54b1aad7aa7456ed769a982f21ec599ba5fa282"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:75976c217f10d48a8b5a8de3d70c454c249e4b91851f6838a4e48b8f41eb71aa"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:7099a8d55cd49b737ffc99c17de504f2257e3787e02abe6d1a6d136574873441"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2be53f9f5505673eeda5f2736bea736c40f051a739bfae2f92d18aed1eb54596"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:91ce48d35f4e3d3f1d83e29ef4a9267246e6a3be51864a5b7d2247d5086fa99a"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4c590ec31550a724ef893c50f9a97a0c14e9c851c85621c5650d699a7b88f7ab"}, - {file = "cryptography-37.0.4.tar.gz", hash = "sha256:63f9c17c0e2474ccbebc9302ce2f07b55b3b3fcb211ded18a42d5764f5c10a82"}, + {file = "cryptography-38.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:10d1f29d6292fc95acb597bacefd5b9e812099d75a6469004fd38ba5471a977f"}, + {file = "cryptography-38.0.1-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:3fc26e22840b77326a764ceb5f02ca2d342305fba08f002a8c1f139540cdfaad"}, + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3b72c360427889b40f36dc214630e688c2fe03e16c162ef0aa41da7ab1455153"}, + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:194044c6b89a2f9f169df475cc167f6157eb9151cc69af8a2a163481d45cc407"}, + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca9f6784ea96b55ff41708b92c3f6aeaebde4c560308e5fbbd3173fbc466e94e"}, + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:16fa61e7481f4b77ef53991075de29fc5bacb582a1244046d2e8b4bb72ef66d0"}, + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d4ef6cc305394ed669d4d9eebf10d3a101059bdcf2669c366ec1d14e4fb227bd"}, + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3261725c0ef84e7592597606f6583385fed2a5ec3909f43bc475ade9729a41d6"}, + {file = "cryptography-38.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:0297ffc478bdd237f5ca3a7dc96fc0d315670bfa099c04dc3a4a2172008a405a"}, + {file = "cryptography-38.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:89ed49784ba88c221756ff4d4755dbc03b3c8d2c5103f6d6b4f83a0fb1e85294"}, + {file = "cryptography-38.0.1-cp36-abi3-win32.whl", hash = "sha256:ac7e48f7e7261207d750fa7e55eac2d45f720027d5703cd9007e9b37bbb59ac0"}, + {file = "cryptography-38.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:ad7353f6ddf285aeadfaf79e5a6829110106ff8189391704c1d8801aa0bae45a"}, + {file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:896dd3a66959d3a5ddcfc140a53391f69ff1e8f25d93f0e2e7830c6de90ceb9d"}, + {file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d3971e2749a723e9084dd507584e2a2761f78ad2c638aa31e80bc7a15c9db4f9"}, + {file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:79473cf8a5cbc471979bd9378c9f425384980fcf2ab6534b18ed7d0d9843987d"}, + {file = "cryptography-38.0.1-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:d9e69ae01f99abe6ad646947bba8941e896cb3aa805be2597a0400e0764b5818"}, + {file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5067ee7f2bce36b11d0e334abcd1ccf8c541fc0bbdaf57cdd511fdee53e879b6"}, + {file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:3e3a2599e640927089f932295a9a247fc40a5bdf69b0484532f530471a382750"}, + {file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c2e5856248a416767322c8668ef1845ad46ee62629266f84a8f007a317141013"}, + {file = "cryptography-38.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:64760ba5331e3f1794d0bcaabc0d0c39e8c60bf67d09c93dc0e54189dfd7cfe5"}, + {file = "cryptography-38.0.1-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b6c9b706316d7b5a137c35e14f4103e2115b088c412140fdbd5f87c73284df61"}, + {file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0163a849b6f315bf52815e238bc2b2346604413fa7c1601eea84bcddb5fb9ac"}, + {file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d1a5bd52d684e49a36582193e0b89ff267704cd4025abefb9e26803adeb3e5fb"}, + {file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:765fa194a0f3372d83005ab83ab35d7c5526c4e22951e46059b8ac678b44fa5a"}, + {file = "cryptography-38.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:52e7bee800ec869b4031093875279f1ff2ed12c1e2f74923e8f49c916afd1d3b"}, + {file = "cryptography-38.0.1.tar.gz", hash = "sha256:1db3d807a14931fa317f96435695d9ec386be7b84b618cc61cfa5d08b0ae33d7"}, +] +deepdiff = [ + {file = "deepdiff-5.8.1-py3-none-any.whl", hash = "sha256:e9aea49733f34fab9a0897038d8f26f9d94a97db1790f1b814cced89e9e0d2b7"}, + {file = "deepdiff-5.8.1.tar.gz", hash = "sha256:8d4eb2c4e6cbc80b811266419cb71dd95a157094a3947ccf937a94d44943c7b8"}, ] distlib = [ - {file = "distlib-0.3.4-py2.py3-none-any.whl", hash = "sha256:6564fe0a8f51e734df6333d08b8b94d4ea8ee6b99b5ed50613f731fd4089f34b"}, - {file = "distlib-0.3.4.zip", hash = "sha256:e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579"}, + {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, + {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, +] +dulwich = [ + {file = "dulwich-0.20.46-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:6676196e9cf377cde62aa2f5d741e93207437343e0c62368bd0d784c322a3c49"}, + {file = "dulwich-0.20.46-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a1ca555a3eafe7388d6cb81bb08f34608a1592500f0bd4c26734c91d208a546"}, + {file = "dulwich-0.20.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:769442c9657b10fc35ac625beeaf440540c9288c96fcfaba3e58adf745c5cafd"}, + {file = "dulwich-0.20.46-cp310-cp310-win32.whl", hash = "sha256:de22a54f68c6c4e97f9b924abd46da4618536d7934b9849066be9fc5cd31205d"}, + {file = "dulwich-0.20.46-cp310-cp310-win_amd64.whl", hash = "sha256:42fa5a68908556eb6c40f231a67caf6a4660588aad707a9d6b334fa1d8f04bf7"}, + {file = "dulwich-0.20.46-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:3e16376031466848e44aabf3489fafb054482143744b21167dbd168731041c74"}, + {file = "dulwich-0.20.46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:153c7512587384a290c60fef330f1ab397a59559e19e8b02a0169ff21b4c69fb"}, + {file = "dulwich-0.20.46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5b68bd815cd2769c75e5a78708eb0440612df19b370a977aa9e01a056baa9ed"}, + {file = "dulwich-0.20.46-cp311-cp311-win32.whl", hash = "sha256:b1339bca70764eb8e780d80c72e7c1cb4651201dc9e43ec5d616bf51eb3bb3a6"}, + {file = "dulwich-0.20.46-cp311-cp311-win_amd64.whl", hash = "sha256:1162fdafb2abdfe66649617061f3853cb26384fade1f6884f6fe6e9c570a7552"}, + {file = "dulwich-0.20.46-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:6826512f778eaa47e2e8c0a46cdc555958f9f5286771490b8642b4b508ea5d25"}, + {file = "dulwich-0.20.46-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:100d39bc18196a07c521fd5f60f78f397493303daa0b8690216864bbc621cd5d"}, + {file = "dulwich-0.20.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4cd2cd7baa81246bdc8c5272d4e9224e2255da7a0618a220aab5e07b9888e9b"}, + {file = "dulwich-0.20.46-cp36-cp36m-win32.whl", hash = "sha256:6eed5a3194d64112605fc0f638f4fa91771495e8674fa3e6d6b33bf150d297d5"}, + {file = "dulwich-0.20.46-cp36-cp36m-win_amd64.whl", hash = "sha256:9ca4d73987f5b0e2e843497876f9bb39a47384a2e50597a85542285f5c890293"}, + {file = "dulwich-0.20.46-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:b9f49de83911eed7adbe83136229837ef9d102e42dbe6aacb1a18be45c997ace"}, + {file = "dulwich-0.20.46-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d38be7d3a78d608ecab3348f7920d6b9002e7972dd245206dc8075cfdb91621d"}, + {file = "dulwich-0.20.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f4b7a7feb966a4669c254b18385fe0b3c639f3b1f5ddef0d9e083364cc762847"}, + {file = "dulwich-0.20.46-cp37-cp37m-win32.whl", hash = "sha256:f9552ac246bceab1c5cdd1ec3cfe9446fe76b9853eaf59d3244df03eb27fd3fe"}, + {file = "dulwich-0.20.46-cp37-cp37m-win_amd64.whl", hash = "sha256:90a075aeb0fdbad7e18b9db3af161e3d635e2b7697b7a4b467e6844a13b0b210"}, + {file = "dulwich-0.20.46-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:8d6fee82cedb2362942d9ef94061901f7e07d7d8674e4c7b6fceeef7822ae275"}, + {file = "dulwich-0.20.46-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:669c6b3d82996518a7fec4604771bd285e23f0860f41f565fef5987265d431d9"}, + {file = "dulwich-0.20.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd3eac228117487a959ac8f49ea2787eac34acc69999fe7adae70b23e3c3571c"}, + {file = "dulwich-0.20.46-cp38-cp38-win32.whl", hash = "sha256:92024f572d32680e021219f77015c8b443c38022e502b7f51ad7cf51a6285a36"}, + {file = "dulwich-0.20.46-cp38-cp38-win_amd64.whl", hash = "sha256:d928de1eba0326a2a8a52ed94c9bf7c315ff4db606a1aa3ae688d39574f93267"}, + {file = "dulwich-0.20.46-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:a5d1b7a3a7d84a5dedbb90092e00097357106b9642ac08a96c2ae89ccd8afd9a"}, + {file = "dulwich-0.20.46-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b739d759c10e2af7c964dcc97fd4e5dc49e8567d080eed8906fc422c79b7fdcf"}, + {file = "dulwich-0.20.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fc7a4f633f5468453d5dd84a753cd99d4433f0397437229a0a8b10347935591"}, + {file = "dulwich-0.20.46-cp39-cp39-win32.whl", hash = "sha256:525115c4d1fbf60a5fe98f340b4ca597ba47b2c75d9c5ec750dd0e9115ef8ec6"}, + {file = "dulwich-0.20.46-cp39-cp39-win_amd64.whl", hash = "sha256:73e2585a9fcf1f8cdad8597a0c384c0b365b2e8346463130c96d9ea1478587ae"}, + {file = "dulwich-0.20.46.tar.gz", hash = "sha256:4f0e88ffff5db1523d93d92f1525fe5fa161318ffbaad502c1b9b3be7a067172"}, +] +execnet = [ + {file = "execnet-1.9.0-py2.py3-none-any.whl", hash = "sha256:a295f7cc774947aac58dde7fdc85f4aa00c42adf5d8f5468fc630c1acf30a142"}, + {file = "execnet-1.9.0.tar.gz", hash = "sha256:8f694f3ba9cc92cab508b152dcfe322153975c29bda272e2fd7f3f00f36e47c5"}, ] filelock = [ - {file = "filelock-3.2.1-py2.py3-none-any.whl", hash = "sha256:7f07b08d731907441ff40d0c5b81f9512cd968842e0b6264c8bd18a8ce877760"}, - {file = "filelock-3.2.1.tar.gz", hash = "sha256:9cdd29c411ab196cf4c35a1da684f7b9da723696cb356efa45bf5eb1ff313ee3"}, + {file = "filelock-3.8.0-py3-none-any.whl", hash = "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4"}, + {file = "filelock-3.8.0.tar.gz", hash = "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc"}, +] +flatdict = [ + {file = "flatdict-4.0.1.tar.gz", hash = "sha256:cd32f08fd31ed21eb09ebc76f06b6bd12046a24f77beb1fd0281917e47f26742"}, ] html5lib = [ {file = "html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d"}, @@ -1051,44 +1228,48 @@ httpretty = [ {file = "httpretty-1.1.4.tar.gz", hash = "sha256:20de0e5dd5a18292d36d928cc3d6e52f8b2ac73daec40d41eb62dee154933b68"}, ] identify = [ - {file = "identify-2.4.4-py2.py3-none-any.whl", hash = "sha256:aa68609c7454dbcaae60a01ff6b8df1de9b39fe6e50b1f6107ec81dcda624aa6"}, - {file = "identify-2.4.4.tar.gz", hash = "sha256:6b4b5031f69c48bf93a646b90de9b381c6b5f560df4cbe0ed3cf7650ae741e4d"}, + {file = "identify-2.5.6-py2.py3-none-any.whl", hash = "sha256:b276db7ec52d7e89f5bc4653380e33054ddc803d25875952ad90b0f012cbcdaa"}, + {file = "identify-2.5.6.tar.gz", hash = "sha256:6c32dbd747aa4ceee1df33f25fed0b0f6e0d65721b15bd151307ff7056d50245"}, ] idna = [ - {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"}, - {file = "idna-2.10.tar.gz", hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6"}, + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, ] importlib-metadata = [ - {file = "importlib_metadata-1.7.0-py2.py3-none-any.whl", hash = "sha256:dc15b2969b4ce36305c51eebe62d418ac7791e9a157911d58bfb1f9ccd8e2070"}, - {file = "importlib_metadata-1.7.0.tar.gz", hash = "sha256:90bb658cdbbf6d1735b6341ce708fc7024a3e14e99ffdc5783edea9f9b077f83"}, + {file = "importlib_metadata-4.13.0-py3-none-any.whl", hash = "sha256:8a8a81bcf996e74fee46f0d16bd3eaa382a7eb20fd82445c3ad11f4090334116"}, + {file = "importlib_metadata-4.13.0.tar.gz", hash = "sha256:dd0173e8f150d6815e098fd354f6414b0f079af4644ddfe90c71e2fc6174346d"}, ] importlib-resources = [ - {file = "importlib_resources-3.2.1-py2.py3-none-any.whl", hash = "sha256:e2860cf0c4bc999947228d18be154fa3779c5dde0b882bd2d7b3f4d25e698bd6"}, - {file = "importlib_resources-3.2.1.tar.gz", hash = "sha256:a9fe213ab6452708ec1b3f4ec6f2881b8ab3645cb4e5efb7fea2bbf05a91db3b"}, + {file = "importlib_resources-5.9.0-py3-none-any.whl", hash = "sha256:f78a8df21a79bcc30cfd400bdc38f314333de7c0fb619763f6b9dabab8268bb7"}, + {file = "importlib_resources-5.9.0.tar.gz", hash = "sha256:5481e97fb45af8dcf2f798952625591c58fe599d0735d86b10f54de086a61681"}, ] iniconfig = [ {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, ] +"jaraco.classes" = [ + {file = "jaraco.classes-3.2.3-py3-none-any.whl", hash = "sha256:2353de3288bc6b82120752201c6b1c1a14b058267fa424ed5ce5984e3b922158"}, + {file = "jaraco.classes-3.2.3.tar.gz", hash = "sha256:89559fa5c1d3c34eff6f631ad80bb21f378dbcbb35dd161fd2c6b93f5be2f98a"}, +] jeepney = [ - {file = "jeepney-0.4.3-py3-none-any.whl", hash = "sha256:d6c6b49683446d2407d2fe3acb7a368a77ff063f9182fe427da15d622adc24cf"}, - {file = "jeepney-0.4.3.tar.gz", hash = "sha256:3479b861cc2b6407de5188695fa1a8d57e5072d7059322469b62628869b8e36e"}, - {file = "jeepney-0.7.1-py3-none-any.whl", hash = "sha256:1b5a0ea5c0e7b166b2f5895b91a08c14de8915afda4407fb5022a195224958ac"}, - {file = "jeepney-0.7.1.tar.gz", hash = "sha256:fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f"}, + {file = "jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755"}, + {file = "jeepney-0.8.0.tar.gz", hash = "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806"}, +] +jsonschema = [ + {file = "jsonschema-4.16.0-py3-none-any.whl", hash = "sha256:9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9"}, + {file = "jsonschema-4.16.0.tar.gz", hash = "sha256:165059f076eff6971bae5b742fc029a7b4ef3f9bcf04c14e4776a7605de14b23"}, ] keyring = [ - {file = "keyring-20.0.1-py2.py3-none-any.whl", hash = "sha256:c674f032424b4bffc62abeac5523ec49cc84aed07a480c3233e0baf618efc15c"}, - {file = "keyring-20.0.1.tar.gz", hash = "sha256:963bfa7f090269d30bdc5e25589e5fd9dad2cf2a7c6f176a7f2386910e5d0d8d"}, - {file = "keyring-22.3.0-py3-none-any.whl", hash = "sha256:2bc8363ebdd63886126a012057a85c8cb6e143877afa02619ac7dbc9f38a207b"}, - {file = "keyring-22.3.0.tar.gz", hash = "sha256:16927a444b2c73f983520a48dec79ddab49fe76429ea05b8d528d778c8339522"}, + {file = "keyring-23.9.3-py3-none-any.whl", hash = "sha256:69732a15cb1433bdfbc3b980a8a36a04878a6cfd7cb99f497b573f31618001c0"}, + {file = "keyring-23.9.3.tar.gz", hash = "sha256:69b01dd83c42f590250fe7a1f503fc229b14de83857314b1933a3ddbf595c4a5"}, ] lockfile = [ {file = "lockfile-0.12.2-py2.py3-none-any.whl", hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa"}, {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, ] more-itertools = [ - {file = "more-itertools-8.13.0.tar.gz", hash = "sha256:a42901a0a5b169d925f6f217cd5a190e32ef54360905b9c39ee7db5313bfec0f"}, - {file = "more_itertools-8.13.0-py3-none-any.whl", hash = "sha256:c5122bffc5f104d37c1626b8615b511f3427aa5389b94d61e5ef8236bfbc3ddb"}, + {file = "more-itertools-8.14.0.tar.gz", hash = "sha256:c09443cd3d5438b8dafccd867a6bc1cb0894389e90cb53d227456b0b0bccb750"}, + {file = "more_itertools-8.14.0-py3-none-any.whl", hash = "sha256:1bc4f91ee5b1b31ac7ceacc17c09befe6a40a503907baf9c839c229b5095cfd2"}, ] msgpack = [ {file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250"}, @@ -1144,45 +1325,113 @@ msgpack = [ {file = "msgpack-1.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:4d5834a2a48965a349da1c5a79760d94a1a0172fbb5ab6b5b33cbf8447e109ce"}, {file = "msgpack-1.0.4.tar.gz", hash = "sha256:f5d869c18f030202eb412f08b28d2afeea553d6613aee89e200d7aca7ef01f5f"}, ] +mypy = [ + {file = "mypy-0.982-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5085e6f442003fa915aeb0a46d4da58128da69325d8213b4b35cc7054090aed5"}, + {file = "mypy-0.982-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:41fd1cf9bc0e1c19b9af13a6580ccb66c381a5ee2cf63ee5ebab747a4badeba3"}, + {file = "mypy-0.982-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f793e3dd95e166b66d50e7b63e69e58e88643d80a3dcc3bcd81368e0478b089c"}, + {file = "mypy-0.982-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86ebe67adf4d021b28c3f547da6aa2cce660b57f0432617af2cca932d4d378a6"}, + {file = "mypy-0.982-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:175f292f649a3af7082fe36620369ffc4661a71005aa9f8297ea473df5772046"}, + {file = "mypy-0.982-cp310-cp310-win_amd64.whl", hash = "sha256:8ee8c2472e96beb1045e9081de8e92f295b89ac10c4109afdf3a23ad6e644f3e"}, + {file = "mypy-0.982-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:58f27ebafe726a8e5ccb58d896451dd9a662a511a3188ff6a8a6a919142ecc20"}, + {file = "mypy-0.982-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6af646bd46f10d53834a8e8983e130e47d8ab2d4b7a97363e35b24e1d588947"}, + {file = "mypy-0.982-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e7aeaa763c7ab86d5b66ff27f68493d672e44c8099af636d433a7f3fa5596d40"}, + {file = "mypy-0.982-cp37-cp37m-win_amd64.whl", hash = "sha256:724d36be56444f569c20a629d1d4ee0cb0ad666078d59bb84f8f887952511ca1"}, + {file = "mypy-0.982-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:14d53cdd4cf93765aa747a7399f0961a365bcddf7855d9cef6306fa41de01c24"}, + {file = "mypy-0.982-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:26ae64555d480ad4b32a267d10cab7aec92ff44de35a7cd95b2b7cb8e64ebe3e"}, + {file = "mypy-0.982-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6389af3e204975d6658de4fb8ac16f58c14e1bacc6142fee86d1b5b26aa52bda"}, + {file = "mypy-0.982-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b35ce03a289480d6544aac85fa3674f493f323d80ea7226410ed065cd46f206"}, + {file = "mypy-0.982-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c6e564f035d25c99fd2b863e13049744d96bd1947e3d3d2f16f5828864506763"}, + {file = "mypy-0.982-cp38-cp38-win_amd64.whl", hash = "sha256:cebca7fd333f90b61b3ef7f217ff75ce2e287482206ef4a8b18f32b49927b1a2"}, + {file = "mypy-0.982-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a705a93670c8b74769496280d2fe6cd59961506c64f329bb179970ff1d24f9f8"}, + {file = "mypy-0.982-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:75838c649290d83a2b83a88288c1eb60fe7a05b36d46cbea9d22efc790002146"}, + {file = "mypy-0.982-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:91781eff1f3f2607519c8b0e8518aad8498af1419e8442d5d0afb108059881fc"}, + {file = "mypy-0.982-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaa97b9ddd1dd9901a22a879491dbb951b5dec75c3b90032e2baa7336777363b"}, + {file = "mypy-0.982-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a692a8e7d07abe5f4b2dd32d731812a0175626a90a223d4b58f10f458747dd8a"}, + {file = "mypy-0.982-cp39-cp39-win_amd64.whl", hash = "sha256:eb7a068e503be3543c4bd329c994103874fa543c1727ba5288393c21d912d795"}, + {file = "mypy-0.982-py3-none-any.whl", hash = "sha256:1021c241e8b6e1ca5a47e4d52601274ac078a89845cfde66c6d5f769819ffa1d"}, + {file = "mypy-0.982.tar.gz", hash = "sha256:85f7a343542dc8b1ed0a888cdd34dca56462654ef23aa673907305b260b3d746"}, +] +mypy-extensions = [ + {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, + {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, +] nodeenv = [ - {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, - {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, + {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"}, + {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"}, +] +ordered-set = [ + {file = "ordered-set-4.1.0.tar.gz", hash = "sha256:694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8"}, + {file = "ordered_set-4.1.0-py3-none-any.whl", hash = "sha256:046e1132c71fcf3330438a539928932caf51ddbc582496833e23de611de14562"}, ] packaging = [ - {file = "packaging-20.9-py2.py3-none-any.whl", hash = "sha256:67714da7f7bc052e064859c05c595155bd1ee9f69f76557e21f051443c20947a"}, - {file = "packaging-20.9.tar.gz", hash = "sha256:5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5"}, -] -pastel = [ - {file = "pastel-0.2.1-py2.py3-none-any.whl", hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364"}, - {file = "pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d"}, -] -pathlib2 = [ - {file = "pathlib2-2.3.7.post1-py2.py3-none-any.whl", hash = "sha256:5266a0fd000452f1b3467d782f079a4343c63aaa119221fbdc4e39577489ca5b"}, - {file = "pathlib2-2.3.7.post1.tar.gz", hash = "sha256:9fe0edad898b83c0c3e199c842b27ed216645d2e177757b2dd67384d4113c641"}, + {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, + {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, ] pexpect = [ {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, ] pkginfo = [ - {file = "pkginfo-1.8.2-py2.py3-none-any.whl", hash = "sha256:c24c487c6a7f72c66e816ab1796b96ac6c3d14d49338293d2141664330b55ffc"}, - {file = "pkginfo-1.8.2.tar.gz", hash = "sha256:542e0d0b6750e2e21c20179803e40ab50598d8066d51097a0e382cba9eb02bff"}, + {file = "pkginfo-1.8.3-py2.py3-none-any.whl", hash = "sha256:848865108ec99d4901b2f7e84058b6e7660aae8ae10164e015a6dcf5b242a594"}, + {file = "pkginfo-1.8.3.tar.gz", hash = "sha256:a84da4318dd86f870a9447a8c98340aa06216bfc6f2b7bdc4b8766984ae1867c"}, +] +pkgutil_resolve_name = [ + {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, + {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, ] platformdirs = [ - {file = "platformdirs-2.0.2-py2.py3-none-any.whl", hash = "sha256:0b9547541f599d3d242078ae60b927b3e453f0ad52f58b4d4bc3be86aed3ec41"}, - {file = "platformdirs-2.0.2.tar.gz", hash = "sha256:3b00d081227d9037bbbca521a5787796b5ef5000faea1e43fd76f1d44b06fcfa"}, + {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, + {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, ] pluggy = [ - {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, - {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, ] poetry-core = [ - {file = "poetry-core-1.0.8.tar.gz", hash = "sha256:951fc7c1f8d710a94cb49019ee3742125039fc659675912ea614ac2aa405b118"}, - {file = "poetry_core-1.0.8-py2.py3-none-any.whl", hash = "sha256:54b0fab6f7b313886e547a52f8bf52b8cf43e65b2633c65117f8755289061924"}, + {file = "poetry-core-1.2.0.tar.gz", hash = "sha256:ceccec95487e46c63a41761fbac5211b809bca22658e25a049f4c7da96269f71"}, + {file = "poetry_core-1.2.0-py3-none-any.whl", hash = "sha256:e248d36c1314dd60fbc66390791923ad8b58c629d3e587080b7c1537a1c0d30f"}, +] +poetry-plugin-export = [ + {file = "poetry-plugin-export-1.1.1.tar.gz", hash = "sha256:23e3e512a609b54ef5ac441339fc9e68fd41e61d15bd924eb0094b4fda1e30d0"}, + {file = "poetry_plugin_export-1.1.1-py3-none-any.whl", hash = "sha256:170fa367794d2385975d75298fe5509f772d35216ee36b8fa50c0350a064b761"}, ] pre-commit = [ - {file = "pre_commit-2.17.0-py2.py3-none-any.whl", hash = "sha256:725fa7459782d7bec5ead072810e47351de01709be838c2ce1726b9591dad616"}, - {file = "pre_commit-2.17.0.tar.gz", hash = "sha256:c1a8040ff15ad3d648c70cc3e55b93e4d2d5b687320955505587fd79bbaed06a"}, + {file = "pre_commit-2.20.0-py2.py3-none-any.whl", hash = "sha256:51a5ba7c480ae8072ecdb6933df22d2f812dc897d5fe848778116129a681aac7"}, + {file = "pre_commit-2.20.0.tar.gz", hash = "sha256:a978dac7bc9ec0bcee55c18a277d553b0f419d259dadb4b9418ff2d00eb43959"}, +] +psutil = [ + {file = "psutil-5.9.2-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:8f024fbb26c8daf5d70287bb3edfafa22283c255287cf523c5d81721e8e5d82c"}, + {file = "psutil-5.9.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:b2f248ffc346f4f4f0d747ee1947963613216b06688be0be2e393986fe20dbbb"}, + {file = "psutil-5.9.2-cp27-cp27m-win32.whl", hash = "sha256:b1928b9bf478d31fdffdb57101d18f9b70ed4e9b0e41af751851813547b2a9ab"}, + {file = "psutil-5.9.2-cp27-cp27m-win_amd64.whl", hash = "sha256:404f4816c16a2fcc4eaa36d7eb49a66df2d083e829d3e39ee8759a411dbc9ecf"}, + {file = "psutil-5.9.2-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:94e621c6a4ddb2573d4d30cba074f6d1aa0186645917df42c811c473dd22b339"}, + {file = "psutil-5.9.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:256098b4f6ffea6441eb54ab3eb64db9ecef18f6a80d7ba91549195d55420f84"}, + {file = "psutil-5.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:614337922702e9be37a39954d67fdb9e855981624d8011a9927b8f2d3c9625d9"}, + {file = "psutil-5.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:39ec06dc6c934fb53df10c1672e299145ce609ff0611b569e75a88f313634969"}, + {file = "psutil-5.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3ac2c0375ef498e74b9b4ec56df3c88be43fe56cac465627572dbfb21c4be34"}, + {file = "psutil-5.9.2-cp310-cp310-win32.whl", hash = "sha256:e4c4a7636ffc47b7141864f1c5e7d649f42c54e49da2dd3cceb1c5f5d29bfc85"}, + {file = "psutil-5.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:f4cb67215c10d4657e320037109939b1c1d2fd70ca3d76301992f89fe2edb1f1"}, + {file = "psutil-5.9.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:dc9bda7d5ced744622f157cc8d8bdd51735dafcecff807e928ff26bdb0ff097d"}, + {file = "psutil-5.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75291912b945a7351d45df682f9644540d564d62115d4a20d45fa17dc2d48f8"}, + {file = "psutil-5.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4018d5f9b6651f9896c7a7c2c9f4652e4eea53f10751c4e7d08a9093ab587ec"}, + {file = "psutil-5.9.2-cp36-cp36m-win32.whl", hash = "sha256:f40ba362fefc11d6bea4403f070078d60053ed422255bd838cd86a40674364c9"}, + {file = "psutil-5.9.2-cp36-cp36m-win_amd64.whl", hash = "sha256:9770c1d25aee91417eba7869139d629d6328a9422ce1cdd112bd56377ca98444"}, + {file = "psutil-5.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:42638876b7f5ef43cef8dcf640d3401b27a51ee3fa137cb2aa2e72e188414c32"}, + {file = "psutil-5.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:91aa0dac0c64688667b4285fa29354acfb3e834e1fd98b535b9986c883c2ce1d"}, + {file = "psutil-5.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fb54941aac044a61db9d8eb56fc5bee207db3bc58645d657249030e15ba3727"}, + {file = "psutil-5.9.2-cp37-cp37m-win32.whl", hash = "sha256:7cbb795dcd8ed8fd238bc9e9f64ab188f3f4096d2e811b5a82da53d164b84c3f"}, + {file = "psutil-5.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:5d39e3a2d5c40efa977c9a8dd4f679763c43c6c255b1340a56489955dbca767c"}, + {file = "psutil-5.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fd331866628d18223a4265371fd255774affd86244fc307ef66eaf00de0633d5"}, + {file = "psutil-5.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b315febaebae813326296872fdb4be92ad3ce10d1d742a6b0c49fb619481ed0b"}, + {file = "psutil-5.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7929a516125f62399d6e8e026129c8835f6c5a3aab88c3fff1a05ee8feb840d"}, + {file = "psutil-5.9.2-cp38-cp38-win32.whl", hash = "sha256:561dec454853846d1dd0247b44c2e66a0a0c490f937086930ec4b8f83bf44f06"}, + {file = "psutil-5.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:67b33f27fc0427483b61563a16c90d9f3b547eeb7af0ef1b9fe024cdc9b3a6ea"}, + {file = "psutil-5.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b3591616fa07b15050b2f87e1cdefd06a554382e72866fcc0ab2be9d116486c8"}, + {file = "psutil-5.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b29f581b5edab1f133563272a6011925401804d52d603c5c606936b49c8b97"}, + {file = "psutil-5.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4642fd93785a29353d6917a23e2ac6177308ef5e8be5cc17008d885cb9f70f12"}, + {file = "psutil-5.9.2-cp39-cp39-win32.whl", hash = "sha256:ed29ea0b9a372c5188cdb2ad39f937900a10fb5478dc077283bf86eeac678ef1"}, + {file = "psutil-5.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:68b35cbff92d1f7103d8f1db77c977e72f49fcefae3d3d2b91c76b0e7aef48b8"}, + {file = "psutil-5.9.2.tar.gz", hash = "sha256:feb861a10b6c3bb00701063b37e4afc754f8217f0f09c42280586bd6ac712b5c"}, ] ptyprocess = [ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, @@ -1201,31 +1450,65 @@ pylev = [ {file = "pylev-1.4.0.tar.gz", hash = "sha256:9e77e941042ad3a4cc305dcdf2b2dec1aec2fbe3dd9015d2698ad02b173006d1"}, ] pyparsing = [ - {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, - {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, + {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, + {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, +] +pyrsistent = [ + {file = "pyrsistent-0.18.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df46c854f490f81210870e509818b729db4488e1f30f2a1ce1698b2295a878d1"}, + {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d45866ececf4a5fff8742c25722da6d4c9e180daa7b405dc0a2a2790d668c26"}, + {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4ed6784ceac462a7d6fcb7e9b663e93b9a6fb373b7f43594f9ff68875788e01e"}, + {file = "pyrsistent-0.18.1-cp310-cp310-win32.whl", hash = "sha256:e4f3149fd5eb9b285d6bfb54d2e5173f6a116fe19172686797c056672689daf6"}, + {file = "pyrsistent-0.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:636ce2dc235046ccd3d8c56a7ad54e99d5c1cd0ef07d9ae847306c91d11b5fec"}, + {file = "pyrsistent-0.18.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e92a52c166426efbe0d1ec1332ee9119b6d32fc1f0bbfd55d5c1088070e7fc1b"}, + {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7a096646eab884bf8bed965bad63ea327e0d0c38989fc83c5ea7b8a87037bfc"}, + {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cdfd2c361b8a8e5d9499b9082b501c452ade8bbf42aef97ea04854f4a3f43b22"}, + {file = "pyrsistent-0.18.1-cp37-cp37m-win32.whl", hash = "sha256:7ec335fc998faa4febe75cc5268a9eac0478b3f681602c1f27befaf2a1abe1d8"}, + {file = "pyrsistent-0.18.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6455fc599df93d1f60e1c5c4fe471499f08d190d57eca040c0ea182301321286"}, + {file = "pyrsistent-0.18.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fd8da6d0124efa2f67d86fa70c851022f87c98e205f0594e1fae044e7119a5a6"}, + {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bfe2388663fd18bd8ce7db2c91c7400bf3e1a9e8bd7d63bf7e77d39051b85ec"}, + {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e3e1fcc45199df76053026a51cc59ab2ea3fc7c094c6627e93b7b44cdae2c8c"}, + {file = "pyrsistent-0.18.1-cp38-cp38-win32.whl", hash = "sha256:b568f35ad53a7b07ed9b1b2bae09eb15cdd671a5ba5d2c66caee40dbf91c68ca"}, + {file = "pyrsistent-0.18.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1b96547410f76078eaf66d282ddca2e4baae8964364abb4f4dcdde855cd123a"}, + {file = "pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5"}, + {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045"}, + {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:914474c9f1d93080338ace89cb2acee74f4f666fb0424896fcfb8d86058bf17c"}, + {file = "pyrsistent-0.18.1-cp39-cp39-win32.whl", hash = "sha256:1b34eedd6812bf4d33814fca1b66005805d3640ce53140ab8bbb1e2651b0d9bc"}, + {file = "pyrsistent-0.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:e24a828f57e0c337c8d8bb9f6b12f09dfdf0273da25fda9e314f0b684b415a07"}, + {file = "pyrsistent-0.18.1.tar.gz", hash = "sha256:d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96"}, ] pytest = [ - {file = "pytest-5.4.3-py3-none-any.whl", hash = "sha256:5c0db86b698e8f170ba4582a492248919255fcd4c79b1ee64ace34301fb589a1"}, - {file = "pytest-5.4.3.tar.gz", hash = "sha256:7979331bfcba207414f5e1263b5a0f8f521d0f457318836a7355531ed1a4c7d8"}, - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, + {file = "pytest-7.1.3-py3-none-any.whl", hash = "sha256:1377bda3466d70b55e3f5cecfa55bb7cfcf219c7964629b967c37cf0bda818b7"}, + {file = "pytest-7.1.3.tar.gz", hash = "sha256:4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39"}, ] pytest-cov = [ - {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"}, - {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"}, + {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"}, + {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"}, +] +pytest-forked = [ + {file = "pytest-forked-1.4.0.tar.gz", hash = "sha256:8b67587c8f98cbbadfdd804539ed5455b6ed03802203485dd2f53c1422d7440e"}, + {file = "pytest_forked-1.4.0-py3-none-any.whl", hash = "sha256:bbbb6717efc886b9d64537b41fb1497cfaf3c9601276be8da2cccfea5a3c8ad8"}, ] pytest-mock = [ - {file = "pytest-mock-1.13.0.tar.gz", hash = "sha256:e24a911ec96773022ebcc7030059b57cd3480b56d4f5d19b7c370ec635e6aed5"}, - {file = "pytest_mock-1.13.0-py2.py3-none-any.whl", hash = "sha256:67e414b3caef7bff6fc6bd83b22b5bc39147e4493f483c2679bc9d4dc485a94d"}, + {file = "pytest-mock-3.10.0.tar.gz", hash = "sha256:fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f"}, + {file = "pytest_mock-3.10.0-py3-none-any.whl", hash = "sha256:f4c973eeae0282963eb293eb173ce91b091a79c1334455acfac9ddee8a1c784b"}, +] +pytest-randomly = [ + {file = "pytest-randomly-3.12.0.tar.gz", hash = "sha256:d60c2db71ac319aee0fc6c4110a7597d611a8b94a5590918bfa8583f00caccb2"}, + {file = "pytest_randomly-3.12.0-py3-none-any.whl", hash = "sha256:f4f2e803daf5d1ba036cc22bf4fe9dbbf99389ec56b00e5cba732fb5c1d07fdd"}, ] pytest-sugar = [ - {file = "pytest-sugar-0.9.4.tar.gz", hash = "sha256:b1b2186b0a72aada6859bea2a5764145e3aaa2c1cfbb23c3a19b5f7b697563d3"}, + {file = "pytest-sugar-0.9.5.tar.gz", hash = "sha256:eea78b6f15b635277d3d90280cd386d8feea1cab0f9be75947a626e8b02b477d"}, + {file = "pytest_sugar-0.9.5-py2.py3-none-any.whl", hash = "sha256:3da42de32ce4e1e95b448d61c92804433f5d4058c0a765096991c2e93d5a289f"}, +] +pytest-xdist = [ + {file = "pytest-xdist-2.5.0.tar.gz", hash = "sha256:4580deca3ff04ddb2ac53eba39d76cb5dd5edeac050cb6fbc768b0dd712b4edf"}, + {file = "pytest_xdist-2.5.0-py3-none-any.whl", hash = "sha256:6fe5c74fec98906deb8f2d2b616b5c782022744978e7bd4695d39c8f42d0ce65"}, ] pywin32-ctypes = [ {file = "pywin32-ctypes-0.2.0.tar.gz", hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942"}, {file = "pywin32_ctypes-0.2.0-py2.py3-none-any.whl", hash = "sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98"}, ] -pyyaml = [ +PyYAML = [ {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, @@ -1233,6 +1516,13 @@ pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, @@ -1261,64 +1551,165 @@ pyyaml = [ {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] requests = [ - {file = "requests-2.25.1-py2.py3-none-any.whl", hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e"}, - {file = "requests-2.25.1.tar.gz", hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804"}, + {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, + {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, ] requests-toolbelt = [ {file = "requests-toolbelt-0.9.1.tar.gz", hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0"}, {file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl", hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f"}, ] -secretstorage = [ - {file = "SecretStorage-3.2.0-py3-none-any.whl", hash = "sha256:ed5279d788af258e4676fa26b6efb6d335a31f1f9f529b6f1e200f388fac33e1"}, - {file = "SecretStorage-3.2.0.tar.gz", hash = "sha256:46305c3847ee3f7252b284e0eee5590fa6341c891104a2fd2313f8798c615a82"}, - {file = "SecretStorage-3.3.2-py3-none-any.whl", hash = "sha256:755dc845b6ad76dcbcbc07ea3da75ae54bb1ea529eb72d15f83d26499a5df319"}, - {file = "SecretStorage-3.3.2.tar.gz", hash = "sha256:0a8eb9645b320881c222e827c26f4cfcf55363e8b374a021981ef886657a912f"}, +SecretStorage = [ + {file = "SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99"}, + {file = "SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77"}, +] +setuptools = [ + {file = "setuptools-65.4.1-py3-none-any.whl", hash = "sha256:1b6bdc6161661409c5f21508763dc63ab20a9ac2f8ba20029aaaa7fdb9118012"}, + {file = "setuptools-65.4.1.tar.gz", hash = "sha256:3050e338e5871e70c72983072fe34f6032ae1cdeeeb67338199c2f74e083a80e"}, ] shellingham = [ - {file = "shellingham-1.4.0-py2.py3-none-any.whl", hash = "sha256:536b67a0697f2e4af32ab176c00a50ac2899c5a05e0d8e2dadac8e58888283f9"}, - {file = "shellingham-1.4.0.tar.gz", hash = "sha256:4855c2458d6904829bd34c299f11fdeed7cfefbf8a2c522e4caea6cd76b3171e"}, + {file = "shellingham-1.5.0-py2.py3-none-any.whl", hash = "sha256:a8f02ba61b69baaa13facdba62908ca8690a94b8119b69f5ec5873ea85f7391b"}, + {file = "shellingham-1.5.0.tar.gz", hash = "sha256:72fb7f5c63103ca2cb91b23dee0c71fe8ad6fbfd46418ef17dbe40db51592dad"}, ] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] termcolor = [ - {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"}, + {file = "termcolor-2.0.1-py3-none-any.whl", hash = "sha256:7e597f9de8e001a3208c4132938597413b9da45382b6f1d150cff8d062b7aaa3"}, + {file = "termcolor-2.0.1.tar.gz", hash = "sha256:6b2cf769e93364a2676e1de56a7c0cff2cf5bd07f37e9cc80b0dd6320ebfe388"}, ] toml = [ {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] +tomli = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] tomlkit = [ - {file = "tomlkit-0.7.2-py2.py3-none-any.whl", hash = "sha256:173ad840fa5d2aac140528ca1933c29791b79a374a0861a80347f42ec9328117"}, - {file = "tomlkit-0.7.2.tar.gz", hash = "sha256:d7a454f319a7e9bd2e249f239168729327e4dd2d27b17dc68be264ad1ce36754"}, + {file = "tomlkit-0.11.5-py3-none-any.whl", hash = "sha256:f2ef9da9cef846ee027947dc99a45d6b68a63b0ebc21944649505bf2e8bc5fe7"}, + {file = "tomlkit-0.11.5.tar.gz", hash = "sha256:571854ebbb5eac89abcb4a2e47d7ea27b89bf29e09c35395da6f03dd4ae23d1c"}, ] tox = [ - {file = "tox-3.25.1-py2.py3-none-any.whl", hash = "sha256:c38e15f4733683a9cc0129fba078633e07eb0961f550a010ada879e95fb32632"}, - {file = "tox-3.25.1.tar.gz", hash = "sha256:c138327815f53bc6da4fe56baec5f25f00622ae69ef3fe4e1e385720e22486f9"}, + {file = "tox-3.26.0-py2.py3-none-any.whl", hash = "sha256:bf037662d7c740d15c9924ba23bb3e587df20598697bb985ac2b49bdc2d847f6"}, + {file = "tox-3.26.0.tar.gz", hash = "sha256:44f3c347c68c2c68799d7d44f1808f9d396fc8a1a500cbc624253375c7ae107e"}, +] +typed-ast = [ + {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, + {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"}, + {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, + {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"}, + {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, + {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"}, + {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"}, + {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"}, + {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, + {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, +] +types-html5lib = [ + {file = "types-html5lib-1.1.11.tar.gz", hash = "sha256:2b67bbaf3125b840720dc5890f243c3661583a503f0ed33166acf31c67e53717"}, + {file = "types_html5lib-1.1.11-py3-none-any.whl", hash = "sha256:dda54159be6ef58a67bf10bdd6fe5b4559e55e1df6bb18c47915281a8be0e5fd"}, +] +types-jsonschema = [ + {file = "types-jsonschema-4.16.1.tar.gz", hash = "sha256:95e31d2b90da218faf3d8fa34fa33ae55fc52c79b2cb7308755cc2d7d71b1096"}, + {file = "types_jsonschema-4.16.1-py3-none-any.whl", hash = "sha256:21ca9a227185b83655c71755b5834c36d66ca43f9de77c018d61c4f917f851ab"}, +] +types-requests = [ + {file = "types-requests-2.28.11.2.tar.gz", hash = "sha256:fdcd7bd148139fb8eef72cf4a41ac7273872cad9e6ada14b11ff5dfdeee60ed3"}, + {file = "types_requests-2.28.11.2-py3-none-any.whl", hash = "sha256:14941f8023a80b16441b3b46caffcbfce5265fd14555844d6029697824b5a2ef"}, +] +types-urllib3 = [ + {file = "types-urllib3-1.26.25.tar.gz", hash = "sha256:5aef0e663724eef924afa8b320b62ffef2c1736c1fa6caecfc9bc6c8ae2c3def"}, + {file = "types_urllib3-1.26.25-py3-none-any.whl", hash = "sha256:c1d78cef7bd581e162e46c20a57b2e1aa6ebecdcf01fd0713bb90978ff3e3427"}, ] typing-extensions = [ - {file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"}, - {file = "typing_extensions-3.10.0.2-py3-none-any.whl", hash = "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34"}, - {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, + {file = "typing_extensions-4.4.0-py3-none-any.whl", hash = "sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e"}, + {file = "typing_extensions-4.4.0.tar.gz", hash = "sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"}, ] urllib3 = [ - {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, - {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, + {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"}, + {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"}, ] virtualenv = [ - {file = "virtualenv-20.15.1-py2.py3-none-any.whl", hash = "sha256:b30aefac647e86af6d82bfc944c556f8f1a9c90427b2fb4e3bfbf338cb82becf"}, - {file = "virtualenv-20.15.1.tar.gz", hash = "sha256:288171134a2ff3bfb1a2f54f119e77cd1b81c29fc1265a2356f3e8d14c7d58c4"}, -] -wcwidth = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, + {file = "virtualenv-20.16.5-py3-none-any.whl", hash = "sha256:d07dfc5df5e4e0dbc92862350ad87a36ed505b978f6c39609dc489eadd5b0d27"}, + {file = "virtualenv-20.16.5.tar.gz", hash = "sha256:227ea1b9994fdc5ea31977ba3383ef296d7472ea85be9d6732e42a91c04e80da"}, ] webencodings = [ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, ] -zipp = [ - {file = "zipp-1.2.0-py2.py3-none-any.whl", hash = "sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921"}, - {file = "zipp-1.2.0.tar.gz", hash = "sha256:c70410551488251b0fee67b460fb9a536af8d6f9f008ad10ac51f615b6a521b1"}, +xattr = [ + {file = "xattr-0.9.9-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:58a9fb4fd19b467e88f4b75b5243706caa57e312d3aee757b53b57c7fd0f4ba9"}, + {file = "xattr-0.9.9-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e71efca59705c7abde5b7f76323ebe00ed2977f10cba4204b9421dada036b5ca"}, + {file = "xattr-0.9.9-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:1aad96b6603961c3d1ca1aaa8369b1a8d684a7b37357b2428087c286bf0e561c"}, + {file = "xattr-0.9.9-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:46cb74f98d31d9d70f975ec3e6554360a9bdcbb4b9fb50a69fabe54f9f928c97"}, + {file = "xattr-0.9.9-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:80c2db56058a687d7439be041f916cbeb2943fbe2623e53d5da721a4552d8991"}, + {file = "xattr-0.9.9-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:c360d1cc42e885b64d84f64de3c501dd7bce576248327ef583b4625ee63aa023"}, + {file = "xattr-0.9.9-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:debd87afe6bdf88c3689bde52eecf2b166388b13ef7388259d23223374db417d"}, + {file = "xattr-0.9.9-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:4280c9f33a8678828f1bbc3d3dc8b823b5e4a113ee5ecb0fb98bff60cc2b9ad1"}, + {file = "xattr-0.9.9-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:e0916ec1656d2071cd3139d1f52426825985d8ed076f981ef7f0bc13dfa8e96c"}, + {file = "xattr-0.9.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a517916fbf2f58a3222bb2048fe1eeff4e23e07a4ce6228a27de004c80bf53ab"}, + {file = "xattr-0.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e886c882b3b28c7a684c3e3daf46347da5428a46b88bc6d62c4867d574b90c54"}, + {file = "xattr-0.9.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:373e3d1fd9258438fc38d1438142d3659f36743f374a20457346ef26741ed441"}, + {file = "xattr-0.9.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a7beeb54ca140273b2f6320bb98b701ec30628af2ebe4eb30f7051419eb4ef3"}, + {file = "xattr-0.9.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3ca29cdaae9c47c625d84bb6c9046f7275cccde0ea805caa23ca58d3671f3f"}, + {file = "xattr-0.9.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c381d890931cd18b137ce3fb5c5f08b672c3c61e2e47b1a7442ee46e827abfe"}, + {file = "xattr-0.9.9-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:59c5783ccf57cf2700ce57d51a92134900ed26f6ab20d209f383fb898903fea6"}, + {file = "xattr-0.9.9-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:966b885b69d95362e2a12d39f84889cf857090e57263b5ac33409498aa00c160"}, + {file = "xattr-0.9.9-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efaaf0cb1ea8e9febb7baad301ae8cc9ad7a96fdfc5c6399d165e7a19e3e61ce"}, + {file = "xattr-0.9.9-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f19fa75ed1e9db86354efab29869cb2be6976d456bd7c89e67b118d5384a1d98"}, + {file = "xattr-0.9.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ca28ad06828244b315214ee35388f57e81e90aac2ceac3f32e42ae394e31b9c"}, + {file = "xattr-0.9.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:532c7f1656dd2fe937116b9e210229f716d7fc7ac142f9cdace7da92266d32e8"}, + {file = "xattr-0.9.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11c28033c17e98c67e0def9d6ebd415ad3c006a7bc3fee6bad79c5e52d0dff49"}, + {file = "xattr-0.9.9-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:473cabb30e544ea08c8c01c1ef18053147cdc8552d443ac97815e46fbb13c7d4"}, + {file = "xattr-0.9.9-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:c4a308522b444d090fbd66a385c9519b6b977818226921b0d2fc403667c93564"}, + {file = "xattr-0.9.9-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:82493434488aca72d88b5129dac8f212e7b8bdca7ceffe7bb977c850f2452e4e"}, + {file = "xattr-0.9.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e41d289706c7e8940f4d08e865da6a8ae988123e40a44f9a97ddc09e67795d7d"}, + {file = "xattr-0.9.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef08698e360cf43688dca3db3421b156b29948a714d5d089348073f463c11646"}, + {file = "xattr-0.9.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4eb10ac16ca8d534c0395425d52121e0c1981f808e1b3f577f6a5ec33d3853e4"}, + {file = "xattr-0.9.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5605fec07b0e964bd980cc70ec335b9eb1b7ac7c6f314c7c2d8f54b09104fe4c"}, + {file = "xattr-0.9.9-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:974e7d577ddb15e4552fb0ec10a4cfe09bdf6267365aa2b8394bb04637785aad"}, + {file = "xattr-0.9.9-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ad6777de922c638bfa87a0d7faebc5722ddef04a1210b2a8909289b58b769af0"}, + {file = "xattr-0.9.9-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3887e70873ebf0efbde32f9929ec1c7e45ec0013561743e2cc0406a91e51113b"}, + {file = "xattr-0.9.9-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83caa8e93a45a0f25f91b92d9b45f490c87bff74f02555df6312efeba0dacc31"}, + {file = "xattr-0.9.9-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e33ec0a1d913d946d1ab7509f37ee37306c45af735347f13b963df34ffe6e029"}, + {file = "xattr-0.9.9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:263c58dca83372260c5c195e0b59959e38e1f107f0b7350de82e3db38479036c"}, + {file = "xattr-0.9.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:125dfb9905428162349d3b8b825d9a18280893f0cb0db2a2467d5ef253fa6ce2"}, + {file = "xattr-0.9.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e243524e0dde16d7a2e1b52512ad2c6964df2143dd1c79b820dcb4c6c0822c20"}, + {file = "xattr-0.9.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01ec07d24a14406bdc6a123041c63a88e1c4a3f820e4a7d30f7609d57311b499"}, + {file = "xattr-0.9.9-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:85c1df5f1d209345ea96de137419e886a27bb55076b3ae01faacf35aafcf3a61"}, + {file = "xattr-0.9.9-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ca74d3eff92d6dc16e271fbad9cbab547fb9a0c983189c4031c3ff3d150dd871"}, + {file = "xattr-0.9.9-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7d17505e49ac70c0e71939c5aac96417a863583fb30a2d6304d5ac881230548f"}, + {file = "xattr-0.9.9-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ae47a6398d3c04623fa386a4aa2f66e5cd3cdb1a7e69d1bfaeb8c73983bf271"}, + {file = "xattr-0.9.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:809e2537d0aff9fca97dacf3245cbbaf711bbced5d1b0235a8d1906b04e26114"}, + {file = "xattr-0.9.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de3af84364f06d67b3662ccf7c1a73e1d389d8d274394e952651e7bf1bbd2718"}, + {file = "xattr-0.9.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b62cdad232d2d2dedd39b543701db8e3883444ec0d57ce3fab8f75e5f8b0301"}, + {file = "xattr-0.9.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b11d2eda397d47f7075743409683c233519ca52aa1dac109b413a4d8c15b740"}, + {file = "xattr-0.9.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:661c0a939aefdf071887121f534bb10588d69c7b2dfca5c486af2fc81a0786e8"}, + {file = "xattr-0.9.9-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5db7c2db320a8d5264d437d71f1eb7270a7e4a6545296e7766161d17752590b7"}, + {file = "xattr-0.9.9-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:83203e60cbaca9536d297e5039b285a600ff84e6e9e8536fe2d521825eeeb437"}, + {file = "xattr-0.9.9-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:42bfb4e4da06477e739770ac6942edbdc71e9fc3b497b67db5fba712fa8109c2"}, + {file = "xattr-0.9.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:67047d04d1c56ad4f0f5886085e91b0077238ab3faaec6492c3c21920c6566eb"}, + {file = "xattr-0.9.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:885782bc82ded1a3f684d54a1af259ae9fcc347fa54b5a05b8aad82b8a42044c"}, + {file = "xattr-0.9.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bc84ccec618b5aa089e7cee8b07fcc92d4069aac4053da604c8143a0d6b1381"}, + {file = "xattr-0.9.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baeff3e5dda8ea7e9424cfaee51829f46afe3836c30d02f343f9049c685681ca"}, + {file = "xattr-0.9.9.tar.gz", hash = "sha256:09cb7e1efb3aa1b4991d6be4eb25b73dc518b4fe894f0915f5b0dcede972f346"}, +] +zipp = [ + {file = "zipp-3.8.1-py3-none-any.whl", hash = "sha256:47c40d7fe183a6f21403a199b3e4192cca5774656965b0a4988ad2f8feb5f009"}, + {file = "zipp-3.8.1.tar.gz", hash = "sha256:05b45f1ee8f807d0cc928485ca40a07cb491cf092ff587c0df9cb1fd154848d2"}, ] diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml index 41f8d30edcba..c38762d38380 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml +++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml @@ -1,14 +1,31 @@ [tool.poetry] name = "poetry" -version = "1.1.14" +version = "1.2.1" description = "Python dependency management and packaging made easy." authors = [ - "Sébastien Eustace " + "Sébastien Eustace ", +] +maintainers = [ + "Arun Babu Neelicattu ", + "Bjorn Neergaard ", + "Branch Vincent ", + "Bryce Drennan ", + "Daniel Eades ", + "Randy Döring ", + "Steph Samson ", + "finswimmer ", ] license = "MIT" readme = "README.md" +packages = [ + { include = "poetry", from = "src" } +] +include = [ + { path = "tests", format = "sdist" } +] + homepage = "https://python-poetry.org/" repository = "https://github.com/python-poetry/poetry" documentation = "https://python-poetry.org/docs" @@ -20,104 +37,136 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules" ] +[tool.poetry.build] +generate-setup-file = false + # Requirements [tool.poetry.dependencies] -python = "^3.5" +python = "^3.7" -poetry-core = "~1.0.7" -cleo = "^0.8.1" -clikit = "^0.6.2" -crashtest = { version = "^0.3.0", python = "^3.6" } -requests = "^2.18" +poetry-core = "1.2.0" +poetry-plugin-export = "^1.0.7" +"backports.cached-property" = { version = "^1.0.2", python = "<3.8" } +cachecontrol = { version = "^0.12.9", extras = ["filecache"] } cachy = "^0.3.0" -requests-toolbelt = "^0.9.1" -cachecontrol = [ - { version = "^0.12.4", extras = ["filecache"], python = "<3.6" }, - { version = "^0.12.9", extras = ["filecache"], python = "^3.6" } -] -pkginfo = "^1.4" +cleo = "^1.0.0a5" +crashtest = "^0.3.0" html5lib = "^1.0" -shellingham = "^1.1" -tomlkit = ">=0.7.0,<1.0.0" +importlib-metadata = { version = "^4.4", python = "<3.10" } +jsonschema = "^4.10.0" +# keyring uses calver, so version is unclamped +keyring = ">=21.2.0" +# packaging uses calver, so version is unclamped +packaging = ">=20.4" pexpect = "^4.7.0" -packaging = "^20.4" -virtualenv = { version = "^20.0.26" } - -# The typing module is not in the stdlib in Python 2.7 -typing = { version = "^3.6", python = "~2.7" } - -# Use pathlib2 for Python 2.7 -pathlib2 = { version = "^2.3", python = "~2.7" } -# Use futures on Python 2.7 -futures = { version = "^3.3.0", python = "~2.7" } -# Use glob2 for Python 2.7 and 3.4 -glob2 = { version = "^0.6", python = "~2.7" } -# functools32 is needed for Python 2.7 -functools32 = { version = "^3.2.3", python = "~2.7" } -keyring = [ - { version = "^18.0.1", python = "~2.7" }, - { version = "^20.0.1", python = "~3.5" }, - { version = ">=21.2.0", python = "^3.6" } -] -# Use subprocess32 for Python 2.7 -subprocess32 = { version = "^3.5", python = "~2.7" } -importlib-metadata = {version = "^1.6.0", python = "<3.8"} +pkginfo = "^1.5" +platformdirs = "^2.5.2" +requests = "^2.18" +requests-toolbelt = "^0.9.1" +shellingham = "^1.5" +# exclude 0.11.2 and 0.11.3 due to https://github.com/sdispater/tomlkit/issues/225 +tomlkit = ">=0.11.1,<1.0.0,!=0.11.2,!=0.11.3" +# exclude 20.4.5 - 20.4.6 due to https://github.com/pypa/pip/issues/9953 +virtualenv = ">=20.4.3,!=20.4.5,!=20.4.6" +xattr = { version = "^0.9.7", markers = "sys_platform == 'darwin'" } +urllib3 = "^1.26.0" +dulwich = "^0.20.46" [tool.poetry.dev-dependencies] -pytest = [ - {version = "^4.1", python = "<3.5"}, - {version = "^5.4.3", python = "~3.5"}, - {version = "^6.2.5", python = ">=3.6"} -] -pytest-cov = "^2.5" -pytest-mock = "^1.9" -pre-commit = { version = "^2.6", python = "^3.6.1" } -tox = "^3.0" -pytest-sugar = "^0.9.2" -httpretty = "^1.0.3" -# We need to restrict the version of urllib3 to avoid -# httpretty breaking. This is fixed in httpretty >= 1.0.3 -# but it's not compatible with Python 2.7 and 3.5. -urllib3 = "~1.26.9" +tox = "^3.18" +pytest = "^7.1" +pytest-cov = "^3.0" +pytest-mock = "^3.5" +pytest-randomly = "^3.10" +pytest-sugar = "^0.9" +pytest-xdist = { version = "^2.5", extras = ["psutil"] } +pre-commit = "^2.6" +deepdiff = "^5.0" +httpretty = "^1.0" +typing-extensions = { version = "^4.0.0", python = "<3.8" } +zipp = { version = "^3.4", python = "<3.8" } +flatdict = "^4.0.1" +mypy = ">=0.971" +types-html5lib = ">=1.1.9" +types-jsonschema = ">=4.9.0" +types-requests = ">=2.28.8" [tool.poetry.scripts] -poetry = "poetry.console:main" +poetry = "poetry.console.application:main" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.1.0"] build-backend = "poetry.core.masonry.api" [tool.isort] +py_version = 37 profile = "black" force_single_line = true -atomic = true -include_trailing_comma = true -lines_after_imports = 2 +combine_as_imports = true lines_between_types = 1 -use_parentheses = true -src_paths = ["poetry", "tests"] -skip_glob = ["*/setup.py"] -filter_files = true -known_first_party = "poetry" +lines_after_imports = 2 +src_paths = ["src", "tests"] +extend_skip = ["setup.py"] +known_third_party = ["poetry.core"] [tool.black] -line-length = 88 -include = '\.pyi?$' -exclude = ''' -/( - \.eggs - | \.git - | \.hg - | \.mypy_cache - | \.tox - | \.venv - | _build - | buck-out - | build - | dist - | tests/.*/setup.py -)/ +target-version = ['py37'] +preview = true +force-exclude = ''' +.*/setup\.py$ ''' + + +[tool.mypy] +files = "src" +mypy_path = "src" +namespace_packages = true +explicit_package_bases = true +show_error_codes = true +strict = true +enable_error_code = [ + "ignore-without-code", + "redundant-expr", + "truthy-bool", +] + +# use of importlib-metadata backport at python3.7 makes it impossible to +# satisfy mypy without some ignores: but we get a different set of ignores at +# different python versions. +# +# , meanwhile suppress that +# warning. +[[tool.mypy.overrides]] +module = [ + 'poetry.console.commands.self.show.plugins', + 'poetry.installation.executor', + 'poetry.mixology.version_solver', + 'poetry.plugins.plugin_manager', + 'poetry.repositories.installed_repository', + 'poetry.utils.env', +] +warn_unused_ignores = false + +[[tool.mypy.overrides]] +module = [ + 'cachecontrol.*', + 'cachy.*', + 'cleo.*', + 'crashtest.*', + 'pexpect.*', + 'pkginfo.*', + 'requests_toolbelt.*', + 'shellingham.*', + 'virtualenv.*', + 'xattr.*', +] +ignore_missing_imports = true + +[tool.coverage.report] +exclude_lines = [ + "pragma: no cover", + "if TYPE_CHECKING:" +] diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json index 3bdc2f2ab825..614c08cd5526 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json +++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json @@ -1,8 +1,8 @@ { "owner": "python-poetry", "repo": "poetry", - "rev": "1.1.14", - "sha256": "1yx2a1xzid9zclf88wwczz7wgphsgpp3ksmha2jiacq898wrkwcz", + "rev": "1.2.1", + "sha256": "10y2vs28xbg5msr49wvhm3s780v4hb2jpxn7lzdin4l1qkrchdiq", "fetchSubmodules": true } diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/shell-scripts.nix b/pkgs/development/tools/poetry2nix/poetry2nix/shell-scripts.nix index cbaa4439afe1..23362a2e2376 100644 --- a/pkgs/development/tools/poetry2nix/poetry2nix/shell-scripts.nix +++ b/pkgs/development/tools/poetry2nix/poetry2nix/shell-scripts.nix @@ -34,6 +34,8 @@ python.pkgs.buildPythonPackage { dontConfigure = true; dontUseSetuptoolsCheck = true; + format = "poetry2nix"; + installPhase = '' mkdir -p $out/bin ${lib.concatStringsSep "\n" (lib.mapAttrsToList mkScript scripts)}