Merge pull request #194865 from adisbladis/poetry2nix-1_32_1

poetry2nix: 1.31.0 -> 1.33.0

authored by adisbladis and committed by GitHub 7b3510da 3543dfc3

+18140 -1312
+18 -3
pkgs/applications/networking/cluster/nixops/default.nix
··· 10 10 interpreter = ( 11 11 poetry2nix.mkPoetryPackages { 12 12 projectDir = ./.; 13 - python = pkgs.python39; 13 + python = pkgs.python310; 14 14 overrides = [ 15 15 poetry2nix.defaultPoetryOverrides 16 16 (import ./poetry-git-overlay.nix { inherit pkgs; }) ··· 42 42 overrides 43 43 44 44 # Make nixops pluginable 45 - (self: super: { 45 + (self: super: let 46 + # Create a fake sphinx directory that doesn't pull the entire setup hook and incorrect python machinery 47 + sphinx = pkgs.runCommand "sphinx" {} '' 48 + mkdir -p $out/bin 49 + for f in ${pkgs.python3.pkgs.sphinx}/bin/*; do 50 + ln -s $f $out/bin/$(basename $f) 51 + done 52 + ''; 53 + 54 + in { 46 55 nixops = super.__toPluginAble { 47 56 drv = super.nixops; 48 57 finalDrv = self.nixops; 49 58 50 - nativeBuildInputs = [ self.sphinx ]; 59 + nativeBuildInputs = [ sphinx ]; 60 + 51 61 postInstall = '' 52 62 doc_cache=$(mktemp -d) 53 63 sphinx-build -b man -d $doc_cache doc/ $out/share/man/man1 54 64 55 65 html=$(mktemp -d) 56 66 sphinx-build -b html -d $doc_cache doc/ $out/share/nixops/doc 67 + 68 + # Override buggy nixpkgs function 69 + pythonOutputDistPhase() { 70 + echo "no-op output dist phase" 71 + } 57 72 ''; 58 73 59 74 };
+6 -6
pkgs/applications/networking/cluster/nixops/poetry-git-overlay.nix
··· 5 5 _: { 6 6 src = pkgs.fetchgit { 7 7 url = "https://github.com/NixOS/nixops.git"; 8 - rev = "7220cbdc8a1cf2db5b3ad75b525faf145a5560a3"; 9 - sha256 = "199cw25cvjb8gxs56nc8ilq7v4560c6vgi1sh1vqrsqxayq1g4cs"; 8 + rev = "683baa66c613216a662aad3fd58b0cdc5cd41adb"; 9 + sha256 = "00yyzsybn1fjhkar64albxqp46d1v9c6lf1gd10lh9q72xq979sf"; 10 10 }; 11 11 } 12 12 ); ··· 15 15 _: { 16 16 src = pkgs.fetchgit { 17 17 url = "https://github.com/NixOS/nixops-aws.git"; 18 - rev = "bc9de10b77aa74c9b245fd533f829e4307b984e8"; 19 - sha256 = "12qsaxwlk67q04g13sqs4bxscpjspip5yphx6d8rq3iqki8yg4z9"; 18 + rev = "d8a6679c413edd1a7075b2fe08017b4c7fa3b3ce"; 19 + sha256 = "0aqkaskp6nkcnfxxf1n294xp4ggk36qldj5c3kzfgxim06jap7n5"; 20 20 }; 21 21 } 22 22 ); ··· 25 25 _: { 26 26 src = pkgs.fetchgit { 27 27 url = "https://github.com/nix-community/nixops-digitalocean.git"; 28 - rev = "b527b4bd27a419753e38c8231fd7528b3ea33886"; 29 - sha256 = "069jlgcjqgyb1v3dnrp2h0w4gv5hfx624iq2xazaix2wxpx9w7f8"; 28 + rev = "e977b7f11e264a6a2bff2dcbc7b94c6a97b92fff"; 29 + sha256 = "020fg1kjh3x57dj95micpq6mxjg5j50jy6cs5f10i33ayy3556v8"; 30 30 }; 31 31 } 32 32 );
+127 -112
pkgs/applications/networking/cluster/nixops/poetry.lock
··· 19 19 20 20 [[package]] 21 21 name = "boto3" 22 - version = "1.24.16" 22 + version = "1.24.88" 23 23 description = "The AWS SDK for Python" 24 24 category = "main" 25 25 optional = false 26 26 python-versions = ">= 3.7" 27 27 28 28 [package.dependencies] 29 - botocore = ">=1.27.16,<1.28.0" 29 + botocore = ">=1.27.88,<1.28.0" 30 30 jmespath = ">=0.7.1,<2.0.0" 31 31 s3transfer = ">=0.6.0,<0.7.0" 32 32 ··· 35 35 36 36 [[package]] 37 37 name = "botocore" 38 - version = "1.27.16" 38 + version = "1.27.88" 39 39 description = "Low-level, data-driven core of boto 3." 40 40 category = "main" 41 41 optional = false ··· 47 47 urllib3 = ">=1.25.4,<1.27" 48 48 49 49 [package.extras] 50 - crt = ["awscrt (==0.13.8)"] 50 + crt = ["awscrt (==0.14.0)"] 51 51 52 52 [[package]] 53 53 name = "certifi" 54 - version = "2022.6.15" 54 + version = "2022.9.24" 55 55 description = "Python package for providing Mozilla's CA Bundle." 56 56 category = "main" 57 57 optional = false ··· 59 59 60 60 [[package]] 61 61 name = "cffi" 62 - version = "1.15.0" 62 + version = "1.15.1" 63 63 description = "Foreign Function Interface for Python calling C code." 64 64 category = "main" 65 65 optional = false ··· 70 70 71 71 [[package]] 72 72 name = "charset-normalizer" 73 - version = "2.0.12" 73 + version = "2.1.1" 74 74 description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." 75 75 category = "main" 76 76 optional = false 77 - python-versions = ">=3.5.0" 77 + python-versions = ">=3.6.0" 78 78 79 79 [package.extras] 80 80 unicode_backport = ["unicodedata2"] ··· 91 91 cffi = ">=1.12" 92 92 93 93 [package.extras] 94 - docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] 95 - docstest = ["doc8", "pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] 94 + docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx_rtd_theme"] 95 + docstest = ["doc8", "pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] 96 96 pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] 97 97 sdist = ["setuptools-rust (>=0.11.4)"] 98 98 ssh = ["bcrypt (>=3.1.5)"] 99 - test = ["pytest (>=6.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] 99 + test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"] 100 100 101 101 [[package]] 102 102 name = "hetzner" ··· 108 108 109 109 [[package]] 110 110 name = "idna" 111 - version = "3.3" 111 + version = "3.4" 112 112 description = "Internationalized Domain Names in Applications (IDNA)" 113 113 category = "main" 114 114 optional = false ··· 131 131 python-versions = ">=2.7" 132 132 133 133 [package.extras] 134 - docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] 135 - testing = ["pytest (>=3.5,!=3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-black-multipy", "pytest-cov", "ecdsa", "feedparser", "numpy", "pandas", "pymongo", "scikit-learn", "sqlalchemy", "pytest-flake8 (<1.1.0)", "enum34", "jsonlib", "pytest-flake8 (>=1.1.1)"] 134 + docs = ["jaraco.packaging (>=3.2)", "rst.linker (>=1.9)", "sphinx"] 135 + testing = ["ecdsa", "enum34", "feedparser", "jsonlib", "numpy", "pandas", "pymongo", "pytest (>=3.5,!=3.7.3)", "pytest-black-multipy", "pytest-checkdocs (>=1.2.3)", "pytest-cov", "pytest-flake8 (<1.1.0)", "pytest-flake8 (>=1.1.1)", "scikit-learn", "sqlalchemy"] 136 136 "testing.libs" = ["simplejson", "ujson", "yajl"] 137 137 138 138 [[package]] 139 139 name = "libvirt-python" 140 - version = "8.4.0" 140 + version = "8.8.0" 141 141 description = "The libvirt virtualization API python binding" 142 142 category = "main" 143 143 optional = false ··· 149 149 description = "NixOS cloud provisioning and deployment tool" 150 150 category = "main" 151 151 optional = false 152 - python-versions = "^3.7" 152 + python-versions = "^3.10" 153 153 develop = false 154 154 155 155 [package.dependencies] 156 - pluggy = "^0.13.1" 156 + pluggy = "^1.0.0" 157 157 PrettyTable = "^0.7.2" 158 158 typeguard = "^2.7.1" 159 159 typing-extensions = "^3.7.4" ··· 162 162 type = "git" 163 163 url = "https://github.com/NixOS/nixops.git" 164 164 reference = "master" 165 - resolved_reference = "7220cbdc8a1cf2db5b3ad75b525faf145a5560a3" 165 + resolved_reference = "683baa66c613216a662aad3fd58b0cdc5cd41adb" 166 166 167 167 [[package]] 168 168 name = "nixops-aws" ··· 183 183 [package.source] 184 184 type = "git" 185 185 url = "https://github.com/NixOS/nixops-aws.git" 186 - reference = "master" 187 - resolved_reference = "bc9de10b77aa74c9b245fd533f829e4307b984e8" 186 + reference = "HEAD" 187 + resolved_reference = "d8a6679c413edd1a7075b2fe08017b4c7fa3b3ce" 188 188 189 189 [[package]] 190 190 name = "nixops-digitalocean" ··· 196 196 develop = false 197 197 198 198 [package.dependencies] 199 - nixops = {git = "https://github.com/NixOS/nixops.git", branch = "master"} 199 + nixops = {git = "https://github.com/NixOS/nixops.git"} 200 200 python-digitalocean = "^1.15.0" 201 201 202 202 [package.source] 203 203 type = "git" 204 204 url = "https://github.com/nix-community/nixops-digitalocean.git" 205 - reference = "master" 206 - resolved_reference = "b527b4bd27a419753e38c8231fd7528b3ea33886" 205 + reference = "HEAD" 206 + resolved_reference = "e977b7f11e264a6a2bff2dcbc7b94c6a97b92fff" 207 207 208 208 [[package]] 209 209 name = "nixops-encrypted-links" ··· 215 215 develop = false 216 216 217 217 [package.dependencies] 218 - nixops = {git = "https://github.com/NixOS/nixops.git", branch = "master"} 218 + nixops = {git = "https://github.com/NixOS/nixops.git"} 219 219 220 220 [package.source] 221 221 type = "git" 222 222 url = "https://github.com/nix-community/nixops-encrypted-links.git" 223 - reference = "master" 223 + reference = "HEAD" 224 224 resolved_reference = "e2f196fce15fcfb00d18c055e1ac53aec33b8fb1" 225 225 226 226 [[package]] ··· 241 241 [package.source] 242 242 type = "git" 243 243 url = "https://github.com/nix-community/nixops-gce.git" 244 - reference = "master" 244 + reference = "HEAD" 245 245 resolved_reference = "712453027486e62e087b9c91e4a8a171eebb6ddd" 246 246 247 247 [[package]] ··· 254 254 develop = false 255 255 256 256 [package.dependencies] 257 - nixops = {git = "https://github.com/NixOS/nixops.git", branch = "master"} 257 + nixops = {git = "https://github.com/NixOS/nixops.git"} 258 258 259 259 [package.source] 260 260 type = "git" 261 261 url = "https://github.com/hercules-ci/nixops-hercules-ci.git" 262 - reference = "master" 262 + reference = "HEAD" 263 263 resolved_reference = "e601d5baffd003fd5f22deeaea0cb96444b054dc" 264 264 265 265 [[package]] ··· 280 280 [package.source] 281 281 type = "git" 282 282 url = "https://github.com/NixOS/nixops-hetzner" 283 - reference = "master" 283 + reference = "HEAD" 284 284 resolved_reference = "bc7a68070c7371468bcc8bf6e36baebc6bd2da35" 285 285 286 286 [[package]] ··· 294 294 295 295 [package.dependencies] 296 296 libvirt-python = "^8.0" 297 - nixops = {git = "https://github.com/NixOS/nixops.git", branch = "master"} 297 + nixops = {git = "https://github.com/NixOS/nixops.git"} 298 298 299 299 [package.source] 300 300 type = "git" 301 301 url = "https://github.com/nix-community/nixops-libvirtd.git" 302 - reference = "master" 302 + reference = "HEAD" 303 303 resolved_reference = "bc3cf1c5c774a80e05991ca040baa2b23e3ecd51" 304 304 305 305 [[package]] ··· 317 317 [package.source] 318 318 type = "git" 319 319 url = "https://github.com/nix-community/nixops-vbox.git" 320 - reference = "master" 320 + reference = "HEAD" 321 321 resolved_reference = "2729672865ebe2aa973c062a3fbddda8c1359da0" 322 322 323 323 [[package]] ··· 340 340 341 341 [[package]] 342 342 name = "pluggy" 343 - version = "0.13.1" 343 + version = "1.0.0" 344 344 description = "plugin and hook calling mechanisms for python" 345 345 category = "main" 346 346 optional = false 347 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 347 + python-versions = ">=3.6" 348 348 349 349 [package.extras] 350 350 dev = ["pre-commit", "tox"] 351 + testing = ["pytest", "pytest-benchmark"] 351 352 352 353 [[package]] 353 354 name = "prettytable" ··· 390 391 391 392 [[package]] 392 393 name = "requests" 393 - version = "2.28.0" 394 + version = "2.28.1" 394 395 description = "Python HTTP for Humans." 395 396 category = "main" 396 397 optional = false ··· 398 399 399 400 [package.dependencies] 400 401 certifi = ">=2017.4.17" 401 - charset-normalizer = ">=2.0.0,<2.1.0" 402 + charset-normalizer = ">=2,<3" 402 403 idna = ">=2.5,<4" 403 404 urllib3 = ">=1.21.1,<1.27" 404 405 405 406 [package.extras] 406 407 socks = ["PySocks (>=1.5.6,!=1.5.7)"] 407 - use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] 408 + use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"] 408 409 409 410 [[package]] 410 411 name = "s3transfer" ··· 437 438 python-versions = ">=3.5.3" 438 439 439 440 [package.extras] 440 - doc = ["sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"] 441 - test = ["pytest", "typing-extensions", "mypy"] 441 + doc = ["sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] 442 + test = ["mypy", "pytest", "typing-extensions"] 442 443 443 444 [[package]] 444 445 name = "typing-extensions" ··· 450 451 451 452 [[package]] 452 453 name = "urllib3" 453 - version = "1.26.9" 454 + version = "1.26.12" 454 455 description = "HTTP library with thread-safe connection pooling, file post, and more." 455 456 category = "main" 456 457 optional = false 457 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" 458 + python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" 458 459 459 460 [package.extras] 460 - brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"] 461 - secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] 461 + brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] 462 + secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] 462 463 socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] 463 464 464 465 [metadata] 465 466 lock-version = "1.1" 466 - python-versions = "^3.9" 467 - content-hash = "781bb4378f4491b427372322c3ec71131ed7a28e0a166e0bc43969b016b5d926" 467 + python-versions = "^3.10" 468 + content-hash = "dd5b4dffae860fa56cf6c00bf5aea7a89d7501b2839fdd5e25c5782548092e55" 468 469 469 470 [metadata.files] 470 471 apache-libcloud = [ ··· 476 477 {file = "boto-2.49.0.tar.gz", hash = "sha256:ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a"}, 477 478 ] 478 479 boto3 = [ 479 - {file = "boto3-1.24.16-py3-none-any.whl", hash = "sha256:2c6f7e4103d41ca07d6b934a6612e4b9a2666eae36e8289f88726868534b8de2"}, 480 - {file = "boto3-1.24.16.tar.gz", hash = "sha256:422c000ff2ee5226e89fe427a9c4c09db095d69c179a3bcc3cfba37cbc5e787e"}, 480 + {file = "boto3-1.24.88-py3-none-any.whl", hash = "sha256:6b4cf1cd0be65202c4cf0e4c69099bac3620bcd4049ca25a5e223c668401dd69"}, 481 + {file = "boto3-1.24.88.tar.gz", hash = "sha256:93934343cac76084600a520e5be70c52152364d0c410681c2e25c2290f0e151c"}, 481 482 ] 482 483 botocore = [ 483 - {file = "botocore-1.27.16-py3-none-any.whl", hash = "sha256:f117d59899d21beeb200130d7af2090a8112d702a06e2c2794ef576bcea36773"}, 484 - {file = "botocore-1.27.16.tar.gz", hash = "sha256:b3b9710902f675a11f5bfd46afda770150530876ae6541d099584462bf949fd1"}, 484 + {file = "botocore-1.27.88-py3-none-any.whl", hash = "sha256:de4e087b24cd3bc369eb2e27f8fe94a6499f7dea08c919fba13cefb2496bd2bb"}, 485 + {file = "botocore-1.27.88.tar.gz", hash = "sha256:ded0a4035baf91eb358ef501c92a8512543f5ab7658f459df3077a70a555b5cd"}, 485 486 ] 486 487 certifi = [ 487 - {file = "certifi-2022.6.15-py3-none-any.whl", hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412"}, 488 - {file = "certifi-2022.6.15.tar.gz", hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d"}, 488 + {file = "certifi-2022.9.24-py3-none-any.whl", hash = "sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382"}, 489 + {file = "certifi-2022.9.24.tar.gz", hash = "sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14"}, 489 490 ] 490 491 cffi = [ 491 - {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"}, 492 - {file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"}, 493 - {file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"}, 494 - {file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"}, 495 - {file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"}, 496 - {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"}, 497 - {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"}, 498 - {file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"}, 499 - {file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"}, 500 - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"}, 501 - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"}, 502 - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"}, 503 - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"}, 504 - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"}, 505 - {file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"}, 506 - {file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"}, 507 - {file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"}, 508 - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"}, 509 - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"}, 510 - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"}, 511 - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"}, 512 - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"}, 513 - {file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"}, 514 - {file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"}, 515 - {file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"}, 516 - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"}, 517 - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"}, 518 - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"}, 519 - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"}, 520 - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"}, 521 - {file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"}, 522 - {file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"}, 523 - {file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"}, 524 - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"}, 525 - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"}, 526 - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"}, 527 - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"}, 528 - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"}, 529 - {file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"}, 530 - {file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"}, 531 - {file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"}, 532 - {file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"}, 533 - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"}, 534 - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"}, 535 - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"}, 536 - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"}, 537 - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"}, 538 - {file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"}, 539 - {file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"}, 540 - {file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"}, 492 + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, 493 + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, 494 + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, 495 + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, 496 + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, 497 + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, 498 + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, 499 + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, 500 + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, 501 + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, 502 + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, 503 + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, 504 + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, 505 + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, 506 + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, 507 + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, 508 + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, 509 + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, 510 + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, 511 + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, 512 + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, 513 + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, 514 + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, 515 + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, 516 + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, 517 + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, 518 + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, 519 + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, 520 + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, 521 + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, 522 + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, 523 + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, 524 + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, 525 + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, 526 + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, 527 + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, 528 + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, 529 + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, 530 + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, 531 + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, 532 + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, 533 + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, 534 + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, 535 + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, 536 + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, 537 + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, 538 + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, 539 + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, 540 + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, 541 + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, 542 + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, 543 + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, 544 + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, 545 + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, 546 + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, 547 + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, 548 + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, 549 + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, 550 + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, 551 + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, 552 + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, 553 + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, 554 + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, 555 + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, 541 556 ] 542 557 charset-normalizer = [ 543 - {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, 544 - {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, 558 + {file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"}, 559 + {file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"}, 545 560 ] 546 561 cryptography = [ 547 562 {file = "cryptography-3.4.8-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:a00cf305f07b26c351d8d4e1af84ad7501eca8a342dedf24a7acb0e7b7406e14"}, ··· 568 583 {file = "hetzner-0.8.3.tar.gz", hash = "sha256:9a43dbbeb4a1f3efc86c5fe1c1d7039aaa635dfdb829506ec3aa34382d3a7114"}, 569 584 ] 570 585 idna = [ 571 - {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, 572 - {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, 586 + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, 587 + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, 573 588 ] 574 589 jmespath = [ 575 590 {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, ··· 580 595 {file = "jsonpickle-2.2.0.tar.gz", hash = "sha256:7b272918b0554182e53dc340ddd62d9b7f902fec7e7b05620c04f3ccef479a0e"}, 581 596 ] 582 597 libvirt-python = [ 583 - {file = "libvirt-python-8.4.0.tar.gz", hash = "sha256:6d252ad4e0f765620bbde450be8f2b844e4f85c568b207ac644f52c6a982f46c"}, 598 + {file = "libvirt-python-8.8.0.tar.gz", hash = "sha256:3441dd34c8936393e195a1b046bc2cab1b14d35d66772e8a51fe4d9735ec6349"}, 584 599 ] 585 600 nixops = [] 586 601 nixops-aws = [] ··· 593 608 nixopsvbox = [] 594 609 nixos-modules-contrib = [] 595 610 pluggy = [ 596 - {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, 597 - {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, 611 + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, 612 + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, 598 613 ] 599 614 prettytable = [ 600 615 {file = "prettytable-0.7.2.tar.bz2", hash = "sha256:853c116513625c738dc3ce1aee148b5b5757a86727e67eff6502c7ca59d43c36"}, ··· 614 629 {file = "python_digitalocean-1.17.0-py3-none-any.whl", hash = "sha256:0032168e022e85fca314eb3f8dfaabf82087f2ed40839eb28f1eeeeca5afb1fa"}, 615 630 ] 616 631 requests = [ 617 - {file = "requests-2.28.0-py3-none-any.whl", hash = "sha256:bc7861137fbce630f17b03d3ad02ad0bf978c844f3536d0edda6499dafce2b6f"}, 618 - {file = "requests-2.28.0.tar.gz", hash = "sha256:d568723a7ebd25875d8d1eaf5dfa068cd2fc8194b2e483d7b1f7c81918dbec6b"}, 632 + {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, 633 + {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, 619 634 ] 620 635 s3transfer = [ 621 636 {file = "s3transfer-0.6.0-py3-none-any.whl", hash = "sha256:06176b74f3a15f61f1b4f25a1fc29a4429040b7647133a463da8fa5bd28d5ecd"}, ··· 635 650 {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, 636 651 ] 637 652 urllib3 = [ 638 - {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, 639 - {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, 653 + {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"}, 654 + {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"}, 640 655 ]
+1 -1
pkgs/applications/networking/cluster/nixops/pyproject.toml
··· 5 5 authors = ["Adam Hoese <adam.hose@tweag.io>"] 6 6 7 7 [tool.poetry.dependencies] 8 - python = "^3.9" 8 + python = "^3.10" 9 9 nixops = {git = "https://github.com/NixOS/nixops.git"} 10 10 nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"} 11 11 nixops-digitalocean = {git = "https://github.com/nix-community/nixops-digitalocean.git"}
+2 -1
pkgs/applications/networking/cluster/nixops/shell.nix
··· 2 2 3 3 pkgs.mkShell { 4 4 packages = [ 5 + pkgs.python310 5 6 pkgs.poetry2nix.cli 6 7 pkgs.pkg-config 7 8 pkgs.libvirt 8 - pkgs.python39Packages.poetry 9 + pkgs.poetry 9 10 ]; 10 11 }
+60 -31
pkgs/development/tools/poetry2nix/poetry2nix/default.nix
··· 5 5 }: 6 6 let 7 7 # Poetry2nix version 8 - version = "1.31.0"; 8 + version = "1.33.0"; 9 9 10 - inherit (poetryLib) isCompatible readTOML moduleName; 10 + inherit (poetryLib) isCompatible readTOML normalizePackageName normalizePackageSet; 11 11 12 12 # Map SPDX identifiers to license names 13 13 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 17 # Experimental withPlugins functionality 18 18 toPluginAble = (import ./plugins.nix { inherit pkgs lib; }).toPluginAble; 19 19 20 + # List of known build systems that are passed through from nixpkgs unmodified 21 + knownBuildSystems = builtins.fromJSON (builtins.readFile ./known-build-systems.json); 22 + nixpkgsBuildSystems = lib.subtractLists [ "poetry" "poetry-core" ] knownBuildSystems; 23 + 20 24 mkInputAttrs = 21 25 { py 22 26 , pyProject 23 27 , attrs 24 28 , includeBuildSystem ? true 29 + , groups ? [ ] 25 30 }: 26 31 let 27 32 getInputs = attr: attrs.${attr} or [ ]; 28 33 29 34 # Get dependencies and filter out depending on interpreter version 30 - getDeps = depAttr: 35 + getDeps = depSet: 31 36 let 32 37 compat = isCompatible (poetryLib.getPythonVersion py); 33 - deps = pyProject.tool.poetry.${depAttr} or { }; 34 - depAttrs = builtins.map (d: lib.toLower d) (builtins.attrNames deps); 38 + depAttrs = builtins.map (d: lib.toLower d) (builtins.attrNames depSet); 35 39 in 36 40 ( 37 41 builtins.map 38 42 ( 39 43 dep: 40 44 let 41 - pkg = py.pkgs."${moduleName dep}"; 42 - constraints = deps.${dep}.python or ""; 45 + pkg = py.pkgs."${normalizePackageName dep}"; 46 + constraints = depSet.${dep}.python or ""; 43 47 isCompat = compat constraints; 44 48 in 45 49 if isCompat then pkg else null ··· 57 61 in 58 62 { 59 63 buildInputs = mkInput "buildInputs" (if includeBuildSystem then buildSystemPkgs else [ ]); 60 - propagatedBuildInputs = mkInput "propagatedBuildInputs" (getDeps "dependencies") ++ ([ py.pkgs.setuptools ]); 64 + propagatedBuildInputs = mkInput "propagatedBuildInputs" ( 65 + (getDeps pyProject.tool.poetry."dependencies" or { }) 66 + ++ ( 67 + # >=poetry-1.2.0 dependency groups 68 + if pyProject.tool.poetry.group or { } != { } 69 + then lib.flatten (map (g: getDeps pyProject.tool.poetry.group.${g}.dependencies) groups) 70 + else [ ] 71 + ) 72 + ); 61 73 nativeBuildInputs = mkInput "nativeBuildInputs" [ ]; 62 - checkInputs = mkInput "checkInputs" (getDeps "dev-dependencies"); 74 + checkInputs = mkInput "checkInputs" ( 75 + getDeps (pyProject.tool.poetry."dev-dependencies" or { }) # <poetry-1.2.0 76 + ++ getDeps (pyProject.tool.poetry.group."dev".dependencies or { }) # >=poetry-1.2.0 77 + ); 63 78 }; 64 79 65 80 ··· 115 130 # Example: { my-app = ./src; } 116 131 , editablePackageSources ? { } 117 132 , pyProject ? readTOML pyproject 118 - }@attrs: 133 + , groups ? [ ] 134 + }: 119 135 let 120 136 /* The default list of poetry2nix override overlays */ 121 137 mkEvalPep508 = import ./pep508.nix { ··· 144 160 let 145 161 lockfiles = lib.getAttrFromPath [ "metadata" "files" ] poetryLock; 146 162 in 147 - lib.listToAttrs (lib.mapAttrsToList (n: v: { name = moduleName n; value = v; }) lockfiles); 148 - specialAttrs = [ 149 - "overrides" 150 - "poetrylock" 151 - "projectDir" 152 - "pwd" 153 - "preferWheels" 154 - ]; 155 - passedAttrs = builtins.removeAttrs attrs specialAttrs; 163 + lib.listToAttrs (lib.mapAttrsToList (n: v: { name = normalizePackageName n; value = v; }) lockfiles); 156 164 evalPep508 = mkEvalPep508 python; 157 165 158 166 # Filter packages by their PEP508 markers & pyproject interpreter version ··· 170 178 # closure as python can only ever have one version of a dependency 171 179 baseOverlay = self: super: 172 180 let 173 - getDep = depName: self.${depName}; 174 181 lockPkgs = builtins.listToAttrs ( 175 182 builtins.map 176 183 ( 177 - pkgMeta: rec { 178 - name = moduleName pkgMeta.name; 184 + pkgMeta: 185 + if builtins.elem pkgMeta.name nixpkgsBuildSystems then { 186 + name = pkgMeta.name; 187 + value = super."${pkgMeta.name}"; 188 + } else rec { 189 + name = normalizePackageName pkgMeta.name; 179 190 value = self.mkPoetryDep ( 180 191 pkgMeta // { 181 192 inherit pwd preferWheels; 182 193 source = pkgMeta.source or null; 183 194 files = lockFiles.${name}; 184 195 pythonPackages = self; 185 - sourceSpec = pyProject.tool.poetry.dependencies.${name} or pyProject.tool.poetry.dev-dependencies.${name} or { }; 196 + 197 + sourceSpec = 198 + let 199 + normalizedName = normalizePackageName pkgMeta.name; 200 + in 201 + ( 202 + (normalizePackageSet pyProject.tool.poetry.dependencies or { }).${normalizedName} 203 + or (normalizePackageSet pyProject.tool.poetry.dev-dependencies or { }).${normalizedName} 204 + or (normalizePackageSet pyProject.tool.poetry.group.dev.dependencies { }).${normalizedName} # Poetry 1.2.0+ 205 + or { } 206 + ); 186 207 } 187 208 ); 188 209 } ··· 231 252 super) 232 253 233 254 # Null out any filtered packages, we don't want python.pkgs from nixpkgs 234 - (self: super: builtins.listToAttrs (builtins.map (x: { name = moduleName x.name; value = null; }) incompatible)) 255 + (self: super: builtins.listToAttrs (builtins.map (x: { name = normalizePackageName x.name; value = null; }) incompatible)) 235 256 # Create poetry2nix layer 236 257 baseOverlay 237 258 ··· 241 262 packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) overlays; 242 263 py = python.override { inherit packageOverrides; self = py; }; 243 264 244 - inputAttrs = mkInputAttrs { inherit py pyProject; attrs = { }; includeBuildSystem = false; }; 265 + inputAttrs = mkInputAttrs { inherit py pyProject groups; attrs = { }; includeBuildSystem = false; }; 245 266 246 267 requiredPythonModules = python.pkgs.requiredPythonModules; 247 268 /* Include all the nested dependencies which are required for each package. ··· 276 297 , preferWheels ? false 277 298 , editablePackageSources ? { } 278 299 , extraPackages ? ps: [ ] 300 + , groups ? [ "dev" ] 279 301 }: 280 302 let 281 - inherit (lib) elem hasAttr; 303 + inherit (lib) hasAttr; 282 304 283 305 pyProject = readTOML pyproject; 284 306 ··· 294 316 allEditablePackageSources = ( 295 317 (getEditableDeps (pyProject.tool.poetry."dependencies" or { })) 296 318 // (getEditableDeps (pyProject.tool.poetry."dev-dependencies" or { })) 319 + // ( 320 + # Poetry>=1.2.0 321 + if pyProject.tool.poetry.group or { } != { } then 322 + builtins.foldl' (acc: g: acc // getEditableDeps pyProject.tool.poetry.group.${g}.dependencies) { } groups 323 + else { } 324 + ) 297 325 // editablePackageSources 298 326 ); 299 327 ··· 302 330 excludedEditablePackageNames; 303 331 304 332 poetryPython = self.mkPoetryPackages { 305 - inherit pyproject poetrylock overrides python pwd preferWheels pyProject; 333 + inherit pyproject poetrylock overrides python pwd preferWheels pyProject groups; 306 334 editablePackageSources = editablePackageSources'; 307 335 }; 308 336 ··· 335 363 , python ? pkgs.python3 336 364 , pwd ? projectDir 337 365 , preferWheels ? false 366 + , groups ? [ ] 338 367 , ... 339 368 }@attrs: 340 369 let 341 370 poetryPython = self.mkPoetryPackages { 342 - inherit pyproject poetrylock overrides python pwd preferWheels; 371 + inherit pyproject poetrylock overrides python pwd preferWheels groups; 343 372 }; 344 373 py = poetryPython.python; 345 374 ··· 354 383 ]; 355 384 passedAttrs = builtins.removeAttrs attrs specialAttrs; 356 385 357 - inputAttrs = mkInputAttrs { inherit py pyProject attrs; }; 386 + inputAttrs = mkInputAttrs { inherit py pyProject attrs groups; }; 358 387 359 388 app = py.pkgs.buildPythonPackage ( 360 389 passedAttrs // inputAttrs // { ··· 363 392 py.pkgs.removeGitDependenciesHook 364 393 ]; 365 394 } // { 366 - pname = moduleName pyProject.tool.poetry.name; 395 + pname = normalizePackageName pyProject.tool.poetry.name; 367 396 version = pyProject.tool.poetry.version; 368 397 369 398 inherit src; ··· 445 474 446 475 Can be overriden by calling defaultPoetryOverrides.overrideOverlay which takes an overlay function 447 476 */ 448 - defaultPoetryOverrides = self.mkDefaultPoetryOverrides (import ./overrides { inherit pkgs lib; }); 477 + defaultPoetryOverrides = self.mkDefaultPoetryOverrides (import ./overrides { inherit pkgs lib poetryLib; }); 449 478 450 479 /* 451 480 Convenience functions for specifying overlays with or without the poerty2nix default overrides
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/editable.nix
··· 6 6 , editablePackageSources 7 7 }: 8 8 let 9 - name = poetryLib.moduleName pyProject.tool.poetry.name; 9 + name = poetryLib.normalizePackageName pyProject.tool.poetry.name; 10 10 11 11 # Just enough standard PKG-INFO fields for an editable installation 12 12 pkgInfoFields = {
+12 -3
pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py
··· 80 80 exit(1) 81 81 82 82 package_file = open(package_filename, "wb") 83 - # Sometimes the href is a relative path 84 - if urlparse(parser.sources[package_filename]).netloc == "": 83 + # Sometimes the href is a relative or absolute path within the index's domain. 84 + indicated_url = urlparse(parser.sources[package_filename]) 85 + if indicated_url.netloc == "": 85 86 parsed_url = urlparse(index_url) 87 + 88 + if indicated_url.path.startswith("/"): 89 + # An absolute path within the index's domain. 90 + path = parser.sources[package_filename] 91 + else: 92 + # A relative path. 93 + path = parsed_url.path + "/" + parser.sources[package_filename] 94 + 86 95 package_url = urlunparse( 87 96 ( 88 97 parsed_url.scheme, 89 98 parsed_url.netloc, 90 - parsed_url.path + "/" + parser.sources[package_filename], 99 + path, 91 100 None, 92 101 None, 93 102 None,
+1
pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix
··· 70 70 filenames = builtins.concatStringsSep " " [ 71 71 "pyproject.toml" 72 72 "README.md" 73 + "LICENSE" 73 74 ]; 74 75 }; 75 76 } ./fixup-hook.sh
+1
pkgs/development/tools/poetry2nix/poetry2nix/hooks/pyproject-without-special-deps.py
··· 22 22 any_removed |= dep.pop(field, None) is not None 23 23 if any_removed: 24 24 dep["version"] = "*" 25 + dep.pop("develop", None) 25 26 26 27 output.write(tomlkit.dumps(data)) 27 28
+12
pkgs/development/tools/poetry2nix/poetry2nix/known-build-systems.json
··· 1 + [ 2 + "poetry", 3 + "poetry-core", 4 + "flit", 5 + "flit-core", 6 + "pbr", 7 + "flitBuildHook", 8 + "cython", 9 + "hatchling", 10 + "setuptools", 11 + "setuptools-scm" 12 + ]
+12 -3
pkgs/development/tools/poetry2nix/poetry2nix/lib.nix
··· 8 8 genList (i: if i == idx then value else (builtins.elemAt list i)) (length list) 9 9 ); 10 10 11 - # Do some canonicalisation of module names 12 - moduleName = name: lib.toLower (lib.replaceStrings [ "_" "." ] [ "-" "-" ] name); 11 + # Normalize package names as per PEP 503 12 + normalizePackageName = name: 13 + let 14 + parts = builtins.split "[-_.]+" name; 15 + partsWithoutSeparator = builtins.filter (x: builtins.typeOf x == "string") parts; 16 + in 17 + lib.strings.toLower (lib.strings.concatStringsSep "-" partsWithoutSeparator); 18 + 19 + # Normalize an entire attrset of packages 20 + normalizePackageSet = lib.attrsets.mapAttrs' (name: value: lib.attrsets.nameValuePair (normalizePackageName name) value); 13 21 14 22 # Get a full semver pythonVersion from a python derivation 15 23 getPythonVersion = python: ··· 233 241 getBuildSystemPkgs 234 242 satisfiesSemver 235 243 cleanPythonSources 236 - moduleName 244 + normalizePackageName 245 + normalizePackageSet 237 246 getPythonVersion 238 247 getTargetMachine 239 248 ;
+14 -24
pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix
··· 26 26 }@args: 27 27 let 28 28 inherit (python) stdenv; 29 - inherit (poetryLib) isCompatible getManyLinuxDeps fetchFromLegacy fetchFromPypi moduleName; 29 + inherit (poetryLib) isCompatible getManyLinuxDeps fetchFromLegacy fetchFromPypi normalizePackageName; 30 30 31 31 inherit (import ./pep425.nix { 32 32 inherit lib poetryLib python stdenv; ··· 88 88 else (builtins.elemAt (lib.strings.splitString "-" name) 2); 89 89 }; 90 90 91 - # Prevent infinite recursion 92 - skipSetupToolsSCM = [ 93 - "setuptools_scm" 94 - "setuptools-scm" 95 - "toml" # Toml is an extra for setuptools-scm 96 - "tomli" # tomli is an extra for later versions of setuptools-scm 97 - "flit-core" 98 - "packaging" 99 - "six" 100 - "pyparsing" 101 - "typing-extensions" 102 - ]; 103 - baseBuildInputs = lib.optional (! lib.elem name skipSetupToolsSCM) pythonPackages.setuptools-scm; 104 91 format = if isDirectory || isGit || isUrl then "pyproject" else fileInfo.format; 105 92 in 106 93 buildPythonPackage { 107 - pname = moduleName name; 94 + pname = normalizePackageName name; 108 95 version = version; 109 96 110 - inherit format; 97 + # Circumvent output separation (https://github.com/NixOS/nixpkgs/pull/190487) 98 + format = if format == "pyproject" then "poetry2nix" else format; 111 99 112 100 doCheck = false; # We never get development deps 113 101 ··· 118 106 pythonPackages.poetry2nixFixupHook 119 107 ] 120 108 ++ lib.optional (!isSource && (getManyLinuxDeps fileInfo.name).str != null) autoPatchelfHook 109 + ++ lib.optionals (format == "wheel") [ 110 + pythonPackages.wheelUnpackHook 111 + pythonPackages.pipInstallHook 112 + pythonPackages.setuptools 113 + ] 121 114 ++ lib.optionals (format == "pyproject") [ 122 115 pythonPackages.removePathDependenciesHook 123 116 pythonPackages.removeGitDependenciesHook 117 + pythonPackages.pipBuildHook 124 118 ]; 125 119 126 120 buildInputs = ( 127 - baseBuildInputs 121 + lib.optional (!isSource) (getManyLinuxDeps fileInfo.name).pkg 122 + ++ lib.optional isDirectory buildSystemPkgs 128 123 ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) pythonPackages.setuptools 129 - ++ lib.optional (!isSource) (getManyLinuxDeps fileInfo.name).pkg 130 - ++ lib.optional isDirectory buildSystemPkgs 131 124 ); 132 125 133 126 propagatedBuildInputs = ··· 149 142 ); 150 143 depAttrs = lib.attrNames deps; 151 144 in 152 - builtins.map (n: pythonPackages.${moduleName n}) depAttrs; 145 + builtins.map (n: pythonPackages.${normalizePackageName n}) depAttrs; 153 146 154 147 meta = { 155 148 broken = ! isCompatible (poetryLib.getPythonVersion python) python-versions; ··· 172 165 rev = source.resolved_reference or source.reference; 173 166 ref = sourceSpec.branch or (if sourceSpec ? tag then "refs/tags/${sourceSpec.tag}" else "HEAD"); 174 167 } // ( 175 - let 176 - nixVersion = builtins.substring 0 3 builtins.nixVersion; 177 - in 178 - lib.optionalAttrs ((sourceSpec ? rev) && (lib.versionAtLeast nixVersion "2.4")) { 168 + lib.optionalAttrs ((sourceSpec ? rev) && (lib.versionAtLeast builtins.nixVersion "2.4")) { 179 169 allRefs = true; 180 170 } 181 171 ))
+16750 -546
pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
··· 1 1 { 2 - "HTSeq": [ 3 - "cython" 2 + "aadict": [ 3 + "setuptools" 4 + ], 5 + "aafigure": [ 6 + "setuptools" 7 + ], 8 + "aardwolf": [ 9 + "setuptools" 10 + ], 11 + "abodepy": [ 12 + "setuptools" 4 13 ], 5 - "PyStemmer": [ 6 - "cython" 14 + "absl-py": [ 15 + "setuptools" 16 + ], 17 + "absolufy-imports": [ 18 + "setuptools" 19 + ], 20 + "accuweather": [ 21 + "setuptools" 22 + ], 23 + "acme": [ 24 + "setuptools" 25 + ], 26 + "acme-tiny": [ 27 + "setuptools", 28 + "setuptools-scm" 29 + ], 30 + "acoustics": [ 31 + "setuptools" 32 + ], 33 + "actdiag": [ 34 + "setuptools" 35 + ], 36 + "adafruit-io": [ 37 + "setuptools", 38 + "setuptools-scm" 39 + ], 40 + "adafruit-nrfutil": [ 41 + "setuptools" 42 + ], 43 + "adafruit-platformdetect": [ 44 + "setuptools", 45 + "setuptools-scm" 46 + ], 47 + "adafruit-pureio": [ 48 + "setuptools", 49 + "setuptools-scm" 50 + ], 51 + "adal": [ 52 + "setuptools" 53 + ], 54 + "adax": [ 55 + "setuptools" 56 + ], 57 + "adax-local": [ 58 + "setuptools" 59 + ], 60 + "adb-enhanced": [ 61 + "setuptools" 62 + ], 63 + "adb-homeassistant": [ 64 + "setuptools" 65 + ], 66 + "adb-shell": [ 67 + "setuptools" 68 + ], 69 + "adblock": [ 70 + "setuptools" 71 + ], 72 + "add-trailing-comma": [ 73 + "setuptools" 74 + ], 75 + "addict": [ 76 + "setuptools" 77 + ], 78 + "adext": [ 79 + "setuptools", 80 + "setuptools-scm" 7 81 ], 8 82 "adguardhome": [ 9 - "poetry-core" 83 + "poetry-core", 84 + "setuptools" 85 + ], 86 + "adjusttext": [ 87 + "setuptools" 88 + ], 89 + "adlfs": [ 90 + "setuptools" 91 + ], 92 + "advantage-air": [ 93 + "setuptools" 94 + ], 95 + "advocate": [ 96 + "setuptools" 97 + ], 98 + "aemet-opendata": [ 99 + "setuptools" 100 + ], 101 + "aenum": [ 102 + "setuptools" 103 + ], 104 + "aeppl": [ 105 + "setuptools" 10 106 ], 11 107 "aesara": [ 12 - "cython" 108 + "cython", 109 + "setuptools" 110 + ], 111 + "aesedb": [ 112 + "setuptools" 113 + ], 114 + "afdko": [ 115 + "setuptools", 116 + "setuptools-scm" 117 + ], 118 + "affine": [ 119 + "setuptools" 120 + ], 121 + "afsapi": [ 122 + "setuptools", 123 + "setuptools-scm" 124 + ], 125 + "agate": [ 126 + "setuptools" 127 + ], 128 + "agate-dbf": [ 129 + "setuptools" 130 + ], 131 + "agate-excel": [ 132 + "setuptools" 133 + ], 134 + "agate-sql": [ 135 + "setuptools" 136 + ], 137 + "agent-py": [ 138 + "setuptools" 139 + ], 140 + "aggdraw": [ 141 + "setuptools" 142 + ], 143 + "ailment": [ 144 + "setuptools" 145 + ], 146 + "aio-geojson-client": [ 147 + "setuptools" 148 + ], 149 + "aio-geojson-generic-client": [ 150 + "setuptools" 151 + ], 152 + "aio-geojson-geonetnz-quakes": [ 153 + "setuptools" 154 + ], 155 + "aio-geojson-geonetnz-volcano": [ 156 + "setuptools" 157 + ], 158 + "aio-geojson-nsw-rfs-incidents": [ 159 + "setuptools" 160 + ], 161 + "aio-geojson-usgs-earthquakes": [ 162 + "setuptools" 163 + ], 164 + "aio-georss-client": [ 165 + "setuptools" 166 + ], 167 + "aio-georss-gdacs": [ 168 + "setuptools" 169 + ], 170 + "aioairq": [ 171 + "setuptools" 172 + ], 173 + "aioairzone": [ 174 + "setuptools" 175 + ], 176 + "aioaladdinconnect": [ 177 + "setuptools" 13 178 ], 14 179 "aioambient": [ 15 - "poetry-core" 180 + "poetry-core", 181 + "setuptools" 182 + ], 183 + "aioamqp": [ 184 + "setuptools" 185 + ], 186 + "aioapns": [ 187 + "setuptools" 188 + ], 189 + "aioaseko": [ 190 + "setuptools" 191 + ], 192 + "aioasuswrt": [ 193 + "setuptools" 194 + ], 195 + "aioazuredevops": [ 196 + "setuptools" 197 + ], 198 + "aiobiketrax": [ 199 + "poetry-core", 200 + "setuptools" 201 + ], 202 + "aioblescan": [ 203 + "setuptools" 16 204 ], 17 205 "aioboto3": [ 18 206 "poetry" 19 207 ], 208 + "aiobotocore": [ 209 + "setuptools" 210 + ], 211 + "aiobroadlink": [ 212 + "setuptools" 213 + ], 214 + "aiocache": [ 215 + "setuptools" 216 + ], 217 + "aiocoap": [ 218 + "setuptools" 219 + ], 220 + "aioconsole": [ 221 + "setuptools" 222 + ], 223 + "aiocontextvars": [ 224 + "setuptools" 225 + ], 226 + "aiocron": [ 227 + "setuptools" 228 + ], 20 229 "aiocurrencylayer": [ 21 - "poetry-core" 230 + "poetry-core", 231 + "setuptools" 232 + ], 233 + "aiodiscover": [ 234 + "setuptools" 235 + ], 236 + "aiodns": [ 237 + "setuptools" 22 238 ], 23 239 "aioeafm": [ 24 - "poetry" 240 + "poetry", 241 + "setuptools" 242 + ], 243 + "aioeagle": [ 244 + "setuptools" 245 + ], 246 + "aioecowitt": [ 247 + "setuptools" 248 + ], 249 + "aioemonitor": [ 250 + "setuptools" 251 + ], 252 + "aioesphomeapi": [ 253 + "setuptools" 254 + ], 255 + "aioextensions": [ 256 + "setuptools" 257 + ], 258 + "aiofile": [ 259 + "poetry-core", 260 + "setuptools" 25 261 ], 26 262 "aiofiles": [ 27 - "poetry-core" 263 + "poetry-core", 264 + "setuptools" 28 265 ], 29 266 "aioflo": [ 30 - "poetry-core" 267 + "poetry-core", 268 + "setuptools" 269 + ], 270 + "aioftp": [ 271 + "setuptools" 31 272 ], 32 273 "aiogithubapi": [ 33 - "poetry-core" 274 + "poetry-core", 275 + "setuptools" 34 276 ], 35 277 "aioguardian": [ 36 - "poetry-core" 278 + "poetry-core", 279 + "setuptools" 280 + ], 281 + "aioharmony": [ 282 + "setuptools" 37 283 ], 38 284 "aiohomekit": [ 39 - "poetry-core" 285 + "poetry-core", 286 + "setuptools" 287 + ], 288 + "aiohttp": [ 289 + "setuptools" 290 + ], 291 + "aiohttp-apispec": [ 292 + "setuptools" 293 + ], 294 + "aiohttp-cors": [ 295 + "setuptools" 296 + ], 297 + "aiohttp-jinja2": [ 298 + "setuptools" 40 299 ], 41 300 "aiohttp-remotes": [ 42 - "flitBuildHook" 301 + "flitBuildHook", 302 + "setuptools" 303 + ], 304 + "aiohttp-retry": [ 305 + "setuptools" 306 + ], 307 + "aiohttp-socks": [ 308 + "setuptools" 309 + ], 310 + "aiohttp-swagger": [ 311 + "setuptools" 312 + ], 313 + "aiohttp-wsgi": [ 314 + "setuptools" 315 + ], 316 + "aiohue": [ 317 + "setuptools" 318 + ], 319 + "aiohwenergy": [ 320 + "setuptools" 321 + ], 322 + "aioimaplib": [ 323 + "setuptools" 324 + ], 325 + "aioinflux": [ 326 + "setuptools" 43 327 ], 44 328 "aioitertools": [ 45 - "flit-core" 329 + "flit-core", 330 + "setuptools" 46 331 ], 47 332 "aiojobs": [ 48 - "flitBuildHook" 333 + "flitBuildHook", 334 + "setuptools" 49 335 ], 50 336 "aiokafka": [ 51 - "cython" 337 + "cython", 338 + "setuptools" 339 + ], 340 + "aiokef": [ 341 + "setuptools" 342 + ], 343 + "aiolifx": [ 344 + "setuptools" 345 + ], 346 + "aiolifx-connection": [ 347 + "setuptools" 348 + ], 349 + "aiolifx-effects": [ 350 + "setuptools" 52 351 ], 53 352 "aiolimiter": [ 54 - "poetry-core" 353 + "poetry-core", 354 + "setuptools" 355 + ], 356 + "aiolip": [ 357 + "setuptools" 358 + ], 359 + "aiolookin": [ 360 + "setuptools" 361 + ], 362 + "aiolyric": [ 363 + "setuptools" 364 + ], 365 + "aiomodernforms": [ 366 + "setuptools" 55 367 ], 56 368 "aiomultiprocess": [ 57 - "flit-core" 369 + "flit-core", 370 + "setuptools" 58 371 ], 59 372 "aiomusiccast": [ 60 - "poetry-core" 373 + "poetry-core", 374 + "setuptools" 375 + ], 376 + "aiomysensors": [ 377 + "poetry-core", 378 + "setuptools" 379 + ], 380 + "aiomysql": [ 381 + "setuptools", 382 + "setuptools-scm" 383 + ], 384 + "aionanoleaf": [ 385 + "setuptools" 386 + ], 387 + "aionotify": [ 388 + "setuptools" 61 389 ], 62 390 "aionotion": [ 63 - "poetry-core" 391 + "poetry-core", 392 + "setuptools" 393 + ], 394 + "aiooncue": [ 395 + "setuptools" 396 + ], 397 + "aioopenexchangerates": [ 398 + "poetry-core", 399 + "setuptools" 400 + ], 401 + "aiopath": [ 402 + "poetry-core", 403 + "setuptools" 404 + ], 405 + "aiopg": [ 406 + "setuptools" 407 + ], 408 + "aioprocessing": [ 409 + "flit-core", 410 + "flitBuildHook", 411 + "setuptools" 412 + ], 413 + "aiopulse": [ 414 + "setuptools" 415 + ], 416 + "aiopvapi": [ 417 + "setuptools" 64 418 ], 65 419 "aiopvpc": [ 66 - "poetry-core" 420 + "poetry-core", 421 + "setuptools" 422 + ], 423 + "aiopyarr": [ 424 + "setuptools" 425 + ], 426 + "aiopylgtv": [ 427 + "setuptools" 428 + ], 429 + "aioqsw": [ 430 + "setuptools" 67 431 ], 68 432 "aiorecollect": [ 69 - "poetry-core" 433 + "poetry-core", 434 + "setuptools" 435 + ], 436 + "aioredis": [ 437 + "setuptools" 70 438 ], 71 439 "aioresponses": [ 72 - "pbr" 440 + "pbr", 441 + "setuptools" 73 442 ], 74 443 "aioridwell": [ 75 - "poetry-core" 444 + "poetry-core", 445 + "setuptools" 446 + ], 447 + "aiorpcx": [ 448 + "setuptools" 449 + ], 450 + "aiortm": [ 451 + "poetry-core", 452 + "setuptools" 76 453 ], 77 454 "aiorun": [ 78 - "flitBuildHook" 455 + "flitBuildHook", 456 + "setuptools" 457 + ], 458 + "aiosenseme": [ 459 + "setuptools" 460 + ], 461 + "aiosenz": [ 462 + "setuptools" 463 + ], 464 + "aioserial": [ 465 + "setuptools" 466 + ], 467 + "aioshelly": [ 468 + "setuptools" 469 + ], 470 + "aioshutil": [ 471 + "setuptools", 472 + "setuptools-scm" 473 + ], 474 + "aiosignal": [ 475 + "setuptools" 476 + ], 477 + "aioskybell": [ 478 + "setuptools" 479 + ], 480 + "aioslimproto": [ 481 + "setuptools" 482 + ], 483 + "aiosmb": [ 484 + "setuptools" 485 + ], 486 + "aiosmtpd": [ 487 + "setuptools" 488 + ], 489 + "aiosmtplib": [ 490 + "poetry-core", 491 + "setuptools" 79 492 ], 80 493 "aiosqlite": [ 81 - "flit-core" 494 + "flit-core", 495 + "setuptools" 82 496 ], 83 497 "aiosteamist": [ 84 - "poetry-core" 498 + "poetry-core", 499 + "setuptools" 500 + ], 501 + "aiostream": [ 502 + "setuptools" 85 503 ], 86 504 "aioswitcher": [ 87 - "poetry-core" 505 + "poetry-core", 506 + "setuptools" 507 + ], 508 + "aiosyncthing": [ 509 + "setuptools" 510 + ], 511 + "aiotractive": [ 512 + "setuptools" 513 + ], 514 + "aiounifi": [ 515 + "setuptools" 516 + ], 517 + "aiounittest": [ 518 + "setuptools" 519 + ], 520 + "aiovlc": [ 521 + "setuptools" 88 522 ], 89 523 "aiowatttime": [ 90 - "poetry-core" 524 + "poetry-core", 525 + "setuptools" 526 + ], 527 + "aiowebostv": [ 528 + "setuptools" 529 + ], 530 + "aiowinreg": [ 531 + "setuptools" 532 + ], 533 + "aioymaps": [ 534 + "setuptools" 535 + ], 536 + "aiozeroconf": [ 537 + "setuptools" 538 + ], 539 + "airly": [ 540 + "setuptools" 541 + ], 542 + "airthings-ble": [ 543 + "poetry-core", 544 + "setuptools" 545 + ], 546 + "airthings-cloud": [ 547 + "setuptools" 548 + ], 549 + "airtouch4pyapi": [ 550 + "setuptools" 551 + ], 552 + "ajpy": [ 553 + "setuptools" 554 + ], 555 + "ajsonrpc": [ 556 + "setuptools" 557 + ], 558 + "alabaster": [ 559 + "setuptools" 560 + ], 561 + "aladdin-connect": [ 562 + "setuptools" 563 + ], 564 + "alarmdecoder": [ 565 + "setuptools" 566 + ], 567 + "alectryon": [ 568 + "setuptools" 569 + ], 570 + "alembic": [ 571 + "setuptools" 572 + ], 573 + "algebraic-data-types": [ 574 + "setuptools" 575 + ], 576 + "aliyun-python-sdk-cdn": [ 577 + "setuptools" 578 + ], 579 + "aliyun-python-sdk-config": [ 580 + "setuptools" 581 + ], 582 + "aliyun-python-sdk-core": [ 583 + "setuptools" 584 + ], 585 + "aliyun-python-sdk-dbfs": [ 586 + "setuptools" 587 + ], 588 + "aliyun-python-sdk-iot": [ 589 + "setuptools" 590 + ], 591 + "aliyun-python-sdk-kms": [ 592 + "setuptools" 593 + ], 594 + "aliyun-python-sdk-sts": [ 595 + "setuptools" 596 + ], 597 + "allpairspy": [ 598 + "setuptools" 599 + ], 600 + "allure-behave": [ 601 + "setuptools", 602 + "setuptools-scm" 603 + ], 604 + "allure-pytest": [ 605 + "setuptools", 606 + "setuptools-scm" 607 + ], 608 + "allure-python-commons": [ 609 + "setuptools", 610 + "setuptools-scm" 611 + ], 612 + "allure-python-commons-test": [ 613 + "setuptools", 614 + "setuptools-scm" 615 + ], 616 + "alpha-vantage": [ 617 + "setuptools" 618 + ], 619 + "altair": [ 620 + "setuptools" 621 + ], 622 + "amaranth": [ 623 + "setuptools", 624 + "setuptools-scm" 625 + ], 626 + "amaranth-boards": [ 627 + "setuptools", 628 + "setuptools-scm" 629 + ], 630 + "amaranth-soc": [ 631 + "setuptools", 632 + "setuptools-scm" 633 + ], 634 + "amarna": [ 635 + "setuptools" 636 + ], 637 + "amazon-ion": [ 638 + "setuptools" 91 639 ], 92 640 "ambee": [ 93 - "poetry-core" 641 + "poetry-core", 642 + "setuptools" 643 + ], 644 + "amberelectric": [ 645 + "setuptools" 646 + ], 647 + "ambiclimate": [ 648 + "setuptools" 649 + ], 650 + "amcrest": [ 651 + "setuptools" 652 + ], 653 + "amiibo-py": [ 654 + "setuptools" 655 + ], 656 + "amply": [ 657 + "setuptools", 658 + "setuptools-scm" 659 + ], 660 + "amqp": [ 661 + "setuptools" 662 + ], 663 + "amqplib": [ 664 + "setuptools" 94 665 ], 95 666 "amqtt": [ 96 - "poetry-core" 667 + "poetry-core", 668 + "setuptools" 669 + ], 670 + "androguard": [ 671 + "setuptools" 672 + ], 673 + "android-backup": [ 674 + "setuptools" 675 + ], 676 + "androidtv": [ 677 + "setuptools" 678 + ], 679 + "angr": [ 680 + "setuptools" 681 + ], 682 + "angrcli": [ 683 + "setuptools" 684 + ], 685 + "angrop": [ 686 + "setuptools" 687 + ], 688 + "aniso8601": [ 689 + "setuptools" 690 + ], 691 + "annexremote": [ 692 + "setuptools" 693 + ], 694 + "annoy": [ 695 + "setuptools" 696 + ], 697 + "anonip": [ 698 + "setuptools" 699 + ], 700 + "ansi": [ 701 + "setuptools" 702 + ], 703 + "ansi2html": [ 704 + "setuptools", 705 + "setuptools-scm" 706 + ], 707 + "ansible": [ 708 + "setuptools" 709 + ], 710 + "ansible-compat": [ 711 + "setuptools", 712 + "setuptools-scm" 713 + ], 714 + "ansible-core": [ 715 + "setuptools" 97 716 ], 98 717 "ansible-doctor": [ 99 - "poetry-core" 718 + "poetry-core", 719 + "setuptools" 720 + ], 721 + "ansible-kernel": [ 722 + "setuptools" 100 723 ], 101 724 "ansible-later": [ 102 - "poetry-core" 725 + "poetry-core", 726 + "setuptools" 727 + ], 728 + "ansible-lint": [ 729 + "setuptools", 730 + "setuptools-scm" 731 + ], 732 + "ansible-molecule": [ 733 + "setuptools" 103 734 ], 104 735 "ansible-runner": [ 105 - "pbr" 736 + "pbr", 737 + "setuptools" 738 + ], 739 + "ansicolor": [ 740 + "setuptools" 741 + ], 742 + "ansicolors": [ 743 + "setuptools" 744 + ], 745 + "ansiconv": [ 746 + "setuptools" 747 + ], 748 + "ansimarkup": [ 749 + "setuptools" 750 + ], 751 + "ansiwrap": [ 752 + "setuptools" 753 + ], 754 + "antlr4-8-python3-runtime": [ 755 + "setuptools" 756 + ], 757 + "antlr4-9-python3-runtime": [ 758 + "setuptools" 759 + ], 760 + "antlr4-python3-runtime": [ 761 + "setuptools" 762 + ], 763 + "anyascii": [ 764 + "setuptools" 765 + ], 766 + "anybadge": [ 767 + "setuptools" 768 + ], 769 + "anyconfig": [ 770 + "setuptools" 771 + ], 772 + "anyio": [ 773 + "setuptools", 774 + "setuptools-scm" 775 + ], 776 + "anytree": [ 777 + "setuptools" 778 + ], 779 + "aocd": [ 780 + "setuptools" 106 781 ], 107 782 "apache-beam": [ 108 - "cython" 783 + "cython", 784 + "setuptools" 785 + ], 786 + "apache-libcloud": [ 787 + "setuptools" 788 + ], 789 + "apcaccess": [ 790 + "setuptools" 791 + ], 792 + "apipkg": [ 793 + "hatchling", 794 + "setuptools" 795 + ], 796 + "apispec": [ 797 + "setuptools" 109 798 ], 110 799 "aplpy": [ 111 - "cython" 800 + "cython", 801 + "setuptools" 802 + ], 803 + "appdirs": [ 804 + "setuptools" 805 + ], 806 + "applicationinsights": [ 807 + "setuptools" 808 + ], 809 + "appnope": [ 810 + "setuptools" 811 + ], 812 + "apprise": [ 813 + "setuptools" 814 + ], 815 + "approvaltests": [ 816 + "setuptools" 817 + ], 818 + "appthreat-vulnerability-db": [ 819 + "setuptools" 820 + ], 821 + "apptools": [ 822 + "setuptools" 823 + ], 824 + "aprslib": [ 825 + "setuptools" 826 + ], 827 + "apscheduler": [ 828 + "setuptools", 829 + "setuptools-scm" 830 + ], 831 + "apsw": [ 832 + "setuptools" 112 833 ], 113 - "argon2_cffi": [ 114 - "flitBuildHook" 834 + "apycula": [ 835 + "setuptools", 836 + "setuptools-scm" 837 + ], 838 + "aqipy-atmotech": [ 839 + "setuptools" 840 + ], 841 + "aqualogic": [ 842 + "setuptools" 843 + ], 844 + "arabic-reshaper": [ 845 + "setuptools" 846 + ], 847 + "arc4": [ 848 + "setuptools" 849 + ], 850 + "arcam-fmj": [ 851 + "setuptools" 852 + ], 853 + "archinfo": [ 854 + "setuptools" 855 + ], 856 + "archspec": [ 857 + "poetry-core", 858 + "setuptools" 859 + ], 860 + "area": [ 861 + "setuptools" 862 + ], 863 + "arelle": [ 864 + "setuptools" 865 + ], 866 + "arelle-headless": [ 867 + "setuptools" 868 + ], 869 + "aresponses": [ 870 + "setuptools" 871 + ], 872 + "argcomplete": [ 873 + "setuptools" 874 + ], 875 + "argh": [ 876 + "setuptools" 877 + ], 878 + "argon2-cffi": [ 879 + "flitBuildHook", 880 + "setuptools" 881 + ], 882 + "argon2-cffi-bindings": [ 883 + "setuptools", 884 + "setuptools-scm" 885 + ], 886 + "argparse-addons": [ 887 + "setuptools" 888 + ], 889 + "args": [ 890 + "setuptools" 115 891 ], 116 892 "aria2p": [ 117 - "poetry" 893 + "poetry", 894 + "setuptools" 895 + ], 896 + "arnparse": [ 897 + "setuptools" 898 + ], 899 + "arpeggio": [ 900 + "setuptools" 901 + ], 902 + "arrayqueues": [ 903 + "setuptools" 904 + ], 905 + "arris-tg2492lg": [ 906 + "setuptools" 907 + ], 908 + "arrow": [ 909 + "setuptools" 910 + ], 911 + "arviz": [ 912 + "setuptools" 913 + ], 914 + "arxiv2bib": [ 915 + "setuptools" 916 + ], 917 + "asana": [ 918 + "setuptools" 919 + ], 920 + "ascii-magic": [ 921 + "setuptools" 922 + ], 923 + "asciimatics": [ 924 + "setuptools", 925 + "setuptools-scm" 926 + ], 927 + "asciitree": [ 928 + "setuptools" 929 + ], 930 + "asdf": [ 931 + "setuptools", 932 + "setuptools-scm" 933 + ], 934 + "asdf-standard": [ 935 + "setuptools", 936 + "setuptools-scm" 937 + ], 938 + "asdf-transform-schemas": [ 939 + "setuptools", 940 + "setuptools-scm" 941 + ], 942 + "ase": [ 943 + "setuptools" 944 + ], 945 + "asf-search": [ 946 + "setuptools" 947 + ], 948 + "asgi-csrf": [ 949 + "setuptools" 950 + ], 951 + "asgineer": [ 952 + "setuptools" 953 + ], 954 + "asgiref": [ 955 + "setuptools" 956 + ], 957 + "asks": [ 958 + "setuptools" 959 + ], 960 + "asmog": [ 961 + "setuptools" 962 + ], 963 + "asn1": [ 964 + "setuptools" 965 + ], 966 + "asn1ate": [ 967 + "setuptools" 968 + ], 969 + "asn1crypto": [ 970 + "setuptools" 971 + ], 972 + "asn1tools": [ 973 + "setuptools" 974 + ], 975 + "aspell-python": [ 976 + "setuptools" 977 + ], 978 + "aspy-refactor-imports": [ 979 + "setuptools" 980 + ], 981 + "aspy-yaml": [ 982 + "setuptools" 983 + ], 984 + "assay": [ 985 + "setuptools" 986 + ], 987 + "assertpy": [ 988 + "setuptools" 989 + ], 990 + "asterisk-mbox": [ 991 + "setuptools" 992 + ], 993 + "asteval": [ 994 + "setuptools", 995 + "setuptools-scm" 996 + ], 997 + "astor": [ 998 + "setuptools" 999 + ], 1000 + "astral": [ 1001 + "setuptools" 1002 + ], 1003 + "astroid": [ 1004 + "setuptools", 1005 + "setuptools-scm" 118 1006 ], 119 1007 "astropy": [ 120 - "cython" 1008 + "cython", 1009 + "setuptools", 1010 + "setuptools-scm" 1011 + ], 1012 + "astropy-extension-helpers": [ 1013 + "setuptools", 1014 + "setuptools-scm" 1015 + ], 1016 + "astropy-healpix": [ 1017 + "setuptools", 1018 + "setuptools-scm" 1019 + ], 1020 + "astropy-helpers": [ 1021 + "setuptools" 1022 + ], 1023 + "astroquery": [ 1024 + "setuptools" 1025 + ], 1026 + "asttokens": [ 1027 + "setuptools", 1028 + "setuptools-scm" 1029 + ], 1030 + "astunparse": [ 1031 + "setuptools" 121 1032 ], 122 1033 "async-dns": [ 123 - "poetry-core" 1034 + "poetry-core", 1035 + "setuptools" 1036 + ], 1037 + "async-generator": [ 1038 + "setuptools" 1039 + ], 1040 + "async-lru": [ 1041 + "setuptools" 1042 + ], 1043 + "async-stagger": [ 1044 + "setuptools" 1045 + ], 1046 + "async-timeout": [ 1047 + "setuptools" 1048 + ], 1049 + "async-upnp-client": [ 1050 + "setuptools" 1051 + ], 1052 + "asyncclick": [ 1053 + "setuptools", 1054 + "setuptools-scm" 1055 + ], 1056 + "asynccmd": [ 1057 + "setuptools" 1058 + ], 1059 + "asyncio-dgram": [ 1060 + "setuptools" 1061 + ], 1062 + "asyncio-mqtt": [ 1063 + "setuptools" 1064 + ], 1065 + "asyncio-nats-client": [ 1066 + "setuptools" 1067 + ], 1068 + "asyncio-rlock": [ 1069 + "setuptools" 1070 + ], 1071 + "asyncio-throttle": [ 1072 + "setuptools" 124 1073 ], 125 1074 "asyncmy": [ 126 1075 "cython", 127 - "poetry-core" 1076 + "poetry-core", 1077 + "setuptools" 1078 + ], 1079 + "asyncpg": [ 1080 + "setuptools" 1081 + ], 1082 + "asyncsleepiq": [ 1083 + "setuptools" 1084 + ], 1085 + "asyncssh": [ 1086 + "setuptools" 128 1087 ], 129 1088 "asyncstdlib": [ 130 - "flitBuildHook" 1089 + "flitBuildHook", 1090 + "setuptools" 1091 + ], 1092 + "asynctest": [ 1093 + "setuptools" 1094 + ], 1095 + "asyncwhois": [ 1096 + "setuptools" 1097 + ], 1098 + "asysocks": [ 1099 + "setuptools" 1100 + ], 1101 + "atc-ble": [ 1102 + "poetry-core", 1103 + "setuptools" 1104 + ], 1105 + "atenpdu": [ 1106 + "setuptools" 1107 + ], 1108 + "atlassian-python-api": [ 1109 + "setuptools" 1110 + ], 1111 + "atom": [ 1112 + "setuptools", 1113 + "setuptools-scm" 1114 + ], 1115 + "atomiclong": [ 1116 + "setuptools" 1117 + ], 1118 + "atomicwrites": [ 1119 + "setuptools" 1120 + ], 1121 + "atomicwrites-homeassistant": [ 1122 + "setuptools" 131 1123 ], 132 1124 "atomman": [ 133 - "cython" 1125 + "cython", 1126 + "setuptools" 134 1127 ], 135 1128 "atpublic": [ 136 - "pdm-pep517" 1129 + "pdm-pep517", 1130 + "setuptools" 1131 + ], 1132 + "atsim-potentials": [ 1133 + "setuptools" 1134 + ], 1135 + "attrdict": [ 1136 + "setuptools" 1137 + ], 1138 + "attrs": [ 1139 + "setuptools" 1140 + ], 1141 + "aubio": [ 1142 + "setuptools" 1143 + ], 1144 + "audible": [ 1145 + "setuptools" 1146 + ], 1147 + "audio-metadata": [ 1148 + "setuptools" 1149 + ], 1150 + "audioread": [ 1151 + "setuptools" 1152 + ], 1153 + "audiotools": [ 1154 + "setuptools" 1155 + ], 1156 + "augeas": [ 1157 + "setuptools" 1158 + ], 1159 + "augmax": [ 1160 + "setuptools" 1161 + ], 1162 + "auroranoaa": [ 1163 + "setuptools" 1164 + ], 1165 + "aurorapy": [ 1166 + "setuptools" 137 1167 ], 138 1168 "autarco": [ 139 - "poetry-core" 1169 + "poetry-core", 1170 + "setuptools" 1171 + ], 1172 + "auth0-python": [ 1173 + "setuptools" 140 1174 ], 141 1175 "authcaptureproxy": [ 142 - "poetry-core" 1176 + "poetry-core", 1177 + "setuptools" 1178 + ], 1179 + "authheaders": [ 1180 + "setuptools" 1181 + ], 1182 + "authlib": [ 1183 + "setuptools" 1184 + ], 1185 + "authres": [ 1186 + "setuptools" 1187 + ], 1188 + "autobahn": [ 1189 + "setuptools" 1190 + ], 1191 + "autograd": [ 1192 + "setuptools" 1193 + ], 1194 + "autoit-ripper": [ 1195 + "setuptools" 1196 + ], 1197 + "autologging": [ 1198 + "setuptools" 1199 + ], 1200 + "automat": [ 1201 + "setuptools", 1202 + "setuptools-scm" 1203 + ], 1204 + "automate-home": [ 1205 + "setuptools" 1206 + ], 1207 + "autopage": [ 1208 + "setuptools" 1209 + ], 1210 + "autopep8": [ 1211 + "setuptools" 143 1212 ], 144 1213 "av": [ 145 - "cython" 1214 + "cython", 1215 + "setuptools" 1216 + ], 1217 + "avea": [ 1218 + "setuptools" 1219 + ], 1220 + "avion": [ 1221 + "setuptools" 1222 + ], 1223 + "avro": [ 1224 + "setuptools" 1225 + ], 1226 + "avro-python3": [ 1227 + "setuptools" 1228 + ], 1229 + "avro3k": [ 1230 + "setuptools" 1231 + ], 1232 + "awesome-slugify": [ 1233 + "setuptools" 146 1234 ], 147 1235 "awesomeversion": [ 148 - "poetry-core" 1236 + "poetry-core", 1237 + "setuptools" 1238 + ], 1239 + "awkward": [ 1240 + "setuptools" 1241 + ], 1242 + "awkward0": [ 1243 + "setuptools" 149 1244 ], 150 1245 "aws-adfs": [ 151 - "poetry-core" 1246 + "poetry-core", 1247 + "setuptools" 152 1248 ], 153 1249 "aws-error-utils": [ 154 1250 "poetry" 155 1251 ], 1252 + "aws-lambda-builders": [ 1253 + "setuptools" 1254 + ], 1255 + "aws-sam-translator": [ 1256 + "setuptools" 1257 + ], 1258 + "aws-xray-sdk": [ 1259 + "setuptools" 1260 + ], 1261 + "awscli": [ 1262 + "setuptools" 1263 + ], 1264 + "awscli-cwlogs": [ 1265 + "setuptools" 1266 + ], 1267 + "awscrt": [ 1268 + "setuptools" 1269 + ], 1270 + "awsiotpythonsdk": [ 1271 + "setuptools" 1272 + ], 1273 + "awslambdaric": [ 1274 + "setuptools" 1275 + ], 1276 + "axis": [ 1277 + "setuptools" 1278 + ], 1279 + "azure-appconfiguration": [ 1280 + "setuptools" 1281 + ], 1282 + "azure-applicationinsights": [ 1283 + "setuptools" 1284 + ], 1285 + "azure-batch": [ 1286 + "setuptools" 1287 + ], 1288 + "azure-common": [ 1289 + "setuptools" 1290 + ], 1291 + "azure-containerregistry": [ 1292 + "setuptools" 1293 + ], 1294 + "azure-core": [ 1295 + "setuptools" 1296 + ], 1297 + "azure-cosmos": [ 1298 + "setuptools" 1299 + ], 1300 + "azure-cosmosdb-nspkg": [ 1301 + "setuptools" 1302 + ], 1303 + "azure-cosmosdb-table": [ 1304 + "setuptools" 1305 + ], 1306 + "azure-data-tables": [ 1307 + "setuptools" 1308 + ], 1309 + "azure-datalake-store": [ 1310 + "setuptools" 1311 + ], 1312 + "azure-eventgrid": [ 1313 + "setuptools" 1314 + ], 1315 + "azure-eventhub": [ 1316 + "setuptools" 1317 + ], 1318 + "azure-functions-devops-build": [ 1319 + "setuptools" 1320 + ], 1321 + "azure-graphrbac": [ 1322 + "setuptools" 1323 + ], 1324 + "azure-identity": [ 1325 + "setuptools" 1326 + ], 1327 + "azure-keyvault": [ 1328 + "setuptools" 1329 + ], 1330 + "azure-keyvault-administration": [ 1331 + "setuptools" 1332 + ], 1333 + "azure-keyvault-certificates": [ 1334 + "setuptools" 1335 + ], 1336 + "azure-keyvault-keys": [ 1337 + "setuptools" 1338 + ], 1339 + "azure-keyvault-nspkg": [ 1340 + "setuptools" 1341 + ], 1342 + "azure-keyvault-secrets": [ 1343 + "setuptools" 1344 + ], 1345 + "azure-loganalytics": [ 1346 + "setuptools" 1347 + ], 1348 + "azure-mgmt-advisor": [ 1349 + "setuptools" 1350 + ], 1351 + "azure-mgmt-apimanagement": [ 1352 + "setuptools" 1353 + ], 1354 + "azure-mgmt-appconfiguration": [ 1355 + "setuptools" 1356 + ], 1357 + "azure-mgmt-applicationinsights": [ 1358 + "setuptools" 1359 + ], 1360 + "azure-mgmt-authorization": [ 1361 + "setuptools" 1362 + ], 1363 + "azure-mgmt-batch": [ 1364 + "setuptools" 1365 + ], 1366 + "azure-mgmt-batchai": [ 1367 + "setuptools" 1368 + ], 1369 + "azure-mgmt-billing": [ 1370 + "setuptools" 1371 + ], 1372 + "azure-mgmt-botservice": [ 1373 + "setuptools" 1374 + ], 1375 + "azure-mgmt-cdn": [ 1376 + "setuptools" 1377 + ], 1378 + "azure-mgmt-cognitiveservices": [ 1379 + "setuptools" 1380 + ], 1381 + "azure-mgmt-commerce": [ 1382 + "setuptools" 1383 + ], 1384 + "azure-mgmt-common": [ 1385 + "setuptools" 1386 + ], 1387 + "azure-mgmt-compute": [ 1388 + "setuptools" 1389 + ], 1390 + "azure-mgmt-consumption": [ 1391 + "setuptools" 1392 + ], 1393 + "azure-mgmt-containerinstance": [ 1394 + "setuptools" 1395 + ], 1396 + "azure-mgmt-containerregistry": [ 1397 + "setuptools" 1398 + ], 1399 + "azure-mgmt-containerservice": [ 1400 + "setuptools" 1401 + ], 1402 + "azure-mgmt-core": [ 1403 + "setuptools" 1404 + ], 1405 + "azure-mgmt-cosmosdb": [ 1406 + "setuptools" 1407 + ], 1408 + "azure-mgmt-databoxedge": [ 1409 + "setuptools" 1410 + ], 1411 + "azure-mgmt-datafactory": [ 1412 + "setuptools" 1413 + ], 1414 + "azure-mgmt-datalake-analytics": [ 1415 + "setuptools" 1416 + ], 1417 + "azure-mgmt-datalake-nspkg": [ 1418 + "setuptools" 1419 + ], 1420 + "azure-mgmt-datalake-store": [ 1421 + "setuptools" 1422 + ], 1423 + "azure-mgmt-datamigration": [ 1424 + "setuptools" 1425 + ], 1426 + "azure-mgmt-deploymentmanager": [ 1427 + "setuptools" 1428 + ], 1429 + "azure-mgmt-devspaces": [ 1430 + "setuptools" 1431 + ], 1432 + "azure-mgmt-devtestlabs": [ 1433 + "setuptools" 1434 + ], 1435 + "azure-mgmt-dns": [ 1436 + "setuptools" 1437 + ], 1438 + "azure-mgmt-eventgrid": [ 1439 + "setuptools" 1440 + ], 1441 + "azure-mgmt-eventhub": [ 1442 + "setuptools" 1443 + ], 1444 + "azure-mgmt-extendedlocation": [ 1445 + "setuptools" 1446 + ], 1447 + "azure-mgmt-hanaonazure": [ 1448 + "setuptools" 1449 + ], 1450 + "azure-mgmt-hdinsight": [ 1451 + "setuptools" 1452 + ], 1453 + "azure-mgmt-imagebuilder": [ 1454 + "setuptools" 1455 + ], 1456 + "azure-mgmt-iotcentral": [ 1457 + "setuptools" 1458 + ], 1459 + "azure-mgmt-iothub": [ 1460 + "setuptools" 1461 + ], 1462 + "azure-mgmt-iothubprovisioningservices": [ 1463 + "setuptools" 1464 + ], 1465 + "azure-mgmt-keyvault": [ 1466 + "setuptools" 1467 + ], 1468 + "azure-mgmt-kusto": [ 1469 + "setuptools" 1470 + ], 1471 + "azure-mgmt-loganalytics": [ 1472 + "setuptools" 1473 + ], 1474 + "azure-mgmt-logic": [ 1475 + "setuptools" 1476 + ], 1477 + "azure-mgmt-machinelearningcompute": [ 1478 + "setuptools" 1479 + ], 1480 + "azure-mgmt-managedservices": [ 1481 + "setuptools" 1482 + ], 1483 + "azure-mgmt-managementgroups": [ 1484 + "setuptools" 1485 + ], 1486 + "azure-mgmt-managementpartner": [ 1487 + "setuptools" 1488 + ], 1489 + "azure-mgmt-maps": [ 1490 + "setuptools" 1491 + ], 1492 + "azure-mgmt-marketplaceordering": [ 1493 + "setuptools" 1494 + ], 1495 + "azure-mgmt-media": [ 1496 + "setuptools" 1497 + ], 1498 + "azure-mgmt-monitor": [ 1499 + "setuptools" 1500 + ], 1501 + "azure-mgmt-msi": [ 1502 + "setuptools" 1503 + ], 1504 + "azure-mgmt-netapp": [ 1505 + "setuptools" 1506 + ], 1507 + "azure-mgmt-network": [ 1508 + "setuptools" 1509 + ], 1510 + "azure-mgmt-notificationhubs": [ 1511 + "setuptools" 1512 + ], 1513 + "azure-mgmt-nspkg": [ 1514 + "setuptools" 1515 + ], 1516 + "azure-mgmt-policyinsights": [ 1517 + "setuptools" 1518 + ], 1519 + "azure-mgmt-powerbiembedded": [ 1520 + "setuptools" 1521 + ], 1522 + "azure-mgmt-privatedns": [ 1523 + "setuptools" 1524 + ], 1525 + "azure-mgmt-rdbms": [ 1526 + "setuptools" 1527 + ], 1528 + "azure-mgmt-recoveryservices": [ 1529 + "setuptools" 1530 + ], 1531 + "azure-mgmt-recoveryservicesbackup": [ 1532 + "setuptools" 1533 + ], 1534 + "azure-mgmt-redhatopenshift": [ 1535 + "setuptools" 1536 + ], 1537 + "azure-mgmt-redis": [ 1538 + "setuptools" 1539 + ], 1540 + "azure-mgmt-relay": [ 1541 + "setuptools" 1542 + ], 1543 + "azure-mgmt-reservations": [ 1544 + "setuptools" 1545 + ], 1546 + "azure-mgmt-resource": [ 1547 + "setuptools" 1548 + ], 1549 + "azure-mgmt-scheduler": [ 1550 + "setuptools" 1551 + ], 1552 + "azure-mgmt-search": [ 1553 + "setuptools" 1554 + ], 1555 + "azure-mgmt-security": [ 1556 + "setuptools" 1557 + ], 1558 + "azure-mgmt-servicebus": [ 1559 + "setuptools" 1560 + ], 1561 + "azure-mgmt-servicefabric": [ 1562 + "setuptools" 1563 + ], 1564 + "azure-mgmt-servicefabricmanagedclusters": [ 1565 + "setuptools" 1566 + ], 1567 + "azure-mgmt-servicelinker": [ 1568 + "setuptools" 1569 + ], 1570 + "azure-mgmt-signalr": [ 1571 + "setuptools" 1572 + ], 1573 + "azure-mgmt-sql": [ 1574 + "setuptools" 1575 + ], 1576 + "azure-mgmt-sqlvirtualmachine": [ 1577 + "setuptools" 1578 + ], 1579 + "azure-mgmt-storage": [ 1580 + "setuptools" 1581 + ], 1582 + "azure-mgmt-subscription": [ 1583 + "setuptools" 1584 + ], 1585 + "azure-mgmt-synapse": [ 1586 + "setuptools" 1587 + ], 1588 + "azure-mgmt-trafficmanager": [ 1589 + "setuptools" 1590 + ], 1591 + "azure-mgmt-web": [ 1592 + "setuptools" 1593 + ], 1594 + "azure-multiapi-storage": [ 1595 + "setuptools" 1596 + ], 1597 + "azure-nspkg": [ 1598 + "setuptools" 1599 + ], 1600 + "azure-servicebus": [ 1601 + "setuptools" 1602 + ], 1603 + "azure-servicefabric": [ 1604 + "setuptools" 1605 + ], 1606 + "azure-servicemanagement-legacy": [ 1607 + "setuptools" 1608 + ], 1609 + "azure-storage": [ 1610 + "setuptools" 1611 + ], 1612 + "azure-storage-blob": [ 1613 + "setuptools" 1614 + ], 1615 + "azure-storage-common": [ 1616 + "setuptools" 1617 + ], 1618 + "azure-storage-file": [ 1619 + "setuptools" 1620 + ], 1621 + "azure-storage-file-share": [ 1622 + "setuptools" 1623 + ], 1624 + "azure-storage-nspkg": [ 1625 + "setuptools" 1626 + ], 1627 + "azure-storage-queue": [ 1628 + "setuptools" 1629 + ], 1630 + "azure-synapse-accesscontrol": [ 1631 + "setuptools" 1632 + ], 1633 + "azure-synapse-artifacts": [ 1634 + "setuptools" 1635 + ], 1636 + "azure-synapse-managedprivateendpoints": [ 1637 + "setuptools" 1638 + ], 1639 + "azure-synapse-spark": [ 1640 + "setuptools" 1641 + ], 1642 + "b2sdk": [ 1643 + "setuptools", 1644 + "setuptools-scm" 1645 + ], 1646 + "babel": [ 1647 + "setuptools" 1648 + ], 1649 + "babelfish": [ 1650 + "setuptools" 1651 + ], 1652 + "babelgladeextractor": [ 1653 + "setuptools" 1654 + ], 156 1655 "backcall": [ 157 - "flit-core" 1656 + "flit-core", 1657 + "setuptools" 158 1658 ], 159 1659 "backoff": [ 160 - "poetry" 1660 + "poetry", 1661 + "poetry-core", 1662 + "setuptools" 1663 + ], 1664 + "backports-abc": [ 1665 + "setuptools" 1666 + ], 1667 + "backports-cached-property": [ 1668 + "setuptools", 1669 + "setuptools-scm" 1670 + ], 1671 + "backports-csv": [ 1672 + "setuptools" 1673 + ], 1674 + "backports-datetime-fromisoformat": [ 1675 + "setuptools" 1676 + ], 1677 + "backports-entry-points-selectable": [ 1678 + "setuptools", 1679 + "setuptools-scm" 1680 + ], 1681 + "backports-functools-lru-cache": [ 1682 + "setuptools", 1683 + "setuptools-scm" 1684 + ], 1685 + "backports-shutil-which": [ 1686 + "setuptools" 1687 + ], 1688 + "backports-ssl-match-hostname": [ 1689 + "setuptools", 1690 + "setuptools-scm" 1691 + ], 1692 + "backports-tempfile": [ 1693 + "setuptools", 1694 + "setuptools-scm" 1695 + ], 1696 + "backports-unittest-mock": [ 1697 + "setuptools", 1698 + "setuptools-scm" 1699 + ], 1700 + "backports-weakref": [ 1701 + "setuptools", 1702 + "setuptools-scm" 1703 + ], 1704 + "bagit": [ 1705 + "setuptools", 1706 + "setuptools-scm" 1707 + ], 1708 + "banal": [ 1709 + "setuptools" 161 1710 ], 162 1711 "bandit": [ 163 - "pbr" 1712 + "pbr", 1713 + "setuptools" 1714 + ], 1715 + "bap": [ 1716 + "setuptools" 1717 + ], 1718 + "baron": [ 1719 + "setuptools" 1720 + ], 1721 + "base36": [ 1722 + "setuptools" 1723 + ], 1724 + "base58": [ 1725 + "setuptools" 1726 + ], 1727 + "base58check": [ 1728 + "setuptools" 1729 + ], 1730 + "baseline": [ 1731 + "setuptools" 1732 + ], 1733 + "baselines": [ 1734 + "setuptools" 1735 + ], 1736 + "basemap": [ 1737 + "cython", 1738 + "setuptools" 1739 + ], 1740 + "basemap-data": [ 1741 + "setuptools" 1742 + ], 1743 + "bash-kernel": [ 1744 + "flitBuildHook", 1745 + "setuptools" 1746 + ], 1747 + "bashlex": [ 1748 + "setuptools" 1749 + ], 1750 + "basiciw": [ 1751 + "setuptools" 1752 + ], 1753 + "batchgenerators": [ 1754 + "setuptools" 1755 + ], 1756 + "batchspawner": [ 1757 + "setuptools" 1758 + ], 1759 + "batinfo": [ 1760 + "setuptools" 1761 + ], 1762 + "bayesian-optimization": [ 1763 + "setuptools" 1764 + ], 1765 + "bayespy": [ 1766 + "setuptools" 1767 + ], 1768 + "bbox": [ 1769 + "setuptools" 1770 + ], 1771 + "bc-python-hcl2": [ 1772 + "setuptools" 1773 + ], 1774 + "bcdoc": [ 1775 + "setuptools" 1776 + ], 1777 + "bcrypt": [ 1778 + "setuptools" 1779 + ], 1780 + "beancount": [ 1781 + "setuptools" 1782 + ], 1783 + "beancount-docverif": [ 1784 + "setuptools", 1785 + "setuptools-scm" 1786 + ], 1787 + "beanstalkc": [ 1788 + "setuptools" 1789 + ], 1790 + "beartype": [ 1791 + "setuptools" 1792 + ], 1793 + "beautifulsoup4": [ 1794 + "setuptools" 1795 + ], 1796 + "beautifultable": [ 1797 + "setuptools" 164 1798 ], 165 - "bash_kernel": [ 166 - "flitBuildHook" 1799 + "bech32": [ 1800 + "setuptools" 1801 + ], 1802 + "bedup": [ 1803 + "setuptools" 1804 + ], 1805 + "behave": [ 1806 + "setuptools" 1807 + ], 1808 + "bellows": [ 1809 + "setuptools" 1810 + ], 1811 + "beniget": [ 1812 + "setuptools" 1813 + ], 1814 + "bespon": [ 1815 + "setuptools" 1816 + ], 1817 + "betacode": [ 1818 + "setuptools" 1819 + ], 1820 + "betamax": [ 1821 + "setuptools" 1822 + ], 1823 + "betamax-matchers": [ 1824 + "setuptools" 1825 + ], 1826 + "betamax-serializers": [ 1827 + "setuptools" 1828 + ], 1829 + "betterproto": [ 1830 + "poetry-core", 1831 + "setuptools" 1832 + ], 1833 + "bibtexparser": [ 1834 + "setuptools" 1835 + ], 1836 + "bidict": [ 1837 + "setuptools" 1838 + ], 1839 + "bids-validator": [ 1840 + "setuptools" 1841 + ], 1842 + "biliass": [ 1843 + "setuptools" 1844 + ], 1845 + "billiard": [ 1846 + "setuptools" 167 1847 ], 168 1848 "bimmer-connected": [ 169 - "pbr" 1849 + "pbr", 1850 + "setuptools" 1851 + ], 1852 + "binaryornot": [ 1853 + "setuptools" 1854 + ], 1855 + "bincopy": [ 1856 + "setuptools" 1857 + ], 1858 + "binho-host-adapter": [ 1859 + "setuptools" 1860 + ], 1861 + "binwalk": [ 1862 + "setuptools" 1863 + ], 1864 + "binwalk-full": [ 1865 + "setuptools" 1866 + ], 1867 + "biopython": [ 1868 + "setuptools" 1869 + ], 1870 + "bip-utils": [ 1871 + "setuptools" 1872 + ], 1873 + "biplist": [ 1874 + "setuptools" 1875 + ], 1876 + "bitarray": [ 1877 + "setuptools" 1878 + ], 1879 + "bitbox02": [ 1880 + "setuptools" 1881 + ], 1882 + "bitcoin-utils-fork-minimal": [ 1883 + "setuptools" 1884 + ], 1885 + "bitcoinlib": [ 1886 + "setuptools" 1887 + ], 1888 + "bitcoinrpc": [ 1889 + "setuptools" 1890 + ], 1891 + "bite-parser": [ 1892 + "poetry-core", 1893 + "setuptools" 1894 + ], 1895 + "bitlist": [ 1896 + "setuptools" 1897 + ], 1898 + "bitmath": [ 1899 + "setuptools" 1900 + ], 1901 + "bitstring": [ 1902 + "setuptools" 1903 + ], 1904 + "bitstruct": [ 1905 + "setuptools" 1906 + ], 1907 + "bitvavo-aio": [ 1908 + "setuptools" 1909 + ], 1910 + "bizkaibus": [ 1911 + "setuptools" 1912 + ], 1913 + "bjoern": [ 1914 + "setuptools" 1915 + ], 1916 + "bkcharts": [ 1917 + "setuptools" 1918 + ], 1919 + "black": [ 1920 + { 1921 + "buildSystem": "hatch-fancy-pypi-readme", 1922 + "from": "22.10.0" 1923 + }, 1924 + { 1925 + "buildSystem": "hatchling", 1926 + "from": "22.10.0" 1927 + }, 1928 + { 1929 + "buildSystem": "hatch-vcs", 1930 + "from": "22.10.0" 1931 + }, 1932 + "setuptools", 1933 + "setuptools-scm" 1934 + ], 1935 + "black-macchiato": [ 1936 + "setuptools" 1937 + ], 1938 + "bleach": [ 1939 + "setuptools" 1940 + ], 1941 + "bleak": [ 1942 + "poetry-core", 1943 + "setuptools" 1944 + ], 1945 + "bleak-retry-connector": [ 1946 + "poetry-core", 1947 + "setuptools" 1948 + ], 1949 + "blebox-uniapi": [ 1950 + "setuptools" 1951 + ], 1952 + "bless": [ 1953 + "setuptools" 1954 + ], 1955 + "blessed": [ 1956 + "setuptools" 1957 + ], 1958 + "blessings": [ 1959 + "setuptools" 1960 + ], 1961 + "blinker": [ 1962 + "setuptools" 1963 + ], 1964 + "blinkpy": [ 1965 + "setuptools" 1966 + ], 1967 + "blinkstick": [ 1968 + "setuptools" 170 1969 ], 171 1970 "blis": [ 172 - "cython" 1971 + "cython", 1972 + "setuptools" 1973 + ], 1974 + "block-io": [ 1975 + "setuptools" 1976 + ], 1977 + "blockchain": [ 1978 + "setuptools" 1979 + ], 1980 + "blockdiag": [ 1981 + "setuptools" 1982 + ], 1983 + "blocksat-cli": [ 1984 + "setuptools" 1985 + ], 1986 + "blspy": [ 1987 + "setuptools", 1988 + "setuptools-scm" 1989 + ], 1990 + "bluemaestro-ble": [ 1991 + "poetry-core", 1992 + "setuptools" 1993 + ], 1994 + "bluepy": [ 1995 + "setuptools" 1996 + ], 1997 + "bluepy-devices": [ 1998 + "setuptools" 1999 + ], 2000 + "bluetooth-adapters": [ 2001 + "poetry-core", 2002 + "setuptools" 2003 + ], 2004 + "bluetooth-auto-recovery": [ 2005 + "poetry-core", 2006 + "setuptools" 2007 + ], 2008 + "bluetooth-data-tools": [ 2009 + "poetry-core", 2010 + "setuptools" 2011 + ], 2012 + "bluetooth-sensor-state-data": [ 2013 + "poetry-core", 2014 + "setuptools" 2015 + ], 2016 + "blurhash": [ 2017 + "setuptools" 2018 + ], 2019 + "bme280spi": [ 2020 + "setuptools" 2021 + ], 2022 + "bme680": [ 2023 + "setuptools" 2024 + ], 2025 + "bokeh": [ 2026 + "setuptools" 2027 + ], 2028 + "boltons": [ 2029 + "setuptools" 173 2030 ], 174 2031 "boltztrap2": [ 175 - "cython" 2032 + "cython", 2033 + "setuptools" 2034 + ], 2035 + "bond-api": [ 2036 + "setuptools" 2037 + ], 2038 + "bond-async": [ 2039 + "setuptools" 2040 + ], 2041 + "boolean-py": [ 2042 + "setuptools" 2043 + ], 2044 + "booleanoperations": [ 2045 + "setuptools", 2046 + "setuptools-scm" 2047 + ], 2048 + "boost-histogram": [ 2049 + "setuptools", 2050 + "setuptools-scm" 2051 + ], 2052 + "boschshcpy": [ 2053 + "setuptools" 2054 + ], 2055 + "boto": [ 2056 + "setuptools" 2057 + ], 2058 + "boto3": [ 2059 + "setuptools" 2060 + ], 2061 + "boto3-stubs": [ 2062 + "setuptools" 2063 + ], 2064 + "botocore": [ 2065 + "setuptools" 2066 + ], 2067 + "botocore-stubs": [ 2068 + "poetry-core" 2069 + ], 2070 + "bottle": [ 2071 + "setuptools" 2072 + ], 2073 + "bottleneck": [ 2074 + "setuptools" 2075 + ], 2076 + "boxx": [ 2077 + "setuptools" 2078 + ], 2079 + "bpycv": [ 2080 + "setuptools" 2081 + ], 2082 + "bpython": [ 2083 + "setuptools" 2084 + ], 2085 + "braceexpand": [ 2086 + "setuptools" 176 2087 ], 177 2088 "bracex": [ 178 - "hatchling" 2089 + "hatchling", 2090 + "setuptools" 2091 + ], 2092 + "braintree": [ 2093 + "setuptools" 2094 + ], 2095 + "branca": [ 2096 + "setuptools" 2097 + ], 2098 + "bravado-core": [ 2099 + "setuptools" 2100 + ], 2101 + "bravia-tv": [ 2102 + "setuptools" 2103 + ], 2104 + "breathe": [ 2105 + "setuptools" 2106 + ], 2107 + "breezy": [ 2108 + "setuptools" 2109 + ], 2110 + "brelpy": [ 2111 + "setuptools" 2112 + ], 2113 + "broadlink": [ 2114 + "setuptools" 2115 + ], 2116 + "brother": [ 2117 + "setuptools" 2118 + ], 2119 + "brother-ql": [ 2120 + "setuptools" 2121 + ], 2122 + "brotli": [ 2123 + "setuptools" 2124 + ], 2125 + "brotlicffi": [ 2126 + "setuptools" 2127 + ], 2128 + "brotlipy": [ 2129 + "setuptools" 2130 + ], 2131 + "brottsplatskartan": [ 2132 + "setuptools" 2133 + ], 2134 + "browser-cookie3": [ 2135 + "setuptools" 2136 + ], 2137 + "brunt": [ 2138 + "setuptools" 179 2139 ], 180 2140 "bsblan": [ 181 - "poetry-core" 2141 + "poetry-core", 2142 + "setuptools" 2143 + ], 2144 + "bsddb3": [ 2145 + "setuptools" 2146 + ], 2147 + "bsdiff4": [ 2148 + "setuptools" 2149 + ], 2150 + "bson": [ 2151 + "setuptools" 2152 + ], 2153 + "bsuite": [ 2154 + "setuptools" 2155 + ], 2156 + "bt-proximity": [ 2157 + "setuptools" 2158 + ], 2159 + "btchip": [ 2160 + "setuptools" 2161 + ], 2162 + "bthome-ble": [ 2163 + "poetry-core", 2164 + "setuptools" 2165 + ], 2166 + "btrees": [ 2167 + "setuptools" 2168 + ], 2169 + "btrfs": [ 2170 + "setuptools" 2171 + ], 2172 + "btrfsutil": [ 2173 + "setuptools" 2174 + ], 2175 + "btsocket": [ 2176 + "setuptools" 2177 + ], 2178 + "bucketstore": [ 2179 + "setuptools" 2180 + ], 2181 + "bugsnag": [ 2182 + "setuptools" 2183 + ], 2184 + "bugwarrior": [ 2185 + "setuptools" 2186 + ], 2187 + "bugz": [ 2188 + "setuptools" 2189 + ], 2190 + "bugzilla": [ 2191 + "setuptools" 2192 + ], 2193 + "buienradar": [ 2194 + "setuptools" 182 2195 ], 183 2196 "build": [ 184 - "flit-core" 2197 + "flit-core", 2198 + "setuptools" 2199 + ], 2200 + "buildbot": [ 2201 + "setuptools" 2202 + ], 2203 + "buildbot-full": [ 2204 + "setuptools" 2205 + ], 2206 + "buildbot-pkg": [ 2207 + "setuptools" 2208 + ], 2209 + "buildbot-plugins-console-view": [ 2210 + "setuptools" 2211 + ], 2212 + "buildbot-plugins-grid-view": [ 2213 + "setuptools" 2214 + ], 2215 + "buildbot-plugins-waterfall-view": [ 2216 + "setuptools" 2217 + ], 2218 + "buildbot-plugins-wsgi-dashboards": [ 2219 + "setuptools" 2220 + ], 2221 + "buildbot-plugins-www": [ 2222 + "setuptools" 2223 + ], 2224 + "buildbot-ui": [ 2225 + "setuptools" 2226 + ], 2227 + "buildbot-worker": [ 2228 + "setuptools" 2229 + ], 2230 + "buildcatrust": [ 2231 + "setuptools" 2232 + ], 2233 + "bumps": [ 2234 + "setuptools" 2235 + ], 2236 + "bunch": [ 2237 + "setuptools" 2238 + ], 2239 + "bwapy": [ 2240 + "setuptools" 185 2241 ], 186 2242 "bx-python": [ 187 - "cython" 2243 + "cython", 2244 + "setuptools" 2245 + ], 2246 + "bytecode": [ 2247 + "setuptools" 2248 + ], 2249 + "bz2file": [ 2250 + "setuptools" 2251 + ], 2252 + "cachecontrol": [ 2253 + "setuptools" 2254 + ], 2255 + "cached-property": [ 2256 + "setuptools" 2257 + ], 2258 + "cachelib": [ 2259 + "setuptools" 2260 + ], 2261 + "cachetools": [ 2262 + "setuptools" 2263 + ], 2264 + "cachey": [ 2265 + "setuptools" 2266 + ], 2267 + "cachy": [ 2268 + "setuptools" 2269 + ], 2270 + "caio": [ 2271 + "setuptools" 2272 + ], 2273 + "cairo-lang": [ 2274 + "setuptools" 2275 + ], 2276 + "cairocffi": [ 2277 + "setuptools" 2278 + ], 2279 + "cairosvg": [ 2280 + "setuptools" 2281 + ], 2282 + "caldav": [ 2283 + "setuptools" 2284 + ], 2285 + "callee": [ 2286 + "setuptools" 2287 + ], 2288 + "calmjs-parse": [ 2289 + "setuptools" 2290 + ], 2291 + "can": [ 2292 + "setuptools" 2293 + ], 2294 + "canmatrix": [ 2295 + "setuptools" 2296 + ], 2297 + "canonicaljson": [ 2298 + "setuptools" 2299 + ], 2300 + "canopen": [ 2301 + "setuptools", 2302 + "setuptools-scm" 2303 + ], 2304 + "capstone": [ 2305 + "setuptools" 2306 + ], 2307 + "capturer": [ 2308 + "setuptools" 2309 + ], 2310 + "carbon": [ 2311 + "setuptools" 2312 + ], 2313 + "cart": [ 2314 + "setuptools" 188 2315 ], 189 2316 "cartopy": [ 190 - "cython" 2317 + "cython", 2318 + "setuptools", 2319 + "setuptools-scm" 2320 + ], 2321 + "casa-formats-io": [ 2322 + "setuptools", 2323 + "setuptools-scm" 2324 + ], 2325 + "casbin": [ 2326 + "setuptools" 2327 + ], 2328 + "case": [ 2329 + "setuptools" 191 2330 ], 192 2331 "cassandra-driver": [ 193 - "cython" 2332 + "cython", 2333 + "setuptools" 2334 + ], 2335 + "castepxbin": [ 2336 + "setuptools" 2337 + ], 2338 + "casttube": [ 2339 + "setuptools" 2340 + ], 2341 + "catalogue": [ 2342 + "setuptools" 2343 + ], 2344 + "catboost": [ 2345 + "setuptools" 194 2346 ], 195 2347 "cattrs": [ 196 - "poetry-core" 2348 + "poetry-core", 2349 + "setuptools" 2350 + ], 2351 + "cbeams": [ 2352 + "setuptools" 2353 + ], 2354 + "cbor": [ 2355 + "setuptools" 2356 + ], 2357 + "cbor2": [ 2358 + "setuptools", 2359 + "setuptools-scm" 2360 + ], 2361 + "cccolutils": [ 2362 + "setuptools" 2363 + ], 2364 + "cchardet": [ 2365 + "setuptools" 2366 + ], 2367 + "cdcs": [ 2368 + "setuptools" 2369 + ], 2370 + "celery": [ 2371 + "setuptools" 2372 + ], 2373 + "celery-redbeat": [ 2374 + "setuptools" 2375 + ], 2376 + "cement": [ 2377 + "setuptools" 197 2378 ], 198 2379 "censys": [ 2380 + "poetry-core", 2381 + "setuptools" 2382 + ], 2383 + "cepa": [ 2384 + "setuptools" 2385 + ], 2386 + "cerberus": [ 2387 + "setuptools" 2388 + ], 2389 + "cert-chain-resolver": [ 2390 + "setuptools" 2391 + ], 2392 + "certauth": [ 2393 + "setuptools" 2394 + ], 2395 + "certbot": [ 2396 + "setuptools" 2397 + ], 2398 + "certbot-dns-cloudflare": [ 2399 + "setuptools" 2400 + ], 2401 + "certbot-dns-google": [ 2402 + "setuptools" 2403 + ], 2404 + "certbot-dns-inwx": [ 2405 + "setuptools" 2406 + ], 2407 + "certbot-dns-rfc2136": [ 2408 + "setuptools" 2409 + ], 2410 + "certbot-dns-route53": [ 2411 + "setuptools" 2412 + ], 2413 + "certifi": [ 2414 + "setuptools" 2415 + ], 2416 + "certipy": [ 2417 + "setuptools" 2418 + ], 2419 + "certomancer": [ 2420 + "setuptools" 2421 + ], 2422 + "certvalidator": [ 2423 + "setuptools" 2424 + ], 2425 + "cexprtk": [ 2426 + "setuptools" 2427 + ], 2428 + "cfel-pylint-checkers": [ 199 2429 "poetry-core" 200 2430 ], 2431 + "cffi": [ 2432 + "setuptools" 2433 + ], 2434 + "cffsubr": [ 2435 + "setuptools", 2436 + "setuptools-scm" 2437 + ], 2438 + "cfgv": [ 2439 + "setuptools" 2440 + ], 2441 + "cfn-flip": [ 2442 + "setuptools" 2443 + ], 2444 + "cfn-lint": [ 2445 + "setuptools" 2446 + ], 2447 + "cfscrape": [ 2448 + "setuptools" 2449 + ], 201 2450 "cftime": [ 202 - "cython" 2451 + "cython", 2452 + "setuptools" 2453 + ], 2454 + "cgen": [ 2455 + "setuptools" 2456 + ], 2457 + "cgroup-utils": [ 2458 + "setuptools" 2459 + ], 2460 + "chacha20poly1305-reuseable": [ 2461 + "poetry-core", 2462 + "setuptools" 2463 + ], 2464 + "chai": [ 2465 + "setuptools" 2466 + ], 2467 + "chainer": [ 2468 + "setuptools" 2469 + ], 2470 + "chainmap": [ 2471 + "setuptools" 2472 + ], 2473 + "chalice": [ 2474 + "setuptools" 2475 + ], 2476 + "chameleon": [ 2477 + "setuptools" 2478 + ], 2479 + "channels": [ 2480 + "setuptools" 2481 + ], 2482 + "channels-redis": [ 2483 + "setuptools" 2484 + ], 2485 + "characteristic": [ 2486 + "setuptools" 2487 + ], 2488 + "chardet": [ 2489 + "setuptools" 2490 + ], 2491 + "charset-normalizer": [ 2492 + "setuptools" 2493 + ], 2494 + "chart-studio": [ 2495 + "setuptools" 2496 + ], 2497 + "chat-downloader": [ 2498 + "setuptools" 2499 + ], 2500 + "check-manifest": [ 2501 + "setuptools" 2502 + ], 2503 + "cheetah3": [ 2504 + "setuptools" 2505 + ], 2506 + "cheroot": [ 2507 + "setuptools", 2508 + "setuptools-scm" 2509 + ], 2510 + "cherrypy": [ 2511 + "setuptools", 2512 + "setuptools-scm" 2513 + ], 2514 + "chess": [ 2515 + "setuptools" 2516 + ], 2517 + "chevron": [ 2518 + "setuptools" 2519 + ], 2520 + "chex": [ 2521 + "setuptools" 2522 + ], 2523 + "chia-rs": [ 2524 + "setuptools" 2525 + ], 2526 + "chiabip158": [ 2527 + "setuptools", 2528 + "setuptools-scm" 2529 + ], 2530 + "chiapos": [ 2531 + "setuptools", 2532 + "setuptools-scm" 2533 + ], 2534 + "chiavdf": [ 2535 + "setuptools", 2536 + "setuptools-scm" 2537 + ], 2538 + "chirpstack-api": [ 2539 + "setuptools" 203 2540 ], 204 2541 "chispa": [ 205 - "poetry-core" 2542 + "poetry-core", 2543 + "setuptools" 2544 + ], 2545 + "ci-info": [ 2546 + "setuptools" 2547 + ], 2548 + "ci-py": [ 2549 + "setuptools" 2550 + ], 2551 + "cinemagoer": [ 2552 + "setuptools" 2553 + ], 2554 + "circuit-webhook": [ 2555 + "setuptools" 2556 + ], 2557 + "circuitbreaker": [ 2558 + "setuptools" 2559 + ], 2560 + "cirq": [ 2561 + "setuptools" 2562 + ], 2563 + "cirq-aqt": [ 2564 + "setuptools" 2565 + ], 2566 + "cirq-core": [ 2567 + "setuptools" 2568 + ], 2569 + "cirq-google": [ 2570 + "setuptools" 2571 + ], 2572 + "cirq-ionq": [ 2573 + "setuptools" 2574 + ], 2575 + "cirq-pasqal": [ 2576 + "setuptools" 2577 + ], 2578 + "cirq-rigetti": [ 2579 + "setuptools" 2580 + ], 2581 + "cirq-web": [ 2582 + "setuptools" 206 2583 ], 207 2584 "ciscoconfparse": [ 208 - "poetry-core" 2585 + "poetry-core", 2586 + "setuptools" 2587 + ], 2588 + "ciscomobilityexpress": [ 2589 + "setuptools" 2590 + ], 2591 + "ciso8601": [ 2592 + "setuptools" 2593 + ], 2594 + "citeproc-py": [ 2595 + "setuptools" 2596 + ], 2597 + "cjkwrap": [ 2598 + "setuptools" 2599 + ], 2600 + "ckcc-protocol": [ 2601 + "setuptools" 2602 + ], 2603 + "claripy": [ 2604 + "setuptools" 2605 + ], 2606 + "class-registry": [ 2607 + "setuptools" 2608 + ], 2609 + "classify-imports": [ 2610 + "setuptools" 2611 + ], 2612 + "cld2-cffi": [ 2613 + "setuptools" 2614 + ], 2615 + "cle": [ 2616 + "setuptools" 209 2617 ], 210 2618 "cleo": [ 211 - "poetry-core" 2619 + "poetry-core", 2620 + "setuptools" 2621 + ], 2622 + "clevercsv": [ 2623 + "setuptools" 2624 + ], 2625 + "clf": [ 2626 + "setuptools" 2627 + ], 2628 + "cli-helpers": [ 2629 + "setuptools" 2630 + ], 2631 + "click": [ 2632 + "setuptools" 2633 + ], 2634 + "click-completion": [ 2635 + "setuptools" 2636 + ], 2637 + "click-configfile": [ 2638 + "setuptools" 2639 + ], 2640 + "click-datetime": [ 2641 + "setuptools" 2642 + ], 2643 + "click-default-group": [ 2644 + "setuptools" 2645 + ], 2646 + "click-didyoumean": [ 2647 + "setuptools" 2648 + ], 2649 + "click-help-colors": [ 2650 + "setuptools" 2651 + ], 2652 + "click-log": [ 2653 + "setuptools" 2654 + ], 2655 + "click-option-group": [ 2656 + "setuptools" 2657 + ], 2658 + "click-plugins": [ 2659 + "setuptools" 2660 + ], 2661 + "click-repl": [ 2662 + "setuptools" 2663 + ], 2664 + "click-spinner": [ 2665 + "setuptools" 2666 + ], 2667 + "click-threading": [ 2668 + "setuptools" 2669 + ], 2670 + "clickclick": [ 2671 + "setuptools" 2672 + ], 2673 + "clickgen": [ 2674 + "setuptools" 2675 + ], 2676 + "clickhouse-cityhash": [ 2677 + "setuptools" 2678 + ], 2679 + "clickhouse-cli": [ 2680 + "setuptools" 2681 + ], 2682 + "clickhouse-driver": [ 2683 + "setuptools" 212 2684 ], 213 2685 "cliff": [ 214 - "pbr" 2686 + "pbr", 2687 + "setuptools" 2688 + ], 2689 + "clifford": [ 2690 + "setuptools" 2691 + ], 2692 + "cligj": [ 2693 + "setuptools" 215 2694 ], 216 2695 "clikit": [ 217 - "poetry-core" 2696 + "poetry-core", 2697 + "setuptools" 2698 + ], 2699 + "clint": [ 2700 + "setuptools" 2701 + ], 2702 + "clintermission": [ 2703 + "setuptools" 2704 + ], 2705 + "clize": [ 2706 + "setuptools" 2707 + ], 2708 + "clldutils": [ 2709 + "setuptools" 2710 + ], 2711 + "cloudflare": [ 2712 + "setuptools" 218 2713 ], 219 2714 "cloudflare-dyndns": [ 220 - "poetry" 2715 + "poetry", 2716 + "poetry-core", 2717 + "setuptools" 2718 + ], 2719 + "cloudpickle": [ 2720 + "setuptools" 2721 + ], 2722 + "cloudscraper": [ 2723 + "setuptools" 2724 + ], 2725 + "cloudsmith-api": [ 2726 + "setuptools" 2727 + ], 2728 + "cloudsplaining": [ 2729 + "setuptools" 2730 + ], 2731 + "cloup": [ 2732 + "setuptools", 2733 + "setuptools-scm" 2734 + ], 2735 + "clustershell": [ 2736 + "setuptools" 2737 + ], 2738 + "clvm": [ 2739 + "setuptools", 2740 + "setuptools-scm" 2741 + ], 2742 + "clvm-rs": [ 2743 + "setuptools" 2744 + ], 2745 + "clvm-tools": [ 2746 + "setuptools", 2747 + "setuptools-scm" 2748 + ], 2749 + "clvm-tools-rs": [ 2750 + "setuptools" 2751 + ], 2752 + "cma": [ 2753 + "setuptools" 2754 + ], 2755 + "cmarkgfm": [ 2756 + "setuptools" 2757 + ], 2758 + "cmd2": [ 2759 + "setuptools", 2760 + "setuptools-scm" 2761 + ], 2762 + "cmdline": [ 2763 + "setuptools" 2764 + ], 2765 + "cmigemo": [ 2766 + "setuptools" 2767 + ], 2768 + "cmsis-pack-manager": [ 2769 + "setuptools", 2770 + "setuptools-scm" 2771 + ], 2772 + "cmsis-svd": [ 2773 + "setuptools" 2774 + ], 2775 + "cnvkit": [ 2776 + "setuptools" 2777 + ], 2778 + "co2signal": [ 2779 + "setuptools" 2780 + ], 2781 + "coapthon3": [ 2782 + "setuptools" 2783 + ], 2784 + "cock": [ 2785 + "setuptools" 2786 + ], 2787 + "coconut": [ 2788 + "setuptools" 2789 + ], 2790 + "cocotb": [ 2791 + "setuptools", 2792 + "setuptools-scm" 2793 + ], 2794 + "cocotb-bus": [ 2795 + "setuptools" 2796 + ], 2797 + "codecov": [ 2798 + "setuptools" 2799 + ], 2800 + "codepy": [ 2801 + "setuptools" 2802 + ], 2803 + "codespell": [ 2804 + "setuptools" 2805 + ], 2806 + "cogapp": [ 2807 + "setuptools" 2808 + ], 2809 + "coincurve": [ 2810 + "setuptools" 2811 + ], 2812 + "coinmetrics-api-client": [ 2813 + "poetry-core", 2814 + "setuptools" 2815 + ], 2816 + "colander": [ 2817 + "setuptools" 2818 + ], 2819 + "colanderalchemy": [ 2820 + "setuptools" 221 2821 ], 222 2822 "collections-extended": [ 223 - "poetry-core" 2823 + "poetry-core", 2824 + "setuptools" 2825 + ], 2826 + "colorama": [ 2827 + "setuptools" 2828 + ], 2829 + "colorcet": [ 2830 + "setuptools" 224 2831 ], 225 2832 "colorclass": [ 226 - "poetry" 2833 + "poetry", 2834 + "setuptools" 2835 + ], 2836 + "colored": [ 2837 + "setuptools" 2838 + ], 2839 + "colored-traceback": [ 2840 + "setuptools" 2841 + ], 2842 + "coloredlogs": [ 2843 + "setuptools" 2844 + ], 2845 + "colorful": [ 2846 + "setuptools" 227 2847 ], 228 2848 "colorhash": [ 229 2849 "poetry" 230 2850 ], 2851 + "colorlog": [ 2852 + "setuptools" 2853 + ], 2854 + "colorlover": [ 2855 + "setuptools" 2856 + ], 2857 + "colormath": [ 2858 + "setuptools" 2859 + ], 2860 + "colorspacious": [ 2861 + "setuptools" 2862 + ], 2863 + "colorthief": [ 2864 + "setuptools" 2865 + ], 2866 + "colorzero": [ 2867 + "setuptools" 2868 + ], 2869 + "colour": [ 2870 + "setuptools" 2871 + ], 2872 + "cometblue-lite": [ 2873 + "setuptools" 2874 + ], 2875 + "commandparse": [ 2876 + "setuptools" 2877 + ], 2878 + "commentjson": [ 2879 + "setuptools" 2880 + ], 231 2881 "commitizen": [ 232 2882 "poetry-core" 233 2883 ], 2884 + "commoncode": [ 2885 + "setuptools", 2886 + "setuptools-scm" 2887 + ], 2888 + "commonmark": [ 2889 + "setuptools" 2890 + ], 2891 + "compiledb": [ 2892 + "setuptools" 2893 + ], 2894 + "compreffor": [ 2895 + "setuptools", 2896 + "setuptools-scm" 2897 + ], 2898 + "concurrent-log-handler": [ 2899 + "setuptools" 2900 + ], 2901 + "conda": [ 2902 + "setuptools" 2903 + ], 2904 + "configargparse": [ 2905 + "setuptools" 2906 + ], 2907 + "configclass": [ 2908 + "setuptools" 2909 + ], 2910 + "confight": [ 2911 + "setuptools" 2912 + ], 2913 + "configobj": [ 2914 + "setuptools" 2915 + ], 2916 + "configparser": [ 2917 + "setuptools", 2918 + "setuptools-scm" 2919 + ], 2920 + "configshell": [ 2921 + "setuptools" 2922 + ], 2923 + "confluent-kafka": [ 2924 + "setuptools" 2925 + ], 234 2926 "confuse": [ 235 2927 "flit-core", 236 - "flitBuildHook" 2928 + "flitBuildHook", 2929 + "setuptools" 2930 + ], 2931 + "connect-box": [ 2932 + "setuptools" 2933 + ], 2934 + "connection-pool": [ 2935 + "setuptools" 2936 + ], 2937 + "connexion": [ 2938 + "setuptools" 2939 + ], 2940 + "cons": [ 2941 + "setuptools" 2942 + ], 2943 + "consonance": [ 2944 + "setuptools" 2945 + ], 2946 + "constantly": [ 2947 + "setuptools" 2948 + ], 2949 + "construct": [ 2950 + "setuptools" 2951 + ], 2952 + "consul": [ 2953 + "setuptools" 2954 + ], 2955 + "container-inspector": [ 2956 + "setuptools", 2957 + "setuptools-scm" 2958 + ], 2959 + "contexter": [ 2960 + "setuptools" 2961 + ], 2962 + "contextlib2": [ 2963 + "setuptools" 2964 + ], 2965 + "contexttimer": [ 2966 + "setuptools" 2967 + ], 2968 + "contourpy": [ 2969 + "pybind11", 2970 + "setuptools" 2971 + ], 2972 + "convertdate": [ 2973 + "setuptools" 2974 + ], 2975 + "cookiecutter": [ 2976 + "setuptools" 2977 + ], 2978 + "cookies": [ 2979 + "setuptools" 2980 + ], 2981 + "coordinates": [ 2982 + "setuptools" 237 2983 ], 238 2984 "copier": [ 239 2985 "poetry-core" 240 2986 ], 2987 + "coqpit": [ 2988 + "setuptools" 2989 + ], 2990 + "coqui-trainer": [ 2991 + "setuptools" 2992 + ], 2993 + "coreapi": [ 2994 + "setuptools" 2995 + ], 2996 + "coreschema": [ 2997 + "setuptools" 2998 + ], 2999 + "cornice": [ 3000 + "setuptools" 3001 + ], 3002 + "coronavirus": [ 3003 + "setuptools" 3004 + ], 3005 + "corsair-scan": [ 3006 + "setuptools" 3007 + ], 3008 + "cot": [ 3009 + "setuptools" 3010 + ], 3011 + "covcore": [ 3012 + "setuptools" 3013 + ], 3014 + "coverage": [ 3015 + "setuptools" 3016 + ], 3017 + "coveralls": [ 3018 + "setuptools" 3019 + ], 3020 + "cppe": [ 3021 + "setuptools" 3022 + ], 3023 + "cppheaderparser": [ 3024 + "setuptools" 3025 + ], 3026 + "cppy": [ 3027 + "setuptools", 3028 + "setuptools-scm" 3029 + ], 241 3030 "cpyparsing": [ 242 - "cython" 3031 + "cython", 3032 + "setuptools" 3033 + ], 3034 + "cram": [ 3035 + "setuptools" 3036 + ], 3037 + "cramjam": [ 3038 + "setuptools" 243 3039 ], 244 3040 "crashtest": [ 245 - "poetry-core" 3041 + "poetry-core", 3042 + "setuptools" 3043 + ], 3044 + "crate": [ 3045 + "setuptools" 3046 + ], 3047 + "crayons": [ 3048 + "setuptools" 3049 + ], 3050 + "crc16": [ 3051 + "setuptools" 3052 + ], 3053 + "crc32c": [ 3054 + "setuptools" 3055 + ], 3056 + "crccheck": [ 3057 + "setuptools" 3058 + ], 3059 + "crcmod": [ 3060 + "setuptools" 246 3061 ], 247 3062 "credis": [ 248 3063 "cython", 249 3064 "poetry-core" 250 3065 ], 3066 + "credstash": [ 3067 + "setuptools" 3068 + ], 3069 + "criticality-score": [ 3070 + "setuptools" 3071 + ], 3072 + "cron-descriptor": [ 3073 + "setuptools" 3074 + ], 3075 + "croniter": [ 3076 + "setuptools" 3077 + ], 3078 + "cronsim": [ 3079 + "setuptools" 3080 + ], 3081 + "crossplane": [ 3082 + "setuptools" 3083 + ], 3084 + "crownstone-cloud": [ 3085 + "setuptools" 3086 + ], 3087 + "crownstone-core": [ 3088 + "setuptools" 3089 + ], 3090 + "crownstone-sse": [ 3091 + "setuptools" 3092 + ], 3093 + "crownstone-uart": [ 3094 + "setuptools" 3095 + ], 251 3096 "cruft": [ 252 3097 "poetry-core" 253 3098 ], 3099 + "cryptg": [ 3100 + "setuptools" 3101 + ], 3102 + "cryptography": [ 3103 + "setuptools" 3104 + ], 3105 + "cryptolyzer": [ 3106 + "setuptools" 3107 + ], 3108 + "cryptoparser": [ 3109 + "setuptools" 3110 + ], 3111 + "crytic-compile": [ 3112 + "setuptools" 3113 + ], 3114 + "csrmesh": [ 3115 + "setuptools" 3116 + ], 3117 + "css-html-js-minify": [ 3118 + "setuptools" 3119 + ], 3120 + "css-parser": [ 3121 + "setuptools" 3122 + ], 3123 + "csscompressor": [ 3124 + "setuptools" 3125 + ], 3126 + "cssmin": [ 3127 + "setuptools" 3128 + ], 3129 + "cssselect": [ 3130 + "setuptools" 3131 + ], 254 3132 "cssselect2": [ 255 3133 "flit", 256 - "flit-core" 3134 + "flit-core", 3135 + "setuptools" 3136 + ], 3137 + "cssutils": [ 3138 + "setuptools", 3139 + "setuptools-scm" 3140 + ], 3141 + "csvw": [ 3142 + "setuptools" 3143 + ], 3144 + "cucumber-tag-expressions": [ 3145 + "setuptools" 3146 + ], 3147 + "cufflinks": [ 3148 + "setuptools" 3149 + ], 3150 + "curio": [ 3151 + "setuptools" 3152 + ], 3153 + "curtsies": [ 3154 + "setuptools" 3155 + ], 3156 + "curve25519-donna": [ 3157 + "setuptools" 3158 + ], 3159 + "cvxopt": [ 3160 + "setuptools" 3161 + ], 3162 + "cvxpy": [ 3163 + "setuptools" 257 3164 ], 258 3165 "cwcwidth": [ 259 - "cython" 3166 + "cython", 3167 + "setuptools" 3168 + ], 3169 + "cx-freeze": [ 3170 + "setuptools" 3171 + ], 3172 + "cx-oracle": [ 3173 + "setuptools" 3174 + ], 3175 + "cxxfilt": [ 3176 + "setuptools" 3177 + ], 3178 + "cycler": [ 3179 + "setuptools" 260 3180 ], 261 3181 "cyclonedx-python-lib": [ 262 - "poetry-core" 3182 + "poetry-core", 3183 + "setuptools" 263 3184 ], 264 3185 "cymem": [ 265 - "cython" 3186 + "cython", 3187 + "setuptools" 266 3188 ], 267 3189 "cypari2": [ 268 - "cython" 3190 + "cython", 3191 + "setuptools" 269 3192 ], 270 3193 "cypherpunkpay": [ 271 - "poetry-core" 3194 + "poetry-core", 3195 + "setuptools" 272 3196 ], 273 3197 "cysignals": [ 3198 + "cython", 3199 + "setuptools" 3200 + ], 3201 + "cysimdjson": [ 274 3202 "cython" 275 3203 ], 3204 + "cython": [ 3205 + "setuptools" 3206 + ], 3207 + "cython-3": [ 3208 + "setuptools" 3209 + ], 3210 + "cytoolz": [ 3211 + "cython", 3212 + "setuptools" 3213 + ], 3214 + "d20": [ 3215 + "setuptools" 3216 + ], 3217 + "d2to1": [ 3218 + "setuptools" 3219 + ], 3220 + "dacite": [ 3221 + "setuptools" 3222 + ], 3223 + "daemonize": [ 3224 + "setuptools" 3225 + ], 3226 + "daemonocle": [ 3227 + "setuptools" 3228 + ], 3229 + "dalle-mini": [ 3230 + "setuptools" 3231 + ], 3232 + "daphne": [ 3233 + "setuptools" 3234 + ], 3235 + "darglint": [ 3236 + "poetry" 3237 + ], 3238 + "dasbus": [ 3239 + "setuptools" 3240 + ], 3241 + "dash": [ 3242 + "setuptools" 3243 + ], 3244 + "dash-core-components": [ 3245 + "setuptools" 3246 + ], 3247 + "dash-html-components": [ 3248 + "setuptools" 3249 + ], 3250 + "dash-renderer": [ 3251 + "setuptools" 3252 + ], 3253 + "dash-table": [ 3254 + "setuptools" 3255 + ], 3256 + "dask": [ 3257 + "setuptools" 3258 + ], 3259 + "dask-gateway": [ 3260 + "setuptools" 3261 + ], 3262 + "dask-gateway-server": [ 3263 + "setuptools" 3264 + ], 3265 + "dask-glm": [ 3266 + "setuptools", 3267 + "setuptools-scm" 3268 + ], 3269 + "dask-image": [ 3270 + "setuptools" 3271 + ], 3272 + "dask-jobqueue": [ 3273 + "setuptools" 3274 + ], 3275 + "dask-ml": [ 3276 + "setuptools", 3277 + "setuptools-scm" 3278 + ], 3279 + "dask-mpi": [ 3280 + "setuptools" 3281 + ], 3282 + "dask-yarn": [ 3283 + "setuptools" 3284 + ], 3285 + "databases": [ 3286 + "setuptools" 3287 + ], 3288 + "databricks-cli": [ 3289 + "setuptools" 3290 + ], 3291 + "databricks-connect": [ 3292 + "setuptools" 3293 + ], 3294 + "databricks-sql-connector": [ 3295 + "poetry-core" 3296 + ], 3297 + "dataclasses-json": [ 3298 + "setuptools" 3299 + ], 3300 + "dataclasses-serialization": [ 3301 + "setuptools" 3302 + ], 3303 + "datadiff": [ 3304 + "setuptools" 3305 + ], 276 3306 "datadog": [ 277 - "hatchling" 3307 + "hatchling", 3308 + "setuptools" 3309 + ], 3310 + "datafusion": [ 3311 + "setuptools" 3312 + ], 3313 + "datamodeldict": [ 3314 + "setuptools" 3315 + ], 3316 + "datapoint": [ 3317 + "setuptools" 3318 + ], 3319 + "dataset": [ 3320 + "setuptools" 3321 + ], 3322 + "datasets": [ 3323 + "setuptools" 3324 + ], 3325 + "datasette": [ 3326 + "setuptools" 3327 + ], 3328 + "datasette-template-sql": [ 3329 + "setuptools" 3330 + ], 3331 + "datashader": [ 3332 + "setuptools" 3333 + ], 3334 + "datashape": [ 3335 + "setuptools" 3336 + ], 3337 + "datauri": [ 3338 + "setuptools" 3339 + ], 3340 + "dateparser": [ 3341 + "setuptools" 3342 + ], 3343 + "dateutil": [ 3344 + "setuptools", 3345 + "setuptools-scm" 3346 + ], 3347 + "dateutils": [ 3348 + "setuptools" 278 3349 ], 279 3350 "datrie": [ 280 - "cython" 3351 + "cython", 3352 + "setuptools" 3353 + ], 3354 + "dawg-python": [ 3355 + "setuptools" 3356 + ], 3357 + "db-dtypes": [ 3358 + "setuptools" 3359 + ], 3360 + "dbf": [ 3361 + "setuptools" 3362 + ], 3363 + "dbfread": [ 3364 + "setuptools" 3365 + ], 3366 + "dbus-client-gen": [ 3367 + "setuptools" 3368 + ], 3369 + "dbus-fast": [ 3370 + "poetry-core" 3371 + ], 3372 + "dbus-next": [ 3373 + "setuptools" 3374 + ], 3375 + "dbus-python": [ 3376 + "setuptools" 3377 + ], 3378 + "dbus-python-client-gen": [ 3379 + "setuptools" 3380 + ], 3381 + "dbus-signature-pyparsing": [ 3382 + "setuptools" 3383 + ], 3384 + "dbutils": [ 3385 + "setuptools" 3386 + ], 3387 + "ddt": [ 3388 + "setuptools" 281 3389 ], 282 3390 "ddtrace": [ 283 3391 "cython" 284 3392 ], 3393 + "deal": [ 3394 + "flit-core", 3395 + "setuptools" 3396 + ], 3397 + "deal-solver": [ 3398 + "flit-core", 3399 + "setuptools" 3400 + ], 3401 + "deap": [ 3402 + "setuptools" 3403 + ], 3404 + "debian": [ 3405 + "setuptools" 3406 + ], 3407 + "debian-inspector": [ 3408 + "setuptools", 3409 + "setuptools-scm" 3410 + ], 285 3411 "debtcollector": [ 286 - "pbr" 3412 + "pbr", 3413 + "setuptools" 3414 + ], 3415 + "debts": [ 3416 + "setuptools" 3417 + ], 3418 + "debuglater": [ 3419 + "setuptools" 3420 + ], 3421 + "debugpy": [ 3422 + "setuptools" 3423 + ], 3424 + "decli": [ 3425 + "setuptools" 3426 + ], 3427 + "decopatch": [ 3428 + "setuptools", 3429 + "setuptools-scm" 3430 + ], 3431 + "decorator": [ 3432 + "setuptools" 3433 + ], 3434 + "deemix": [ 3435 + "setuptools" 3436 + ], 3437 + "deep-chainmap": [ 3438 + "setuptools" 3439 + ], 3440 + "deep-merge": [ 3441 + "setuptools" 3442 + ], 3443 + "deep-translator": [ 3444 + "setuptools" 3445 + ], 3446 + "deepdiff": [ 3447 + "setuptools" 3448 + ], 3449 + "deepdish": [ 3450 + "setuptools" 3451 + ], 3452 + "deepmerge": [ 3453 + "setuptools", 3454 + "setuptools-scm" 3455 + ], 3456 + "deeptoolsintervals": [ 3457 + "setuptools" 3458 + ], 3459 + "deepwave": [ 3460 + "setuptools" 3461 + ], 3462 + "deezer-py": [ 3463 + "setuptools" 287 3464 ], 288 3465 "deezer-python": [ 289 - "poetry-core" 3466 + "poetry-core", 3467 + "setuptools" 3468 + ], 3469 + "defcon": [ 3470 + "setuptools", 3471 + "setuptools-scm" 3472 + ], 3473 + "deform": [ 3474 + "setuptools" 3475 + ], 3476 + "defusedxml": [ 3477 + "setuptools" 3478 + ], 3479 + "delegator-py": [ 3480 + "setuptools" 3481 + ], 3482 + "delorean": [ 3483 + "setuptools" 3484 + ], 3485 + "deltachat": [ 3486 + "setuptools", 3487 + "setuptools-scm" 3488 + ], 3489 + "deluge-client": [ 3490 + "setuptools" 3491 + ], 3492 + "demjson3": [ 3493 + "setuptools" 3494 + ], 3495 + "dendropy": [ 3496 + "setuptools" 3497 + ], 3498 + "denonavr": [ 3499 + "setuptools" 3500 + ], 3501 + "dependency-injector": [ 3502 + "setuptools" 3503 + ], 3504 + "deprecated": [ 3505 + "setuptools" 3506 + ], 3507 + "deprecation": [ 3508 + "setuptools" 3509 + ], 3510 + "derpconf": [ 3511 + "setuptools" 3512 + ], 3513 + "desktop-notifier": [ 3514 + "setuptools" 3515 + ], 3516 + "detect-secrets": [ 3517 + "setuptools" 3518 + ], 3519 + "devito": [ 3520 + "setuptools" 3521 + ], 3522 + "devolo-home-control-api": [ 3523 + "setuptools", 3524 + "setuptools-scm" 3525 + ], 3526 + "devolo-plc-api": [ 3527 + "setuptools", 3528 + "setuptools-scm" 3529 + ], 3530 + "devtools": [ 3531 + "setuptools" 290 3532 ], 291 3533 "diagrams": [ 292 - "poetry-core" 3534 + "poetry-core", 3535 + "setuptools" 3536 + ], 3537 + "diceware": [ 3538 + "setuptools" 3539 + ], 3540 + "dicom2nifti": [ 3541 + "setuptools" 3542 + ], 3543 + "dict2xml": [ 3544 + "setuptools" 3545 + ], 3546 + "dictdiffer": [ 3547 + "setuptools", 3548 + "setuptools-scm" 3549 + ], 3550 + "dictionaries": [ 3551 + "setuptools" 3552 + ], 3553 + "dictpath": [ 3554 + "setuptools" 3555 + ], 3556 + "dicttoxml": [ 3557 + "setuptools" 3558 + ], 3559 + "dicttoxml2": [ 3560 + "setuptools" 3561 + ], 3562 + "diff-cover": [ 3563 + "setuptools" 3564 + ], 3565 + "diff-match-patch": [ 3566 + "setuptools" 3567 + ], 3568 + "digi-xbee": [ 3569 + "setuptools" 3570 + ], 3571 + "digital-ocean": [ 3572 + "setuptools" 3573 + ], 3574 + "dill": [ 3575 + "setuptools" 3576 + ], 3577 + "dinghy": [ 3578 + "setuptools" 3579 + ], 3580 + "dingz": [ 3581 + "setuptools" 3582 + ], 3583 + "diofant": [ 3584 + "setuptools", 3585 + "setuptools-scm" 293 3586 ], 294 3587 "dipy": [ 295 - "cython" 3588 + "cython", 3589 + "setuptools" 3590 + ], 3591 + "directv": [ 3592 + "setuptools" 3593 + ], 3594 + "dirty-equals": [ 3595 + "poetry-core", 3596 + "setuptools" 3597 + ], 3598 + "discid": [ 3599 + "setuptools" 3600 + ], 3601 + "discogs-client": [ 3602 + "setuptools" 3603 + ], 3604 + "discordpy": [ 3605 + "setuptools" 296 3606 ], 297 3607 "discovery30303": [ 298 - "poetry-core" 3608 + "poetry-core", 3609 + "setuptools" 3610 + ], 3611 + "diskcache": [ 3612 + "setuptools" 3613 + ], 3614 + "dissononce": [ 3615 + "setuptools" 3616 + ], 3617 + "distlib": [ 3618 + "setuptools" 3619 + ], 3620 + "distorm3": [ 3621 + "setuptools" 3622 + ], 3623 + "distrax": [ 3624 + "setuptools" 3625 + ], 3626 + "distributed": [ 3627 + "setuptools" 3628 + ], 3629 + "distro": [ 3630 + "setuptools" 3631 + ], 3632 + "distutils-extra": [ 3633 + "setuptools" 3634 + ], 3635 + "dj-database-url": [ 3636 + "setuptools" 3637 + ], 3638 + "dj-email-url": [ 3639 + "setuptools" 3640 + ], 3641 + "dj-rest-auth": [ 3642 + "setuptools" 3643 + ], 3644 + "dj-search-url": [ 3645 + "setuptools" 3646 + ], 3647 + "django": [ 3648 + "setuptools" 3649 + ], 3650 + "django-3": [ 3651 + "setuptools" 3652 + ], 3653 + "django-4": [ 3654 + "setuptools" 3655 + ], 3656 + "django-allauth": [ 3657 + "setuptools" 3658 + ], 3659 + "django-anymail": [ 3660 + "setuptools" 3661 + ], 3662 + "django-appconf": [ 3663 + "setuptools" 3664 + ], 3665 + "django-auth-ldap": [ 3666 + "setuptools", 3667 + "setuptools-scm" 3668 + ], 3669 + "django-cache-url": [ 3670 + "setuptools" 3671 + ], 3672 + "django-cacheops": [ 3673 + "setuptools" 3674 + ], 3675 + "django-celery-beat": [ 3676 + "setuptools" 3677 + ], 3678 + "django-celery-email": [ 3679 + "setuptools" 3680 + ], 3681 + "django-classytags": [ 3682 + "setuptools" 3683 + ], 3684 + "django-cleanup": [ 3685 + "setuptools" 3686 + ], 3687 + "django-colorful": [ 3688 + "setuptools" 3689 + ], 3690 + "django-compat": [ 3691 + "setuptools" 3692 + ], 3693 + "django-compressor": [ 3694 + "setuptools" 3695 + ], 3696 + "django-configurations": [ 3697 + "setuptools", 3698 + "setuptools-scm" 3699 + ], 3700 + "django-contrib-comments": [ 3701 + "setuptools" 3702 + ], 3703 + "django-cors-headers": [ 3704 + "setuptools" 3705 + ], 3706 + "django-cryptography": [ 3707 + "setuptools" 3708 + ], 3709 + "django-csp": [ 3710 + "setuptools" 3711 + ], 3712 + "django-debug-toolbar": [ 3713 + "setuptools" 3714 + ], 3715 + "django-discover-runner": [ 3716 + "setuptools" 3717 + ], 3718 + "django-dynamic-preferences": [ 3719 + "setuptools" 3720 + ], 3721 + "django-encrypted-model-fields": [ 3722 + "poetry-core", 3723 + "setuptools" 3724 + ], 3725 + "django-environ": [ 3726 + "setuptools" 3727 + ], 3728 + "django-extensions": [ 3729 + "setuptools" 3730 + ], 3731 + "django-filter": [ 3732 + "setuptools" 3733 + ], 3734 + "django-formtools": [ 3735 + "setuptools", 3736 + "setuptools-scm" 299 3737 ], 300 3738 "django-graphiql-debug-toolbar": [ 301 - "poetry-core" 3739 + "poetry-core", 3740 + "setuptools" 3741 + ], 3742 + "django-gravatar2": [ 3743 + "setuptools" 3744 + ], 3745 + "django-guardian": [ 3746 + "setuptools" 3747 + ], 3748 + "django-haystack": [ 3749 + "setuptools", 3750 + "setuptools-scm" 3751 + ], 3752 + "django-health-check": [ 3753 + "setuptools", 3754 + "setuptools-scm" 3755 + ], 3756 + "django-hijack": [ 3757 + "setuptools" 3758 + ], 3759 + "django-ipware": [ 3760 + "setuptools" 3761 + ], 3762 + "django-jinja": [ 3763 + "setuptools" 3764 + ], 3765 + "django-js-asset": [ 3766 + "setuptools" 3767 + ], 3768 + "django-logentry-admin": [ 3769 + "setuptools" 3770 + ], 3771 + "django-mailman3": [ 3772 + "setuptools" 3773 + ], 3774 + "django-maintenance-mode": [ 3775 + "setuptools" 3776 + ], 3777 + "django-model-utils": [ 3778 + "setuptools", 3779 + "setuptools-scm" 3780 + ], 3781 + "django-modelcluster": [ 3782 + "setuptools" 3783 + ], 3784 + "django-mptt": [ 3785 + "setuptools" 3786 + ], 3787 + "django-multiselectfield": [ 3788 + "setuptools" 3789 + ], 3790 + "django-nose": [ 3791 + "setuptools" 3792 + ], 3793 + "django-oauth-toolkit": [ 3794 + "setuptools" 3795 + ], 3796 + "django-otp": [ 3797 + "setuptools" 3798 + ], 3799 + "django-paintstore": [ 3800 + "setuptools" 3801 + ], 3802 + "django-pglocks": [ 3803 + "setuptools" 3804 + ], 3805 + "django-picklefield": [ 3806 + "setuptools" 3807 + ], 3808 + "django-polymorphic": [ 3809 + "setuptools" 3810 + ], 3811 + "django-postgresql-netfields": [ 3812 + "setuptools" 3813 + ], 3814 + "django-prometheus": [ 3815 + "setuptools" 3816 + ], 3817 + "django-q": [ 3818 + "poetry-core", 3819 + "setuptools" 3820 + ], 3821 + "django-ranged-response": [ 3822 + "setuptools" 3823 + ], 3824 + "django-raster": [ 3825 + "setuptools" 3826 + ], 3827 + "django-redis": [ 3828 + "setuptools" 3829 + ], 3830 + "django-rest-auth": [ 3831 + "setuptools" 3832 + ], 3833 + "django-rest-polymorphic": [ 3834 + "setuptools" 3835 + ], 3836 + "django-reversion": [ 3837 + "setuptools" 3838 + ], 3839 + "django-rq": [ 3840 + "setuptools" 3841 + ], 3842 + "django-sesame": [ 3843 + "setuptools" 3844 + ], 3845 + "django-silk": [ 3846 + "setuptools", 3847 + "setuptools-scm" 3848 + ], 3849 + "django-simple-captcha": [ 3850 + "setuptools" 3851 + ], 3852 + "django-sites": [ 3853 + "setuptools" 3854 + ], 3855 + "django-sr": [ 3856 + "setuptools" 3857 + ], 3858 + "django-statici18n": [ 3859 + "setuptools" 3860 + ], 3861 + "django-storages": [ 3862 + "setuptools" 3863 + ], 3864 + "django-stubs": [ 3865 + "setuptools" 3866 + ], 3867 + "django-stubs-ext": [ 3868 + "setuptools" 3869 + ], 3870 + "django-tables2": [ 3871 + "setuptools" 3872 + ], 3873 + "django-tagging": [ 3874 + "setuptools" 3875 + ], 3876 + "django-taggit": [ 3877 + "setuptools" 3878 + ], 3879 + "django-tastypie": [ 3880 + "setuptools" 302 3881 ], 303 3882 "django-timezone-field": [ 304 - "poetry-core" 3883 + "poetry-core", 3884 + "setuptools" 3885 + ], 3886 + "django-treebeard": [ 3887 + "setuptools" 3888 + ], 3889 + "django-versatileimagefield": [ 3890 + "setuptools" 3891 + ], 3892 + "django-webpack-loader": [ 3893 + "setuptools" 3894 + ], 3895 + "django-widget-tweaks": [ 3896 + "setuptools", 3897 + "setuptools-scm" 3898 + ], 3899 + "djangoql": [ 3900 + "setuptools" 3901 + ], 3902 + "djangorestframework": [ 3903 + "setuptools" 3904 + ], 3905 + "djangorestframework-camel-case": [ 3906 + "setuptools" 3907 + ], 3908 + "djangorestframework-dataclasses": [ 3909 + "setuptools" 3910 + ], 3911 + "djangorestframework-guardian": [ 3912 + "setuptools" 3913 + ], 3914 + "djangorestframework-jwt": [ 3915 + "setuptools" 3916 + ], 3917 + "djangorestframework-recursive": [ 3918 + "setuptools" 3919 + ], 3920 + "djangorestframework-simplejwt": [ 3921 + "setuptools", 3922 + "setuptools-scm" 3923 + ], 3924 + "djmail": [ 3925 + "setuptools" 3926 + ], 3927 + "dkimpy": [ 3928 + "setuptools" 3929 + ], 3930 + "dlib": [ 3931 + "setuptools" 3932 + ], 3933 + "dlinfo": [ 3934 + "setuptools", 3935 + "setuptools-scm" 3936 + ], 3937 + "dlx": [ 3938 + "setuptools" 3939 + ], 3940 + "dm-env": [ 3941 + "setuptools" 3942 + ], 3943 + "dm-haiku": [ 3944 + "setuptools" 3945 + ], 3946 + "dm-sonnet": [ 3947 + "setuptools" 3948 + ], 3949 + "dm-tree": [ 3950 + "setuptools" 3951 + ], 3952 + "dmenu-python": [ 3953 + "setuptools" 3954 + ], 3955 + "dnachisel": [ 3956 + "setuptools" 3957 + ], 3958 + "dns": [ 3959 + "setuptools", 3960 + "setuptools-scm" 3961 + ], 3962 + "dnslib": [ 3963 + "setuptools" 305 3964 ], 306 3965 "dnspython": [ 307 - "poetry-core" 3966 + "poetry-core", 3967 + "setuptools", 3968 + "setuptools-scm" 3969 + ], 3970 + "dnspythonchia": [ 3971 + "setuptools", 3972 + "setuptools-scm" 308 3973 ], 309 3974 "doc8": [ 310 - "pbr" 3975 + "pbr", 3976 + "setuptools", 3977 + "setuptools-scm" 3978 + ], 3979 + "docformatter": [ 3980 + "setuptools" 3981 + ], 3982 + "docker": [ 3983 + "setuptools", 3984 + "setuptools-scm" 3985 + ], 3986 + "docker-py": [ 3987 + "setuptools" 3988 + ], 3989 + "docker-pycreds": [ 3990 + "setuptools" 3991 + ], 3992 + "dockerfile-parse": [ 3993 + "setuptools" 3994 + ], 3995 + "dockerpty": [ 3996 + "setuptools" 3997 + ], 3998 + "dockerspawner": [ 3999 + "setuptools" 4000 + ], 4001 + "docloud": [ 4002 + "setuptools" 4003 + ], 4004 + "docopt": [ 4005 + "setuptools" 4006 + ], 4007 + "docopt-ng": [ 4008 + "setuptools" 4009 + ], 4010 + "docplex": [ 4011 + "setuptools" 4012 + ], 4013 + "docrep": [ 4014 + "setuptools" 311 4015 ], 312 4016 "docstring-parser": [ 313 - "poetry-core" 4017 + "poetry-core", 4018 + "setuptools" 4019 + ], 4020 + "docstring-to-markdown": [ 4021 + "setuptools" 4022 + ], 4023 + "doctest-ignore-unicode": [ 4024 + "setuptools" 4025 + ], 4026 + "docutils": [ 4027 + "setuptools" 4028 + ], 4029 + "docx2python": [ 4030 + "setuptools" 4031 + ], 4032 + "docx2txt": [ 4033 + "setuptools" 4034 + ], 4035 + "dodgy": [ 4036 + "setuptools" 4037 + ], 4038 + "dogpile-cache": [ 4039 + "setuptools" 4040 + ], 4041 + "dogtail": [ 4042 + "setuptools" 4043 + ], 4044 + "doit": [ 4045 + "setuptools" 4046 + ], 4047 + "doit-py": [ 4048 + "setuptools" 4049 + ], 4050 + "domeneshop": [ 4051 + "setuptools" 4052 + ], 4053 + "dominate": [ 4054 + "setuptools" 4055 + ], 4056 + "doorbirdpy": [ 4057 + "setuptools" 4058 + ], 4059 + "dopy": [ 4060 + "setuptools" 4061 + ], 4062 + "dot2tex": [ 4063 + "setuptools" 4064 + ], 4065 + "dotmap": [ 4066 + "setuptools" 4067 + ], 4068 + "dotty-dict": [ 4069 + "poetry-core", 4070 + "setuptools", 4071 + "setuptools-scm" 4072 + ], 4073 + "downloader-cli": [ 4074 + "setuptools" 4075 + ], 4076 + "dparse": [ 4077 + "setuptools" 4078 + ], 4079 + "dparse2": [ 4080 + "setuptools" 4081 + ], 4082 + "dpath": [ 4083 + "setuptools" 4084 + ], 4085 + "dpcontracts": [ 4086 + "setuptools" 4087 + ], 4088 + "dpkt": [ 4089 + "setuptools" 4090 + ], 4091 + "dragonfly": [ 4092 + "setuptools" 4093 + ], 4094 + "dremel3dpy": [ 4095 + "setuptools" 4096 + ], 4097 + "drf-jwt": [ 4098 + "setuptools" 4099 + ], 4100 + "drf-nested-routers": [ 4101 + "setuptools" 4102 + ], 4103 + "drf-spectacular": [ 4104 + "setuptools" 4105 + ], 4106 + "drf-spectacular-sidecar": [ 4107 + "setuptools" 4108 + ], 4109 + "drf-yasg": [ 4110 + "setuptools", 4111 + "setuptools-scm" 4112 + ], 4113 + "drivelib": [ 4114 + "setuptools" 4115 + ], 4116 + "drms": [ 4117 + "setuptools", 4118 + "setuptools-scm" 4119 + ], 4120 + "dropbox": [ 4121 + "setuptools" 4122 + ], 4123 + "ds-store": [ 4124 + "setuptools" 4125 + ], 4126 + "ds4drv": [ 4127 + "setuptools" 4128 + ], 4129 + "dsinternals": [ 4130 + "setuptools" 4131 + ], 4132 + "dsmr-parser": [ 4133 + "setuptools" 314 4134 ], 315 4135 "dtlssocket": [ 316 - "cython" 4136 + "cython", 4137 + "setuptools" 4138 + ], 4139 + "ducc0": [ 4140 + "setuptools" 317 4141 ], 318 4142 "duckdb": [ 319 - "pybind11" 4143 + "pybind11", 4144 + "setuptools", 4145 + "setuptools-scm" 320 4146 ], 321 4147 "duckdb-engine": [ 322 - "poetry-core" 4148 + "poetry-core", 4149 + "setuptools" 4150 + ], 4151 + "duecredit": [ 4152 + "setuptools" 4153 + ], 4154 + "duet": [ 4155 + "setuptools" 4156 + ], 4157 + "dufte": [ 4158 + "setuptools" 4159 + ], 4160 + "dugong": [ 4161 + "setuptools" 4162 + ], 4163 + "dulwich": [ 4164 + "setuptools" 323 4165 ], 324 4166 "dunamai": [ 325 - "poetry-core" 4167 + "poetry-core", 4168 + "setuptools" 4169 + ], 4170 + "dungeon-eos": [ 4171 + "setuptools" 4172 + ], 4173 + "duo-client": [ 4174 + "setuptools" 4175 + ], 4176 + "durus": [ 4177 + "setuptools" 4178 + ], 4179 + "dvc-data": [ 4180 + "setuptools", 4181 + "setuptools-scm" 4182 + ], 4183 + "dvc-objects": [ 4184 + "setuptools", 4185 + "setuptools-scm" 4186 + ], 4187 + "dvc-render": [ 4188 + "setuptools", 4189 + "setuptools-scm" 4190 + ], 4191 + "dvc-task": [ 4192 + "setuptools", 4193 + "setuptools-scm" 4194 + ], 4195 + "dvclive": [ 4196 + "setuptools" 4197 + ], 4198 + "dwdwfsapi": [ 4199 + "setuptools" 4200 + ], 4201 + "dyn": [ 4202 + "setuptools" 4203 + ], 4204 + "dynalite-devices": [ 4205 + "setuptools" 326 4206 ], 327 4207 "dynd": [ 328 - "cython" 4208 + "cython", 4209 + "setuptools" 4210 + ], 4211 + "eagle100": [ 4212 + "setuptools" 4213 + ], 4214 + "easy-thumbnails": [ 4215 + "setuptools" 4216 + ], 4217 + "easydict": [ 4218 + "setuptools" 4219 + ], 4220 + "easygui": [ 4221 + "setuptools" 4222 + ], 4223 + "easyprocess": [ 4224 + "setuptools" 4225 + ], 4226 + "easywatch": [ 4227 + "setuptools" 4228 + ], 4229 + "ebaysdk": [ 4230 + "setuptools" 4231 + ], 4232 + "ec2instanceconnectcli": [ 4233 + "setuptools" 4234 + ], 4235 + "ecdsa": [ 4236 + "setuptools" 4237 + ], 4238 + "ecoaliface": [ 4239 + "setuptools" 4240 + ], 4241 + "ecos": [ 4242 + "setuptools" 4243 + ], 4244 + "ecpy": [ 4245 + "setuptools" 329 4246 ], 330 4247 "ecs-logging": [ 331 4248 "flit-core", 332 - "flitBuildHook" 4249 + "flitBuildHook", 4250 + "setuptools" 4251 + ], 4252 + "ed25519": [ 4253 + "setuptools" 4254 + ], 4255 + "edalize": [ 4256 + "setuptools" 4257 + ], 4258 + "editables": [ 4259 + "setuptools" 333 4260 ], 334 4261 "editdistance": [ 335 - "cython" 4262 + "cython", 4263 + "setuptools" 4264 + ], 4265 + "editdistance-s": [ 4266 + "setuptools" 4267 + ], 4268 + "editorconfig": [ 4269 + "setuptools" 4270 + ], 4271 + "edward": [ 4272 + "setuptools" 336 4273 ], 337 4274 "eebrightbox": [ 338 4275 "pbr" 339 4276 ], 4277 + "effect": [ 4278 + "setuptools" 4279 + ], 4280 + "eggdeps": [ 4281 + "setuptools" 4282 + ], 4283 + "egginstallhook": [ 4284 + "setuptools" 4285 + ], 4286 + "einops": [ 4287 + "setuptools" 4288 + ], 340 4289 "eiswarnung": [ 341 - "poetry-core" 4290 + "poetry-core", 4291 + "setuptools" 4292 + ], 4293 + "elastic-apm": [ 4294 + "setuptools" 4295 + ], 4296 + "elasticsearch": [ 4297 + "setuptools" 4298 + ], 4299 + "elasticsearch-dsl": [ 4300 + "setuptools" 4301 + ], 4302 + "elasticsearchdsl": [ 4303 + "setuptools" 342 4304 ], 343 4305 "elegy": [ 344 - "poetry" 4306 + "poetry", 4307 + "setuptools" 4308 + ], 4309 + "elementpath": [ 4310 + "setuptools" 4311 + ], 4312 + "elevate": [ 4313 + "setuptools", 4314 + "setuptools-scm" 345 4315 ], 346 4316 "elgato": [ 347 - "poetry-core" 4317 + "poetry-core", 4318 + "setuptools" 4319 + ], 4320 + "eliot": [ 4321 + "setuptools" 4322 + ], 4323 + "eliqonline": [ 4324 + "setuptools" 348 4325 ], 349 4326 "elkm1-lib": [ 350 - "poetry-core" 4327 + "poetry-core", 4328 + "setuptools" 351 4329 ], 352 4330 "elmax": [ 353 - "poetry-core" 4331 + "poetry-core", 4332 + "setuptools" 4333 + ], 4334 + "elmax-api": [ 4335 + "setuptools" 4336 + ], 4337 + "email-validator": [ 4338 + "setuptools" 4339 + ], 4340 + "emailthreads": [ 4341 + "setuptools" 4342 + ], 4343 + "embrace": [ 4344 + "setuptools" 4345 + ], 4346 + "emcee": [ 4347 + "setuptools", 4348 + "setuptools-scm" 4349 + ], 4350 + "emoji": [ 4351 + "setuptools" 4352 + ], 4353 + "empty-files": [ 4354 + "setuptools" 4355 + ], 4356 + "empy": [ 4357 + "setuptools" 4358 + ], 4359 + "emulated-roku": [ 4360 + "setuptools" 4361 + ], 4362 + "emv": [ 4363 + "setuptools" 4364 + ], 4365 + "enaml": [ 4366 + "setuptools", 4367 + "setuptools-scm" 4368 + ], 4369 + "enamlx": [ 4370 + "setuptools" 4371 + ], 4372 + "enhancements": [ 4373 + "setuptools" 4374 + ], 4375 + "enlighten": [ 4376 + "setuptools" 4377 + ], 4378 + "enocean": [ 4379 + "setuptools" 4380 + ], 4381 + "enrich": [ 4382 + "setuptools", 4383 + "setuptools-scm" 4384 + ], 4385 + "entrance": [ 4386 + "setuptools" 4387 + ], 4388 + "entrance-with-router-features": [ 4389 + "setuptools" 4390 + ], 4391 + "entry-points-txt": [ 4392 + "setuptools" 4393 + ], 4394 + "entrypoint2": [ 4395 + "setuptools" 354 4396 ], 355 4397 "entrypoints": [ 356 4398 "flit", 357 - "flit-core" 4399 + "flit-core", 4400 + "setuptools" 358 4401 ], 359 4402 "enturclient": [ 360 - "poetry-core" 4403 + "poetry-core", 4404 + "setuptools" 4405 + ], 4406 + "enum-compat": [ 4407 + "setuptools" 4408 + ], 4409 + "enum34": [ 4410 + "setuptools" 361 4411 ], 362 4412 "enumatch": [ 363 4413 "poetry" 364 4414 ], 4415 + "env-canada": [ 4416 + "setuptools" 4417 + ], 4418 + "environmental-override": [ 4419 + "setuptools" 4420 + ], 4421 + "environs": [ 4422 + "setuptools" 4423 + ], 4424 + "envisage": [ 4425 + "setuptools" 4426 + ], 4427 + "envoy-reader": [ 4428 + "setuptools" 4429 + ], 4430 + "envoy-utils": [ 4431 + "setuptools" 4432 + ], 365 4433 "envs": [ 366 - "poetry-core" 4434 + "poetry-core", 4435 + "setuptools" 4436 + ], 4437 + "enzyme": [ 4438 + "setuptools" 4439 + ], 4440 + "epc": [ 4441 + "setuptools" 4442 + ], 4443 + "ephem": [ 4444 + "setuptools" 4445 + ], 4446 + "ephemeral-port-reserve": [ 4447 + "setuptools" 4448 + ], 4449 + "epson-projector": [ 4450 + "setuptools" 4451 + ], 4452 + "eradicate": [ 4453 + "setuptools" 4454 + ], 4455 + "escapism": [ 4456 + "setuptools" 4457 + ], 4458 + "esprima": [ 4459 + "setuptools" 4460 + ], 4461 + "et-xmlfile": [ 4462 + "setuptools" 4463 + ], 4464 + "etcd": [ 4465 + "setuptools" 4466 + ], 4467 + "ete3": [ 4468 + "setuptools" 4469 + ], 4470 + "etebase": [ 4471 + "setuptools" 4472 + ], 4473 + "etebase-server": [ 4474 + "setuptools" 4475 + ], 4476 + "etelemetry": [ 4477 + "setuptools" 4478 + ], 4479 + "eternalegypt": [ 4480 + "setuptools" 4481 + ], 4482 + "etesync": [ 4483 + "setuptools" 4484 + ], 4485 + "eth-abi": [ 4486 + "setuptools" 4487 + ], 4488 + "eth-account": [ 4489 + "setuptools" 4490 + ], 4491 + "eth-hash": [ 4492 + "setuptools" 4493 + ], 4494 + "eth-keyfile": [ 4495 + "setuptools" 4496 + ], 4497 + "eth-keys": [ 4498 + "setuptools" 4499 + ], 4500 + "eth-rlp": [ 4501 + "setuptools" 4502 + ], 4503 + "eth-typing": [ 4504 + "setuptools" 4505 + ], 4506 + "eth-utils": [ 4507 + "setuptools" 4508 + ], 4509 + "etils": [ 4510 + "flit-core", 4511 + "setuptools" 4512 + ], 4513 + "etuples": [ 4514 + "setuptools" 4515 + ], 4516 + "ev3dev2": [ 4517 + "setuptools" 4518 + ], 4519 + "evdev": [ 4520 + "setuptools" 4521 + ], 4522 + "eve": [ 4523 + "setuptools" 4524 + ], 4525 + "eventlet": [ 4526 + "setuptools" 4527 + ], 4528 + "events": [ 4529 + "setuptools" 4530 + ], 4531 + "evohome-async": [ 4532 + "setuptools" 4533 + ], 4534 + "evtx": [ 4535 + "setuptools" 4536 + ], 4537 + "ewmh": [ 4538 + "setuptools" 367 4539 ], 368 4540 "exceptiongroup": [ 369 4541 "flit-core", 370 - "flitBuildHook" 4542 + "flitBuildHook", 4543 + "setuptools" 4544 + ], 4545 + "exchangelib": [ 4546 + "setuptools" 4547 + ], 4548 + "exdown": [ 4549 + "setuptools" 4550 + ], 4551 + "execnet": [ 4552 + "setuptools", 4553 + "setuptools-scm" 4554 + ], 4555 + "executing": [ 4556 + "setuptools", 4557 + "setuptools-scm" 4558 + ], 4559 + "executor": [ 4560 + "setuptools" 4561 + ], 4562 + "exif": [ 4563 + "setuptools" 4564 + ], 4565 + "exifread": [ 4566 + "setuptools" 4567 + ], 4568 + "expects": [ 4569 + "setuptools" 4570 + ], 4571 + "expecttest": [ 4572 + "poetry", 4573 + "setuptools" 4574 + ], 4575 + "expiringdict": [ 4576 + "setuptools" 4577 + ], 4578 + "explorerscript": [ 4579 + "setuptools" 4580 + ], 4581 + "exrex": [ 4582 + "setuptools" 4583 + ], 4584 + "extractcode": [ 4585 + "setuptools", 4586 + "setuptools-scm" 4587 + ], 4588 + "extractcode-7z": [ 4589 + "setuptools" 4590 + ], 4591 + "extractcode-libarchive": [ 4592 + "setuptools" 4593 + ], 4594 + "extras": [ 4595 + "setuptools" 4596 + ], 4597 + "eyed3": [ 4598 + "setuptools" 4599 + ], 4600 + "ezdxf": [ 4601 + "setuptools" 4602 + ], 4603 + "ezyrb": [ 4604 + "setuptools" 4605 + ], 4606 + "f90nml": [ 4607 + "setuptools", 4608 + "setuptools-scm" 4609 + ], 4610 + "faadelays": [ 4611 + "setuptools" 4612 + ], 4613 + "fabric": [ 4614 + "setuptools" 4615 + ], 4616 + "fabulous": [ 4617 + "setuptools" 4618 + ], 4619 + "face": [ 4620 + "setuptools" 4621 + ], 4622 + "face-recognition": [ 4623 + "setuptools" 4624 + ], 4625 + "face-recognition-models": [ 4626 + "setuptools" 4627 + ], 4628 + "facebook-sdk": [ 4629 + "setuptools" 4630 + ], 4631 + "facedancer": [ 4632 + "setuptools" 4633 + ], 4634 + "factory-boy": [ 4635 + "setuptools" 4636 + ], 4637 + "faiss": [ 4638 + "setuptools" 4639 + ], 4640 + "fake-useragent": [ 4641 + "setuptools" 4642 + ], 4643 + "faker": [ 4644 + "setuptools" 4645 + ], 4646 + "fakeredis": [ 4647 + "poetry-core", 4648 + "setuptools" 371 4649 ], 372 4650 "falcon": [ 373 - "cython" 4651 + "cython", 4652 + "setuptools" 4653 + ], 4654 + "faraday-agent-parameters-types": [ 4655 + "setuptools" 4656 + ], 4657 + "faraday-plugins": [ 4658 + "setuptools" 374 4659 ], 375 4660 "fastapi": [ 376 - "flitBuildHook" 4661 + "flitBuildHook", 4662 + "hatchling", 4663 + "setuptools" 4664 + ], 4665 + "fastapi-mail": [ 4666 + "poetry-core", 4667 + "setuptools" 377 4668 ], 378 4669 "fastapi-restful": [ 379 4670 "poetry" 380 4671 ], 381 4672 "fastavro": [ 382 - "cython" 4673 + "cython", 4674 + "setuptools" 383 4675 ], 384 4676 "fastbencode": [ 385 - "cython" 4677 + "cython", 4678 + "setuptools" 4679 + ], 4680 + "fastcache": [ 4681 + "setuptools" 4682 + ], 4683 + "fastcore": [ 4684 + "setuptools" 4685 + ], 4686 + "fastdiff": [ 4687 + "setuptools" 386 4688 ], 387 4689 "fastdtw": [ 388 - "cython" 4690 + "cython", 4691 + "setuptools" 4692 + ], 4693 + "fastecdsa": [ 4694 + "setuptools" 4695 + ], 4696 + "fasteners": [ 4697 + "setuptools" 4698 + ], 4699 + "fastentrypoints": [ 4700 + "setuptools" 4701 + ], 4702 + "fastimport": [ 4703 + "setuptools" 4704 + ], 4705 + "fastjsonschema": [ 4706 + "setuptools" 4707 + ], 4708 + "fastnumbers": [ 4709 + "setuptools" 4710 + ], 4711 + "fastpair": [ 4712 + "setuptools" 4713 + ], 4714 + "fastparquet": [ 4715 + "setuptools" 4716 + ], 4717 + "fastpbkdf2": [ 4718 + "setuptools" 4719 + ], 4720 + "fastprogress": [ 4721 + "setuptools" 4722 + ], 4723 + "fastrlock": [ 4724 + "setuptools" 4725 + ], 4726 + "fasttext": [ 4727 + "setuptools" 4728 + ], 4729 + "favicon": [ 4730 + "setuptools" 4731 + ], 4732 + "fb-re2": [ 4733 + "setuptools" 4734 + ], 4735 + "fe25519": [ 4736 + "setuptools" 4737 + ], 4738 + "feedgen": [ 4739 + "setuptools" 4740 + ], 4741 + "feedgenerator": [ 4742 + "setuptools" 4743 + ], 4744 + "feedparser": [ 4745 + "setuptools" 4746 + ], 4747 + "fenics": [ 4748 + "setuptools" 4749 + ], 4750 + "ffcv": [ 4751 + "setuptools" 4752 + ], 4753 + "ffmpeg-progress-yield": [ 4754 + "setuptools" 4755 + ], 4756 + "ffmpeg-python": [ 4757 + "setuptools" 389 4758 ], 390 4759 "fhconfparser": [ 391 4760 "poetry-core" 392 4761 ], 4762 + "fiblary3-fork": [ 4763 + "setuptools" 4764 + ], 4765 + "fido2": [ 4766 + "setuptools" 4767 + ], 4768 + "fields": [ 4769 + "setuptools" 4770 + ], 4771 + "file-read-backwards": [ 4772 + "setuptools" 4773 + ], 4774 + "filebrowser-safe": [ 4775 + "setuptools" 4776 + ], 4777 + "filebytes": [ 4778 + "setuptools" 4779 + ], 4780 + "filecheck": [ 4781 + "poetry", 4782 + "setuptools" 4783 + ], 4784 + "filelock": [ 4785 + "setuptools", 4786 + "setuptools-scm" 4787 + ], 4788 + "filemagic": [ 4789 + "setuptools" 4790 + ], 4791 + "filetype": [ 4792 + "setuptools" 4793 + ], 4794 + "filterpy": [ 4795 + "setuptools" 4796 + ], 393 4797 "finalfusion": [ 394 - "cython" 4798 + "cython", 4799 + "setuptools" 4800 + ], 4801 + "findimports": [ 4802 + "setuptools" 4803 + ], 4804 + "findpython": [ 4805 + "setuptools" 4806 + ], 4807 + "fingerprints": [ 4808 + "setuptools" 4809 + ], 4810 + "finitude": [ 4811 + "setuptools" 4812 + ], 4813 + "fints": [ 4814 + "setuptools" 4815 + ], 4816 + "fiona": [ 4817 + "setuptools" 4818 + ], 4819 + "fipy": [ 4820 + "setuptools" 4821 + ], 4822 + "fire": [ 4823 + "setuptools" 4824 + ], 4825 + "fireflyalgorithm": [ 4826 + "poetry-core", 4827 + "setuptools" 4828 + ], 4829 + "firetv": [ 4830 + "setuptools" 4831 + ], 4832 + "first": [ 4833 + "setuptools" 4834 + ], 4835 + "fitbit": [ 4836 + "setuptools" 4837 + ], 4838 + "fivem-api": [ 4839 + "setuptools", 4840 + "setuptools-scm" 4841 + ], 4842 + "fixerio": [ 4843 + "setuptools" 395 4844 ], 396 4845 "fixtures": [ 397 - "pbr" 4846 + "pbr", 4847 + "setuptools" 4848 + ], 4849 + "fjaraskupan": [ 4850 + "setuptools" 4851 + ], 4852 + "flake8": [ 4853 + "setuptools" 4854 + ], 4855 + "flake8-blind-except": [ 4856 + "setuptools" 4857 + ], 4858 + "flake8-bugbear": [ 4859 + "setuptools" 398 4860 ], 399 4861 "flake8-debugger": [ 400 - "poetry-core" 4862 + "poetry-core", 4863 + "setuptools" 4864 + ], 4865 + "flake8-docstrings": [ 4866 + "setuptools" 4867 + ], 4868 + "flake8-future-import": [ 4869 + "setuptools" 4870 + ], 4871 + "flake8-import-order": [ 4872 + "setuptools" 4873 + ], 4874 + "flake8-length": [ 4875 + "setuptools" 4876 + ], 4877 + "flake8-polyfill": [ 4878 + "setuptools" 401 4879 ], 402 4880 "flake8-print": [ 403 4881 "poetry-core" 404 4882 ], 4883 + "flaky": [ 4884 + "setuptools" 4885 + ], 4886 + "flametree": [ 4887 + "setuptools" 4888 + ], 4889 + "flammkuchen": [ 4890 + "setuptools" 4891 + ], 4892 + "flashtext": [ 4893 + "setuptools" 4894 + ], 4895 + "flask": [ 4896 + "setuptools" 4897 + ], 4898 + "flask-admin": [ 4899 + "setuptools" 4900 + ], 4901 + "flask-api": [ 4902 + "setuptools" 4903 + ], 4904 + "flask-appbuilder": [ 4905 + "setuptools" 4906 + ], 4907 + "flask-assets": [ 4908 + "setuptools" 4909 + ], 4910 + "flask-autoindex": [ 4911 + "setuptools" 4912 + ], 4913 + "flask-babel": [ 4914 + "setuptools" 4915 + ], 4916 + "flask-babelex": [ 4917 + "setuptools" 4918 + ], 4919 + "flask-basicauth": [ 4920 + "setuptools" 4921 + ], 4922 + "flask-bcrypt": [ 4923 + "setuptools" 4924 + ], 4925 + "flask-bootstrap": [ 4926 + "setuptools" 4927 + ], 4928 + "flask-caching": [ 4929 + "setuptools" 4930 + ], 4931 + "flask-common": [ 4932 + "setuptools" 4933 + ], 4934 + "flask-compress": [ 4935 + "setuptools", 4936 + "setuptools-scm" 4937 + ], 4938 + "flask-cors": [ 4939 + "setuptools" 4940 + ], 4941 + "flask-elastic": [ 4942 + "setuptools" 4943 + ], 4944 + "flask-gravatar": [ 4945 + "setuptools" 4946 + ], 4947 + "flask-httpauth": [ 4948 + "setuptools" 4949 + ], 4950 + "flask-jwt-extended": [ 4951 + "setuptools" 4952 + ], 4953 + "flask-limiter": [ 4954 + "setuptools" 4955 + ], 4956 + "flask-login": [ 4957 + "setuptools" 4958 + ], 4959 + "flask-mail": [ 4960 + "setuptools" 4961 + ], 4962 + "flask-mailman": [ 4963 + "poetry-core" 4964 + ], 4965 + "flask-marshmallow": [ 4966 + "setuptools" 4967 + ], 4968 + "flask-migrate": [ 4969 + "setuptools" 4970 + ], 4971 + "flask-mongoengine": [ 4972 + "setuptools" 4973 + ], 4974 + "flask-openid": [ 4975 + "setuptools" 4976 + ], 4977 + "flask-paginate": [ 4978 + "setuptools" 4979 + ], 4980 + "flask-paranoid": [ 4981 + "setuptools" 4982 + ], 4983 + "flask-principal": [ 4984 + "setuptools" 4985 + ], 4986 + "flask-pymongo": [ 4987 + "setuptools" 4988 + ], 4989 + "flask-restful": [ 4990 + "setuptools" 4991 + ], 4992 + "flask-restplus": [ 4993 + "setuptools" 4994 + ], 4995 + "flask-restx": [ 4996 + "setuptools" 4997 + ], 4998 + "flask-reverse-proxy-fix": [ 4999 + "setuptools" 5000 + ], 5001 + "flask-script": [ 5002 + "setuptools" 5003 + ], 5004 + "flask-seasurf": [ 5005 + "setuptools" 5006 + ], 5007 + "flask-security-too": [ 5008 + "setuptools" 5009 + ], 5010 + "flask-session": [ 5011 + "setuptools" 5012 + ], 5013 + "flask-silk": [ 5014 + "setuptools" 5015 + ], 5016 + "flask-socketio": [ 5017 + "setuptools" 5018 + ], 5019 + "flask-sockets": [ 5020 + "setuptools" 5021 + ], 5022 + "flask-sqlalchemy": [ 5023 + "setuptools" 5024 + ], 5025 + "flask-sslify": [ 5026 + "setuptools" 5027 + ], 5028 + "flask-swagger": [ 5029 + "setuptools" 5030 + ], 5031 + "flask-swagger-ui": [ 5032 + "setuptools" 5033 + ], 5034 + "flask-talisman": [ 5035 + "setuptools" 5036 + ], 5037 + "flask-testing": [ 5038 + "setuptools" 5039 + ], 5040 + "flask-versioned": [ 5041 + "setuptools" 5042 + ], 5043 + "flask-wtf": [ 5044 + "setuptools" 5045 + ], 5046 + "flaskbabel": [ 5047 + "setuptools" 5048 + ], 5049 + "flatbuffers": [ 5050 + "setuptools" 5051 + ], 5052 + "flatdict": [ 5053 + "setuptools" 5054 + ], 405 5055 "flatten-dict": [ 406 - "poetry-core" 5056 + "poetry-core", 5057 + "setuptools" 5058 + ], 5059 + "flax": [ 5060 + "setuptools" 5061 + ], 5062 + "fleep": [ 5063 + "setuptools" 5064 + ], 5065 + "flexmock": [ 5066 + "setuptools" 5067 + ], 5068 + "flickrapi": [ 5069 + "setuptools" 407 5070 ], 408 5071 "flipr-api": [ 409 - "poetry-core" 5072 + "poetry-core", 5073 + "setuptools" 410 5074 ], 411 5075 "flit": [ 412 - "flit-core" 5076 + "flit-core", 5077 + "setuptools" 5078 + ], 5079 + "flit-core": [ 5080 + "setuptools" 5081 + ], 5082 + "flower": [ 5083 + "setuptools" 5084 + ], 5085 + "flowlogs-reader": [ 5086 + "setuptools" 5087 + ], 5088 + "fluent-logger": [ 5089 + "setuptools" 5090 + ], 5091 + "flufl-bounce": [ 5092 + "setuptools" 5093 + ], 5094 + "flufl-i18n": [ 5095 + "setuptools" 5096 + ], 5097 + "flufl-lock": [ 5098 + "setuptools" 5099 + ], 5100 + "flux-led": [ 5101 + "setuptools" 5102 + ], 5103 + "flynt": [ 5104 + "setuptools" 5105 + ], 5106 + "fn": [ 5107 + "setuptools" 5108 + ], 5109 + "fnvhash": [ 5110 + "setuptools" 5111 + ], 5112 + "folium": [ 5113 + "setuptools", 5114 + "setuptools-scm" 5115 + ], 5116 + "fontmake": [ 5117 + "setuptools", 5118 + "setuptools-scm" 5119 + ], 5120 + "fontmath": [ 5121 + "setuptools", 5122 + "setuptools-scm" 5123 + ], 5124 + "fontparts": [ 5125 + "setuptools", 5126 + "setuptools-scm" 5127 + ], 5128 + "fontpens": [ 5129 + "setuptools" 5130 + ], 5131 + "fonttools": [ 5132 + "setuptools", 5133 + "setuptools-scm" 5134 + ], 5135 + "foobot-async": [ 5136 + "setuptools" 5137 + ], 5138 + "foolscap": [ 5139 + "setuptools" 5140 + ], 5141 + "forbiddenfruit": [ 5142 + "setuptools" 5143 + ], 5144 + "fordpass": [ 5145 + "setuptools" 5146 + ], 5147 + "forecast-solar": [ 5148 + "setuptools" 413 5149 ], 414 5150 "formbox": [ 415 - "flitBuildHook" 5151 + "flitBuildHook", 5152 + "setuptools" 5153 + ], 5154 + "formencode": [ 5155 + "setuptools", 5156 + "setuptools-scm" 5157 + ], 5158 + "fortiosapi": [ 5159 + "setuptools" 5160 + ], 5161 + "foundationdb51": [ 5162 + "setuptools" 5163 + ], 5164 + "foundationdb52": [ 5165 + "setuptools" 5166 + ], 5167 + "foundationdb60": [ 5168 + "setuptools" 5169 + ], 5170 + "foundationdb61": [ 5171 + "setuptools" 5172 + ], 5173 + "fountains": [ 5174 + "setuptools" 5175 + ], 5176 + "foxdot": [ 5177 + "setuptools" 5178 + ], 5179 + "fpdf": [ 5180 + "setuptools" 416 5181 ], 417 5182 "fpylll": [ 418 - "cython" 5183 + "cython", 5184 + "setuptools" 5185 + ], 5186 + "fpyutils": [ 5187 + "setuptools" 5188 + ], 5189 + "fqdn": [ 5190 + "setuptools" 419 5191 ], 420 5192 "freebox-api": [ 421 - "poetry-core" 5193 + "poetry-core", 5194 + "setuptools" 5195 + ], 5196 + "freetype-py": [ 5197 + "setuptools", 5198 + "setuptools-scm" 5199 + ], 5200 + "freezegun": [ 5201 + "setuptools" 5202 + ], 5203 + "frigidaire": [ 5204 + "setuptools" 5205 + ], 5206 + "frilouz": [ 5207 + "setuptools" 5208 + ], 5209 + "fritzconnection": [ 5210 + "setuptools" 5211 + ], 5212 + "fritzprofiles": [ 5213 + "setuptools" 5214 + ], 5215 + "frozendict": [ 5216 + "setuptools" 422 5217 ], 423 5218 "frozenlist": [ 424 - "cython" 5219 + "cython", 5220 + "setuptools" 5221 + ], 5222 + "fs": [ 5223 + "setuptools" 5224 + ], 5225 + "fs-s3fs": [ 5226 + "setuptools" 5227 + ], 5228 + "fsspec": [ 5229 + "setuptools" 5230 + ], 5231 + "ftfy": [ 5232 + "poetry", 5233 + "setuptools" 5234 + ], 5235 + "ftputil": [ 5236 + "setuptools" 5237 + ], 5238 + "func-timeout": [ 5239 + "setuptools" 425 5240 ], 426 5241 "funcparserlib": [ 427 - "poetry-core" 5242 + "poetry-core", 5243 + "setuptools" 5244 + ], 5245 + "funcsigs": [ 5246 + "setuptools" 5247 + ], 5248 + "functorch": [ 5249 + "setuptools" 5250 + ], 5251 + "funcy": [ 5252 + "setuptools" 5253 + ], 5254 + "furl": [ 5255 + "setuptools" 428 5256 ], 429 5257 "furo": [ 430 - "flitBuildHook" 5258 + "flitBuildHook", 5259 + "setuptools" 5260 + ], 5261 + "fuse": [ 5262 + "setuptools" 5263 + ], 5264 + "fusepy": [ 5265 + "setuptools" 5266 + ], 5267 + "future": [ 5268 + "setuptools" 5269 + ], 5270 + "future-fstrings": [ 5271 + "setuptools" 5272 + ], 5273 + "future-typing": [ 5274 + "setuptools" 5275 + ], 5276 + "futures": [ 5277 + "setuptools" 5278 + ], 5279 + "fuzzyfinder": [ 5280 + "setuptools" 5281 + ], 5282 + "fuzzywuzzy": [ 5283 + "setuptools" 5284 + ], 5285 + "fx2": [ 5286 + "setuptools" 431 5287 ], 432 5288 "galario": [ 433 5289 "cython" 434 5290 ], 5291 + "galois": [ 5292 + "setuptools", 5293 + "setuptools-scm" 5294 + ], 5295 + "gamble": [ 5296 + "setuptools" 5297 + ], 435 5298 "gaphas": [ 436 - "poetry-core" 5299 + "poetry-core", 5300 + "setuptools" 437 5301 ], 438 5302 "garages-amsterdam": [ 439 - "poetry-core" 5303 + "poetry-core", 5304 + "setuptools" 5305 + ], 5306 + "garminconnect": [ 5307 + "setuptools" 5308 + ], 5309 + "garminconnect-aio": [ 5310 + "setuptools" 5311 + ], 5312 + "garminconnect-ha": [ 5313 + "setuptools" 5314 + ], 5315 + "gast": [ 5316 + "setuptools" 5317 + ], 5318 + "gatt": [ 5319 + "setuptools" 5320 + ], 5321 + "gattlib": [ 5322 + "setuptools" 5323 + ], 5324 + "gb-io": [ 5325 + "setuptools" 440 5326 ], 441 5327 "gbinder-python": [ 442 - "cython" 5328 + "cython", 5329 + "setuptools" 5330 + ], 5331 + "gbulb": [ 5332 + "setuptools" 5333 + ], 5334 + "gcal-sync": [ 5335 + "setuptools" 5336 + ], 5337 + "gcovr": [ 5338 + "setuptools" 5339 + ], 5340 + "gcsfs": [ 5341 + "setuptools" 5342 + ], 5343 + "gdal": [ 5344 + "setuptools" 5345 + ], 5346 + "gdata": [ 5347 + "setuptools" 5348 + ], 5349 + "gdown": [ 5350 + "setuptools" 5351 + ], 5352 + "gdtoolkit": [ 5353 + "setuptools" 5354 + ], 5355 + "ge25519": [ 5356 + "setuptools" 5357 + ], 5358 + "gehomesdk": [ 5359 + "setuptools" 5360 + ], 5361 + "gekitchen": [ 5362 + "setuptools" 5363 + ], 5364 + "gemfileparser": [ 5365 + "setuptools" 5366 + ], 5367 + "genanki": [ 5368 + "setuptools" 443 5369 ], 444 5370 "generic": [ 445 - "poetry-core" 5371 + "poetry-core", 5372 + "setuptools" 5373 + ], 5374 + "geniushub-client": [ 5375 + "setuptools" 5376 + ], 5377 + "genome-collector": [ 5378 + "setuptools" 5379 + ], 5380 + "genpy": [ 5381 + "setuptools" 5382 + ], 5383 + "genshi": [ 5384 + "setuptools" 446 5385 ], 447 5386 "gensim": [ 448 - "cython" 5387 + "cython", 5388 + "setuptools" 5389 + ], 5390 + "gentools": [ 5391 + "setuptools" 5392 + ], 5393 + "genzshcomp": [ 5394 + "setuptools" 5395 + ], 5396 + "geoalchemy2": [ 5397 + "setuptools", 5398 + "setuptools-scm" 5399 + ], 5400 + "geocachingapi": [ 5401 + "setuptools", 5402 + "setuptools-scm" 5403 + ], 5404 + "geographiclib": [ 5405 + "setuptools" 5406 + ], 5407 + "geoip": [ 5408 + "setuptools" 5409 + ], 5410 + "geoip2": [ 5411 + "setuptools" 5412 + ], 5413 + "geojson": [ 5414 + "setuptools" 5415 + ], 5416 + "geojson-client": [ 5417 + "setuptools" 5418 + ], 5419 + "geomet": [ 5420 + "setuptools" 5421 + ], 5422 + "geometric": [ 5423 + "setuptools" 5424 + ], 5425 + "geopandas": [ 5426 + "setuptools" 5427 + ], 5428 + "geopy": [ 5429 + "setuptools" 5430 + ], 5431 + "georss-client": [ 5432 + "setuptools" 5433 + ], 5434 + "georss-generic-client": [ 5435 + "setuptools" 5436 + ], 5437 + "georss-ign-sismologia-client": [ 5438 + "setuptools" 5439 + ], 5440 + "georss-ingv-centro-nazionale-terremoti-client": [ 5441 + "setuptools" 5442 + ], 5443 + "georss-nrcan-earthquakes-client": [ 5444 + "setuptools" 5445 + ], 5446 + "georss-qld-bushfire-alert-client": [ 5447 + "setuptools" 5448 + ], 5449 + "georss-tfs-incidents-client": [ 5450 + "setuptools" 5451 + ], 5452 + "georss-wa-dfes-client": [ 5453 + "setuptools" 5454 + ], 5455 + "get-video-properties": [ 5456 + "setuptools" 5457 + ], 5458 + "getkey": [ 5459 + "setuptools" 5460 + ], 5461 + "getmac": [ 5462 + "setuptools" 5463 + ], 5464 + "gevent": [ 5465 + "setuptools" 5466 + ], 5467 + "gevent-socketio": [ 5468 + "setuptools" 5469 + ], 5470 + "gevent-websocket": [ 5471 + "setuptools" 5472 + ], 5473 + "geventhttpclient": [ 5474 + "setuptools" 5475 + ], 5476 + "gflags": [ 5477 + "setuptools" 5478 + ], 5479 + "ghapi": [ 5480 + "setuptools" 5481 + ], 5482 + "ghdiff": [ 5483 + "setuptools" 5484 + ], 5485 + "ghp-import": [ 5486 + "setuptools" 5487 + ], 5488 + "ghrepo-stats": [ 5489 + "setuptools" 5490 + ], 5491 + "gibberish-detector": [ 5492 + "setuptools" 449 5493 ], 450 5494 "gidgethub": [ 451 - "flitBuildHook" 5495 + "flitBuildHook", 5496 + "setuptools" 5497 + ], 5498 + "gigalixir": [ 5499 + "setuptools" 5500 + ], 5501 + "gin-config": [ 5502 + "setuptools" 5503 + ], 5504 + "gios": [ 5505 + "setuptools" 5506 + ], 5507 + "gipc": [ 5508 + "setuptools" 5509 + ], 5510 + "gistyc": [ 5511 + "setuptools" 5512 + ], 5513 + "git-annex-adapter": [ 5514 + "setuptools" 5515 + ], 5516 + "git-filter-repo": [ 5517 + "setuptools", 5518 + "setuptools-scm" 5519 + ], 5520 + "git-revise": [ 5521 + "setuptools" 5522 + ], 5523 + "git-sweep": [ 5524 + "setuptools" 5525 + ], 5526 + "gitdb": [ 5527 + "setuptools" 5528 + ], 5529 + "github-to-sqlite": [ 5530 + "setuptools" 5531 + ], 5532 + "github-webhook": [ 5533 + "setuptools" 5534 + ], 5535 + "github3-py": [ 5536 + "setuptools" 5537 + ], 5538 + "gitpython": [ 5539 + "setuptools" 5540 + ], 5541 + "glad": [ 5542 + "setuptools" 452 5543 ], 453 5544 "glances-api": [ 454 - "poetry-core" 5545 + "poetry-core", 5546 + "setuptools" 5547 + ], 5548 + "glasgow": [ 5549 + "setuptools", 5550 + "setuptools-scm" 5551 + ], 5552 + "glcontext": [ 5553 + "setuptools" 5554 + ], 5555 + "glean-parser": [ 5556 + "setuptools", 5557 + "setuptools-scm" 5558 + ], 5559 + "glean-sdk": [ 5560 + "setuptools" 5561 + ], 5562 + "glfw": [ 5563 + "setuptools" 5564 + ], 5565 + "glob2": [ 5566 + "setuptools" 5567 + ], 5568 + "globus-sdk": [ 5569 + "setuptools" 5570 + ], 5571 + "glom": [ 5572 + "setuptools" 5573 + ], 5574 + "glymur": [ 5575 + "setuptools" 5576 + ], 5577 + "glyphslib": [ 5578 + "setuptools", 5579 + "setuptools-scm" 5580 + ], 5581 + "gmpy": [ 5582 + "setuptools" 5583 + ], 5584 + "gmpy2": [ 5585 + "setuptools" 5586 + ], 5587 + "gntp": [ 5588 + "setuptools" 5589 + ], 5590 + "gnureadline": [ 5591 + "setuptools" 5592 + ], 5593 + "goalzero": [ 5594 + "setuptools" 5595 + ], 5596 + "goobook": [ 5597 + "poetry-core", 5598 + "setuptools" 5599 + ], 5600 + "goocalendar": [ 5601 + "setuptools" 5602 + ], 5603 + "goodwe": [ 5604 + "setuptools" 5605 + ], 5606 + "google-api-core": [ 5607 + "setuptools" 5608 + ], 5609 + "google-api-python-client": [ 5610 + "setuptools" 5611 + ], 5612 + "google-auth": [ 5613 + "setuptools" 5614 + ], 5615 + "google-auth-httplib2": [ 5616 + "setuptools" 5617 + ], 5618 + "google-auth-oauthlib": [ 5619 + "setuptools" 5620 + ], 5621 + "google-cloud-access-context-manager": [ 5622 + "setuptools" 5623 + ], 5624 + "google-cloud-appengine-logging": [ 5625 + "setuptools" 5626 + ], 5627 + "google-cloud-asset": [ 5628 + "setuptools" 5629 + ], 5630 + "google-cloud-audit-log": [ 5631 + "setuptools" 5632 + ], 5633 + "google-cloud-automl": [ 5634 + "setuptools" 5635 + ], 5636 + "google-cloud-bigquery": [ 5637 + "setuptools" 5638 + ], 5639 + "google-cloud-bigquery-datatransfer": [ 5640 + "setuptools" 5641 + ], 5642 + "google-cloud-bigquery-logging": [ 5643 + "setuptools" 5644 + ], 5645 + "google-cloud-bigquery-storage": [ 5646 + "setuptools" 5647 + ], 5648 + "google-cloud-bigtable": [ 5649 + "setuptools" 5650 + ], 5651 + "google-cloud-compute": [ 5652 + "setuptools" 5653 + ], 5654 + "google-cloud-container": [ 5655 + "setuptools" 5656 + ], 5657 + "google-cloud-core": [ 5658 + "setuptools" 5659 + ], 5660 + "google-cloud-datacatalog": [ 5661 + "setuptools" 5662 + ], 5663 + "google-cloud-dataproc": [ 5664 + "setuptools" 5665 + ], 5666 + "google-cloud-datastore": [ 5667 + "setuptools" 5668 + ], 5669 + "google-cloud-dlp": [ 5670 + "setuptools" 5671 + ], 5672 + "google-cloud-dns": [ 5673 + "setuptools" 5674 + ], 5675 + "google-cloud-error-reporting": [ 5676 + "setuptools" 5677 + ], 5678 + "google-cloud-firestore": [ 5679 + "setuptools" 5680 + ], 5681 + "google-cloud-iam": [ 5682 + "setuptools" 5683 + ], 5684 + "google-cloud-iam-logging": [ 5685 + "setuptools" 5686 + ], 5687 + "google-cloud-iot": [ 5688 + "setuptools" 5689 + ], 5690 + "google-cloud-kms": [ 5691 + "setuptools" 5692 + ], 5693 + "google-cloud-language": [ 5694 + "setuptools" 5695 + ], 5696 + "google-cloud-logging": [ 5697 + "setuptools" 5698 + ], 5699 + "google-cloud-monitoring": [ 5700 + "setuptools" 5701 + ], 5702 + "google-cloud-org-policy": [ 5703 + "setuptools" 5704 + ], 5705 + "google-cloud-os-config": [ 5706 + "setuptools" 5707 + ], 5708 + "google-cloud-pubsub": [ 5709 + "setuptools" 5710 + ], 5711 + "google-cloud-redis": [ 5712 + "setuptools" 5713 + ], 5714 + "google-cloud-resource-manager": [ 5715 + "setuptools" 5716 + ], 5717 + "google-cloud-runtimeconfig": [ 5718 + "setuptools" 5719 + ], 5720 + "google-cloud-secret-manager": [ 5721 + "setuptools" 5722 + ], 5723 + "google-cloud-securitycenter": [ 5724 + "setuptools" 5725 + ], 5726 + "google-cloud-spanner": [ 5727 + "setuptools" 5728 + ], 5729 + "google-cloud-speech": [ 5730 + "setuptools" 5731 + ], 5732 + "google-cloud-storage": [ 5733 + "setuptools" 5734 + ], 5735 + "google-cloud-tasks": [ 5736 + "setuptools" 5737 + ], 5738 + "google-cloud-testutils": [ 5739 + "setuptools" 5740 + ], 5741 + "google-cloud-texttospeech": [ 5742 + "setuptools" 5743 + ], 5744 + "google-cloud-trace": [ 5745 + "setuptools" 5746 + ], 5747 + "google-cloud-translate": [ 5748 + "setuptools" 5749 + ], 5750 + "google-cloud-videointelligence": [ 5751 + "setuptools" 5752 + ], 5753 + "google-cloud-vision": [ 5754 + "setuptools" 5755 + ], 5756 + "google-cloud-websecurityscanner": [ 5757 + "setuptools" 5758 + ], 5759 + "google-crc32c": [ 5760 + "setuptools" 5761 + ], 5762 + "google-i18n-address": [ 5763 + "setuptools" 5764 + ], 5765 + "google-nest-sdm": [ 5766 + "setuptools" 5767 + ], 5768 + "google-pasta": [ 5769 + "setuptools" 5770 + ], 5771 + "google-re2": [ 5772 + "setuptools" 5773 + ], 5774 + "google-resumable-media": [ 5775 + "setuptools" 5776 + ], 5777 + "googleapis-common-protos": [ 5778 + "setuptools" 5779 + ], 5780 + "googlemaps": [ 5781 + "setuptools" 5782 + ], 5783 + "googletrans": [ 5784 + "setuptools" 5785 + ], 5786 + "gorilla": [ 5787 + "setuptools" 5788 + ], 5789 + "govee-ble": [ 5790 + "poetry-core", 5791 + "setuptools" 5792 + ], 5793 + "goveelights": [ 5794 + "setuptools" 5795 + ], 5796 + "gpapi": [ 5797 + "setuptools" 5798 + ], 5799 + "gpaw": [ 5800 + "setuptools" 5801 + ], 5802 + "gphoto2": [ 5803 + "setuptools" 5804 + ], 5805 + "gpiozero": [ 5806 + "setuptools" 5807 + ], 5808 + "gplaycli": [ 5809 + "setuptools" 5810 + ], 5811 + "gprof2dot": [ 5812 + "setuptools" 5813 + ], 5814 + "gps3": [ 5815 + "setuptools" 5816 + ], 5817 + "gpsoauth": [ 5818 + "setuptools" 5819 + ], 5820 + "gpt-2-simple": [ 5821 + "setuptools" 5822 + ], 5823 + "gpxpy": [ 5824 + "setuptools" 455 5825 ], 456 5826 "gpy": [ 457 - "cython" 5827 + "cython", 5828 + "setuptools" 458 5829 ], 459 5830 "gpyopt": [ 460 - "cython" 5831 + "cython", 5832 + "setuptools" 5833 + ], 5834 + "gql": [ 5835 + "setuptools" 5836 + ], 5837 + "gradient": [ 5838 + "setuptools" 5839 + ], 5840 + "gradient-statsd": [ 5841 + "setuptools" 461 5842 ], 462 5843 "gradient-utils": [ 463 - "poetry-core" 5844 + "poetry-core", 5845 + "setuptools" 5846 + ], 5847 + "grammalecte": [ 5848 + "setuptools" 5849 + ], 5850 + "grandalf": [ 5851 + "setuptools" 5852 + ], 5853 + "graph-tool": [ 5854 + "setuptools" 5855 + ], 5856 + "grapheme": [ 5857 + "setuptools" 5858 + ], 5859 + "graphene": [ 5860 + "setuptools" 5861 + ], 5862 + "graphene-django": [ 5863 + "setuptools" 5864 + ], 5865 + "graphite-web": [ 5866 + "setuptools" 464 5867 ], 465 5868 "graphql-core": [ 466 - "poetry-core" 5869 + "poetry-core", 5870 + "setuptools" 467 5871 ], 468 5872 "graphql-relay": [ 469 - "poetry-core" 5873 + "poetry-core", 5874 + "setuptools" 5875 + ], 5876 + "graphql-server-core": [ 5877 + "setuptools" 5878 + ], 5879 + "graphql-subscription-manager": [ 5880 + "setuptools" 5881 + ], 5882 + "graphqlclient": [ 5883 + "setuptools" 5884 + ], 5885 + "graphtage": [ 5886 + "setuptools" 5887 + ], 5888 + "graphviz": [ 5889 + "setuptools" 5890 + ], 5891 + "grappelli-safe": [ 5892 + "setuptools" 5893 + ], 5894 + "greatfet": [ 5895 + "setuptools" 5896 + ], 5897 + "greeclimate": [ 5898 + "setuptools" 5899 + ], 5900 + "green": [ 5901 + "setuptools" 5902 + ], 5903 + "greeneye-monitor": [ 5904 + "setuptools" 5905 + ], 5906 + "greenlet": [ 5907 + "setuptools" 5908 + ], 5909 + "gremlinpython": [ 5910 + "setuptools" 5911 + ], 5912 + "grequests": [ 5913 + "setuptools" 470 5914 ], 471 5915 "gridnet": [ 472 - "poetry-core" 5916 + "poetry-core", 5917 + "setuptools" 5918 + ], 5919 + "griffe": [ 5920 + "pdm-pep517", 5921 + "setuptools" 5922 + ], 5923 + "grip": [ 5924 + "setuptools" 5925 + ], 5926 + "groestlcoin-hash": [ 5927 + "setuptools" 5928 + ], 5929 + "growattserver": [ 5930 + "setuptools" 5931 + ], 5932 + "grpc-google-iam-v1": [ 5933 + "setuptools" 473 5934 ], 474 5935 "grpcio": [ 475 - "cython" 5936 + "cython", 5937 + "setuptools" 5938 + ], 5939 + "grpcio-gcp": [ 5940 + "setuptools" 5941 + ], 5942 + "grpcio-status": [ 5943 + "setuptools" 5944 + ], 5945 + "grpcio-tools": [ 5946 + "setuptools" 5947 + ], 5948 + "grpclib": [ 5949 + "setuptools" 5950 + ], 5951 + "gruut": [ 5952 + "setuptools" 5953 + ], 5954 + "gruut-ipa": [ 5955 + "setuptools" 476 5956 ], 477 5957 "gsd": [ 478 - "cython" 5958 + "cython", 5959 + "setuptools" 5960 + ], 5961 + "gspread": [ 5962 + "setuptools" 479 5963 ], 480 5964 "gssapi": [ 481 - "cython" 5965 + "cython", 5966 + "setuptools" 5967 + ], 5968 + "gst-python": [ 5969 + "setuptools" 5970 + ], 5971 + "gtfs-realtime-bindings": [ 5972 + "setuptools" 5973 + ], 5974 + "gtimelog": [ 5975 + "setuptools" 5976 + ], 5977 + "gtts": [ 5978 + "setuptools" 5979 + ], 5980 + "gtts-token": [ 5981 + "setuptools" 482 5982 ], 483 5983 "gudhi": [ 484 - "cython" 5984 + "cython", 5985 + "setuptools" 5986 + ], 5987 + "guessit": [ 5988 + "setuptools" 5989 + ], 5990 + "guestfs": [ 5991 + "setuptools" 5992 + ], 5993 + "gumath": [ 5994 + "setuptools" 5995 + ], 5996 + "gunicorn": [ 5997 + "setuptools" 5998 + ], 5999 + "guppy3": [ 6000 + "setuptools" 6001 + ], 6002 + "gurobipy": [ 6003 + "setuptools" 6004 + ], 6005 + "guzzle-sphinx-theme": [ 6006 + "setuptools" 6007 + ], 6008 + "gviz-api": [ 6009 + "setuptools" 485 6010 ], 486 6011 "gvm-tools": [ 487 - "poetry-core" 6012 + "poetry-core", 6013 + "setuptools" 6014 + ], 6015 + "gym": [ 6016 + "setuptools" 6017 + ], 6018 + "gyp": [ 6019 + "setuptools" 6020 + ], 6021 + "h11": [ 6022 + "setuptools" 6023 + ], 6024 + "h2": [ 6025 + "setuptools" 488 6026 ], 489 6027 "h3": [ 490 - "cython" 6028 + "cython", 6029 + "setuptools" 6030 + ], 6031 + "h5netcdf": [ 6032 + "setuptools", 6033 + "setuptools-scm" 491 6034 ], 492 6035 "h5py": [ 493 - "cython" 6036 + "cython", 6037 + "setuptools" 494 6038 ], 495 6039 "h5py-mpi": [ 496 - "cython" 6040 + "cython", 6041 + "setuptools" 6042 + ], 6043 + "ha-ffmpeg": [ 6044 + "setuptools" 6045 + ], 6046 + "ha-philipsjs": [ 6047 + "setuptools" 6048 + ], 6049 + "habanero": [ 6050 + "setuptools" 6051 + ], 6052 + "habitipy": [ 6053 + "setuptools" 6054 + ], 6055 + "hachoir": [ 6056 + "setuptools" 497 6057 ], 498 6058 "hacking": [ 499 - "pbr" 6059 + "pbr", 6060 + "setuptools" 6061 + ], 6062 + "hahomematic": [ 6063 + "setuptools" 6064 + ], 6065 + "halo": [ 6066 + "setuptools" 6067 + ], 6068 + "halohome": [ 6069 + "setuptools" 6070 + ], 6071 + "handout": [ 6072 + "setuptools" 6073 + ], 6074 + "hangups": [ 6075 + "setuptools" 6076 + ], 6077 + "hap-python": [ 6078 + "setuptools" 500 6079 ], 501 6080 "hashids": [ 502 6081 "flit-core" 6082 + ], 6083 + "hass-nabucasa": [ 6084 + "setuptools" 6085 + ], 6086 + "hatasmota": [ 6087 + "setuptools" 6088 + ], 6089 + "hatch-fancy-pypi-readme": [ 6090 + "hatchling", 6091 + "setuptools" 6092 + ], 6093 + "hatch-nodejs-version": [ 6094 + "hatchling" 503 6095 ], 504 6096 "hatch-vcs": [ 505 - "hatchling" 6097 + "hatchling", 6098 + "setuptools", 6099 + "setuptools-scm" 6100 + ], 6101 + "hatchling": [ 6102 + "setuptools" 6103 + ], 6104 + "haversine": [ 6105 + "setuptools" 6106 + ], 6107 + "hawkauthlib": [ 6108 + "setuptools" 6109 + ], 6110 + "hcloud": [ 6111 + "setuptools" 6112 + ], 6113 + "hcs-utils": [ 6114 + "setuptools" 506 6115 ], 507 6116 "hdate": [ 508 - "poetry-core" 6117 + "poetry-core", 6118 + "setuptools" 509 6119 ], 510 6120 "hdbscan": [ 511 - "cython" 6121 + "cython", 6122 + "setuptools" 6123 + ], 6124 + "hdfs": [ 6125 + "setuptools" 512 6126 ], 513 6127 "hdmedians": [ 514 - "cython" 6128 + "cython", 6129 + "setuptools" 6130 + ], 6131 + "headerparser": [ 6132 + "setuptools" 6133 + ], 6134 + "heapdict": [ 6135 + "setuptools" 6136 + ], 6137 + "heatzypy": [ 6138 + "setuptools" 6139 + ], 6140 + "helpdev": [ 6141 + "setuptools" 6142 + ], 6143 + "helper": [ 6144 + "setuptools" 6145 + ], 6146 + "hepunits": [ 6147 + "setuptools", 6148 + "setuptools-scm" 6149 + ], 6150 + "herepy": [ 6151 + "setuptools" 6152 + ], 6153 + "hetzner": [ 6154 + "setuptools" 6155 + ], 6156 + "hexbytes": [ 6157 + "setuptools" 6158 + ], 6159 + "hexdump": [ 6160 + "setuptools" 6161 + ], 6162 + "hg-evolve": [ 6163 + "setuptools" 6164 + ], 6165 + "hg-git": [ 6166 + "setuptools" 6167 + ], 6168 + "hglib": [ 6169 + "setuptools" 6170 + ], 6171 + "hickle": [ 6172 + "setuptools" 6173 + ], 6174 + "hid": [ 6175 + "setuptools" 515 6176 ], 516 6177 "hidapi": [ 517 - "cython" 6178 + "cython", 6179 + "setuptools" 6180 + ], 6181 + "hieroglyph": [ 6182 + "setuptools" 6183 + ], 6184 + "hijri-converter": [ 6185 + "setuptools" 6186 + ], 6187 + "hikvision": [ 6188 + "setuptools" 6189 + ], 6190 + "hiredis": [ 6191 + "setuptools" 6192 + ], 6193 + "hiro": [ 6194 + "setuptools" 6195 + ], 6196 + "hiyapyco": [ 6197 + "setuptools" 6198 + ], 6199 + "hjson": [ 6200 + "setuptools" 6201 + ], 6202 + "hkavr": [ 6203 + "setuptools" 6204 + ], 6205 + "hkdf": [ 6206 + "setuptools" 6207 + ], 6208 + "hlk-sw16": [ 6209 + "setuptools" 518 6210 ], 519 6211 "hmmlearn": [ 520 - "cython" 6212 + "cython", 6213 + "setuptools", 6214 + "setuptools-scm" 6215 + ], 6216 + "hocr-tools": [ 6217 + "setuptools" 6218 + ], 6219 + "hole": [ 6220 + "setuptools" 6221 + ], 6222 + "holidays": [ 6223 + "setuptools" 6224 + ], 6225 + "holoviews": [ 6226 + "setuptools" 6227 + ], 6228 + "home-assistant-bluetooth": [ 6229 + "poetry-core", 6230 + "setuptools" 521 6231 ], 522 6232 "homeassistant-pyozw": [ 523 - "cython" 6233 + "cython", 6234 + "setuptools" 6235 + ], 6236 + "homeconnect": [ 6237 + "setuptools" 6238 + ], 6239 + "homematicip": [ 6240 + "setuptools" 6241 + ], 6242 + "homepluscontrol": [ 6243 + "setuptools" 6244 + ], 6245 + "hopcroftkarp": [ 6246 + "setuptools" 6247 + ], 6248 + "howdoi": [ 6249 + "setuptools" 6250 + ], 6251 + "hpack": [ 6252 + "setuptools" 6253 + ], 6254 + "hpccm": [ 6255 + "setuptools" 6256 + ], 6257 + "hs-dbus-signature": [ 6258 + "setuptools" 6259 + ], 6260 + "hsaudiotag3k": [ 6261 + "setuptools" 6262 + ], 6263 + "hsluv": [ 6264 + "setuptools" 6265 + ], 6266 + "hstspreload": [ 6267 + "setuptools" 6268 + ], 6269 + "html-sanitizer": [ 6270 + "setuptools" 6271 + ], 6272 + "html2text": [ 6273 + "setuptools" 6274 + ], 6275 + "html5-parser": [ 6276 + "setuptools" 524 6277 ], 525 6278 "html5lib": [ 526 - "flit-core" 6279 + "flit-core", 6280 + "setuptools" 6281 + ], 6282 + "htmllaundry": [ 6283 + "setuptools" 6284 + ], 6285 + "htmlmin": [ 6286 + "setuptools" 6287 + ], 6288 + "htseq": [ 6289 + "cython", 6290 + "setuptools" 6291 + ], 6292 + "httmock": [ 6293 + "setuptools" 6294 + ], 6295 + "http-ece": [ 6296 + "setuptools" 6297 + ], 6298 + "http-message-signatures": [ 6299 + "setuptools", 6300 + "setuptools-scm" 6301 + ], 6302 + "http-parser": [ 6303 + "setuptools" 6304 + ], 6305 + "http-sfv": [ 6306 + "setuptools" 6307 + ], 6308 + "httpagentparser": [ 6309 + "setuptools" 6310 + ], 6311 + "httpauth": [ 6312 + "setuptools" 6313 + ], 6314 + "httpbin": [ 6315 + "setuptools" 6316 + ], 6317 + "httpcore": [ 6318 + "setuptools" 6319 + ], 6320 + "httpie": [ 6321 + "setuptools" 6322 + ], 6323 + "httpie-ntlm": [ 6324 + "setuptools" 6325 + ], 6326 + "httplib2": [ 6327 + "setuptools" 6328 + ], 6329 + "httpretty": [ 6330 + "setuptools" 6331 + ], 6332 + "httpserver": [ 6333 + "setuptools" 6334 + ], 6335 + "httpsig": [ 6336 + "setuptools", 6337 + "setuptools-scm" 6338 + ], 6339 + "httptools": [ 6340 + "setuptools" 6341 + ], 6342 + "httpx": [ 6343 + "setuptools" 6344 + ], 6345 + "httpx-auth": [ 6346 + "setuptools" 6347 + ], 6348 + "httpx-ntlm": [ 6349 + "setuptools" 6350 + ], 6351 + "httpx-socks": [ 6352 + "setuptools" 6353 + ], 6354 + "huawei-lte-api": [ 6355 + "setuptools" 6356 + ], 6357 + "huey": [ 6358 + "setuptools" 6359 + ], 6360 + "huggingface-hub": [ 6361 + "setuptools" 6362 + ], 6363 + "huisbaasje-client": [ 6364 + "setuptools" 6365 + ], 6366 + "humanfriendly": [ 6367 + "setuptools" 6368 + ], 6369 + "humanize": [ 6370 + "setuptools", 6371 + "setuptools-scm" 6372 + ], 6373 + "humblewx": [ 6374 + "setuptools" 6375 + ], 6376 + "hupper": [ 6377 + "setuptools" 6378 + ], 6379 + "huum": [ 6380 + "poetry-core", 6381 + "setuptools" 6382 + ], 6383 + "hvac": [ 6384 + "setuptools" 6385 + ], 6386 + "hvplot": [ 6387 + "setuptools" 6388 + ], 6389 + "hwi": [ 6390 + "setuptools" 6391 + ], 6392 + "hy": [ 6393 + "setuptools" 6394 + ], 6395 + "hydra": [ 6396 + "setuptools" 6397 + ], 6398 + "hydra-check": [ 6399 + "poetry-core", 6400 + "setuptools" 6401 + ], 6402 + "hydrawiser": [ 6403 + "setuptools" 6404 + ], 6405 + "hypchat": [ 6406 + "setuptools" 527 6407 ], 528 6408 "hypercorn": [ 529 - "poetry-core" 6409 + "poetry-core", 6410 + "setuptools" 6411 + ], 6412 + "hyperframe": [ 6413 + "setuptools" 530 6414 ], 531 6415 "hyperion-py": [ 532 - "poetry-core" 6416 + "poetry-core", 6417 + "setuptools" 6418 + ], 6419 + "hyperlink": [ 6420 + "setuptools" 6421 + ], 6422 + "hyperopt": [ 6423 + "setuptools" 6424 + ], 6425 + "hypothesis": [ 6426 + "setuptools" 533 6427 ], 534 6428 "hypothesis-auto": [ 535 - "poetry" 6429 + "poetry", 6430 + "setuptools" 536 6431 ], 537 6432 "hypothesis-graphql": [ 538 6433 "poetry" 539 6434 ], 540 - "ibis-framework": [ 6435 + "hypothesmith": [ 6436 + "setuptools" 6437 + ], 6438 + "hyppo": [ 6439 + "setuptools" 6440 + ], 6441 + "hyrule": [ 6442 + "setuptools" 6443 + ], 6444 + "i-pi": [ 6445 + "setuptools" 6446 + ], 6447 + "i2c-tools": [ 6448 + "setuptools" 6449 + ], 6450 + "i2csense": [ 6451 + "setuptools" 6452 + ], 6453 + "i3-py": [ 6454 + "setuptools" 6455 + ], 6456 + "i3ipc": [ 6457 + "setuptools" 6458 + ], 6459 + "iapws": [ 6460 + "setuptools" 6461 + ], 6462 + "iaqualink": [ 6463 + "setuptools" 6464 + ], 6465 + "ibeacon-ble": [ 541 6466 "poetry-core" 542 6467 ], 6468 + "ibis": [ 6469 + "setuptools" 6470 + ], 6471 + "ibis-framework": [ 6472 + "poetry-core", 6473 + "setuptools" 6474 + ], 6475 + "ibm-cloud-sdk-core": [ 6476 + "setuptools" 6477 + ], 6478 + "ibm-watson": [ 6479 + "setuptools" 6480 + ], 6481 + "icalendar": [ 6482 + "setuptools" 6483 + ], 6484 + "icecream": [ 6485 + "setuptools" 6486 + ], 543 6487 "icmplib": [ 544 - "pbr" 6488 + "pbr", 6489 + "setuptools" 6490 + ], 6491 + "icnsutil": [ 6492 + "setuptools" 6493 + ], 6494 + "icontract": [ 6495 + "setuptools" 6496 + ], 6497 + "ics": [ 6498 + "setuptools" 545 6499 ], 546 6500 "idasen": [ 547 - "poetry-core" 6501 + "poetry-core", 6502 + "setuptools" 6503 + ], 6504 + "identify": [ 6505 + "setuptools" 6506 + ], 6507 + "idna": [ 6508 + "flit-core", 6509 + "setuptools" 6510 + ], 6511 + "idna-ssl": [ 6512 + "setuptools" 6513 + ], 6514 + "ifaddr": [ 6515 + "setuptools" 6516 + ], 6517 + "ifconfig-parser": [ 6518 + "setuptools" 6519 + ], 6520 + "ifcopenshell": [ 6521 + "setuptools" 6522 + ], 6523 + "ignite": [ 6524 + "setuptools" 6525 + ], 6526 + "igraph": [ 6527 + "setuptools" 6528 + ], 6529 + "ihatemoney": [ 6530 + "setuptools" 6531 + ], 6532 + "ijson": [ 6533 + "setuptools" 6534 + ], 6535 + "ilua": [ 6536 + "setuptools" 6537 + ], 6538 + "image-go-nord": [ 6539 + "setuptools" 6540 + ], 6541 + "image-match": [ 6542 + "setuptools" 548 6543 ], 549 6544 "imagecodecs-lite": [ 550 - "cython" 6545 + "cython", 6546 + "setuptools" 6547 + ], 6548 + "imagecorruptions": [ 6549 + "setuptools" 6550 + ], 6551 + "imageio": [ 6552 + "setuptools" 6553 + ], 6554 + "imageio-ffmpeg": [ 6555 + "setuptools" 6556 + ], 6557 + "imagesize": [ 6558 + "setuptools" 6559 + ], 6560 + "imantics": [ 6561 + "setuptools" 6562 + ], 6563 + "imap-tools": [ 6564 + "setuptools" 6565 + ], 6566 + "imapclient": [ 6567 + "setuptools" 6568 + ], 6569 + "imaplib2": [ 6570 + "setuptools" 6571 + ], 6572 + "imbalanced-learn": [ 6573 + "setuptools" 6574 + ], 6575 + "img2pdf": [ 6576 + "setuptools" 6577 + ], 6578 + "imgsize": [ 6579 + "setuptools" 6580 + ], 6581 + "iminuit": [ 6582 + "setuptools" 551 6583 ], 552 6584 "immutabledict": [ 553 - "poetry-core" 6585 + "poetry-core", 6586 + "setuptools" 6587 + ], 6588 + "immutables": [ 6589 + "setuptools" 6590 + ], 6591 + "impacket": [ 6592 + "setuptools" 6593 + ], 6594 + "importlab": [ 6595 + "setuptools" 6596 + ], 6597 + "importlib-metadata": [ 6598 + "setuptools", 6599 + "setuptools-scm" 6600 + ], 6601 + "importlib-resources": [ 6602 + "setuptools", 6603 + "setuptools-scm" 6604 + ], 6605 + "importmagic": [ 6606 + "setuptools" 6607 + ], 6608 + "impyla": [ 6609 + "setuptools" 6610 + ], 6611 + "imread": [ 6612 + "setuptools" 6613 + ], 6614 + "imutils": [ 6615 + "setuptools" 6616 + ], 6617 + "in-place": [ 6618 + "setuptools" 6619 + ], 6620 + "incomfort-client": [ 6621 + "setuptools" 6622 + ], 6623 + "incremental": [ 6624 + "setuptools" 6625 + ], 6626 + "infinity": [ 6627 + "setuptools" 6628 + ], 6629 + "inflect": [ 6630 + "setuptools", 6631 + "setuptools-scm" 6632 + ], 6633 + "inflection": [ 6634 + "setuptools" 6635 + ], 6636 + "influxdb": [ 6637 + "setuptools" 6638 + ], 6639 + "influxdb-client": [ 6640 + "setuptools" 6641 + ], 6642 + "inform": [ 6643 + "setuptools" 6644 + ], 6645 + "iniconfig": [ 6646 + "setuptools", 6647 + "setuptools-scm" 6648 + ], 6649 + "inifile": [ 6650 + "setuptools" 6651 + ], 6652 + "iniparse": [ 6653 + "setuptools" 6654 + ], 6655 + "injector": [ 6656 + "setuptools" 6657 + ], 6658 + "inkbird-ble": [ 6659 + "poetry-core", 6660 + "setuptools" 6661 + ], 6662 + "inkex": [ 6663 + "setuptools" 6664 + ], 6665 + "inotify": [ 6666 + "setuptools" 6667 + ], 6668 + "inotify-simple": [ 6669 + "setuptools" 6670 + ], 6671 + "inotifyrecursive": [ 6672 + "setuptools" 554 6673 ], 555 6674 "inquirer": [ 556 - "poetry-core" 6675 + "poetry-core", 6676 + "setuptools" 6677 + ], 6678 + "insegel": [ 6679 + "setuptools" 557 6680 ], 558 6681 "installer": [ 559 - "flit-core" 6682 + "flit-core", 6683 + "setuptools" 6684 + ], 6685 + "insteon-frontend-home-assistant": [ 6686 + "setuptools" 6687 + ], 6688 + "intake": [ 6689 + "setuptools" 6690 + ], 6691 + "intake-parquet": [ 6692 + "setuptools" 6693 + ], 6694 + "intbitset": [ 6695 + "setuptools" 6696 + ], 6697 + "intelhex": [ 6698 + "setuptools" 6699 + ], 6700 + "intellifire4py": [ 6701 + "setuptools" 6702 + ], 6703 + "internetarchive": [ 6704 + "setuptools" 6705 + ], 6706 + "interruptingcow": [ 6707 + "setuptools" 6708 + ], 6709 + "intervaltree": [ 6710 + "setuptools" 6711 + ], 6712 + "into-dbus-python": [ 6713 + "setuptools" 6714 + ], 6715 + "intreehooks": [ 6716 + "setuptools" 6717 + ], 6718 + "invocations": [ 6719 + "setuptools" 6720 + ], 6721 + "invoke": [ 6722 + "setuptools" 6723 + ], 6724 + "iocapture": [ 6725 + "setuptools" 560 6726 ], 561 6727 "iodata": [ 562 - "cython" 6728 + "cython", 6729 + "setuptools" 6730 + ], 6731 + "ionhash": [ 6732 + "setuptools" 6733 + ], 6734 + "iotawattpy": [ 6735 + "setuptools" 6736 + ], 6737 + "iowait": [ 6738 + "setuptools" 6739 + ], 6740 + "ipaddr": [ 6741 + "setuptools" 6742 + ], 6743 + "ipaddress": [ 6744 + "setuptools" 6745 + ], 6746 + "ipdb": [ 6747 + "setuptools" 6748 + ], 6749 + "ipdbplugin": [ 6750 + "setuptools" 563 6751 ], 564 6752 "ipfshttpclient": [ 565 - "flitBuildHook" 6753 + "flitBuildHook", 6754 + "setuptools" 6755 + ], 6756 + "iptools": [ 6757 + "setuptools" 566 6758 ], 567 6759 "ipwhl": [ 568 - "flitBuildHook" 6760 + "flitBuildHook", 6761 + "setuptools" 6762 + ], 6763 + "ipy": [ 6764 + "setuptools" 6765 + ], 6766 + "ipydatawidgets": [ 6767 + "setuptools" 569 6768 ], 570 6769 "ipykernel": [ 571 - "hatchling" 6770 + "hatchling", 6771 + "setuptools" 6772 + ], 6773 + "ipympl": [ 6774 + "setuptools" 6775 + ], 6776 + "ipyparallel": [ 6777 + "hatchling", 6778 + "setuptools" 6779 + ], 6780 + "ipython": [ 6781 + "setuptools" 6782 + ], 6783 + "ipython-genutils": [ 6784 + "setuptools" 6785 + ], 6786 + "ipython-sql": [ 6787 + "setuptools" 6788 + ], 6789 + "ipyvue": [ 6790 + "setuptools" 6791 + ], 6792 + "ipyvuetify": [ 6793 + "setuptools" 6794 + ], 6795 + "ipywidgets": [ 6796 + "setuptools" 6797 + ], 6798 + "irc": [ 6799 + "setuptools", 6800 + "setuptools-scm" 6801 + ], 6802 + "ircrobots": [ 6803 + "setuptools" 6804 + ], 6805 + "ircstates": [ 6806 + "setuptools" 6807 + ], 6808 + "irctokens": [ 6809 + "setuptools" 6810 + ], 6811 + "isbnlib": [ 6812 + "setuptools" 6813 + ], 6814 + "islpy": [ 6815 + "setuptools" 6816 + ], 6817 + "ismartgate": [ 6818 + "setuptools" 6819 + ], 6820 + "iso-639": [ 6821 + "setuptools" 6822 + ], 6823 + "iso3166": [ 6824 + "setuptools" 6825 + ], 6826 + "iso4217": [ 6827 + "setuptools" 572 6828 ], 573 6829 "iso8601": [ 574 - "poetry-core" 6830 + "poetry-core", 6831 + "setuptools" 6832 + ], 6833 + "isodate": [ 6834 + "setuptools" 6835 + ], 6836 + "isoduration": [ 6837 + "setuptools" 575 6838 ], 576 6839 "isort": [ 577 - "poetry-core" 6840 + "poetry-core", 6841 + "setuptools" 6842 + ], 6843 + "isosurfaces": [ 6844 + "setuptools" 6845 + ], 6846 + "isounidecode": [ 6847 + "setuptools" 6848 + ], 6849 + "isoweek": [ 6850 + "setuptools" 6851 + ], 6852 + "itanium-demangler": [ 6853 + "setuptools" 6854 + ], 6855 + "itemadapter": [ 6856 + "setuptools" 6857 + ], 6858 + "itemdb": [ 6859 + "setuptools" 6860 + ], 6861 + "itemloaders": [ 6862 + "setuptools" 6863 + ], 6864 + "itsdangerous": [ 6865 + "setuptools" 6866 + ], 6867 + "itunespy": [ 6868 + "setuptools" 6869 + ], 6870 + "itypes": [ 6871 + "setuptools" 6872 + ], 6873 + "j2cli": [ 6874 + "setuptools" 6875 + ], 6876 + "jaconv": [ 6877 + "setuptools" 6878 + ], 6879 + "jaeger-client": [ 6880 + "setuptools" 6881 + ], 6882 + "janus": [ 6883 + "setuptools" 6884 + ], 6885 + "jarac-itertools": [ 6886 + "setuptools", 6887 + "setuptools-scm" 6888 + ], 6889 + "jaraco-classes": [ 6890 + "setuptools", 6891 + "setuptools-scm" 6892 + ], 6893 + "jaraco-collections": [ 6894 + "setuptools", 6895 + "setuptools-scm" 6896 + ], 6897 + "jaraco-context": [ 6898 + "setuptools", 6899 + "setuptools-scm" 6900 + ], 6901 + "jaraco-functools": [ 6902 + "setuptools", 6903 + "setuptools-scm" 6904 + ], 6905 + "jaraco-itertools": [ 6906 + "setuptools", 6907 + "setuptools-scm" 6908 + ], 6909 + "jaraco-logging": [ 6910 + "setuptools", 6911 + "setuptools-scm" 6912 + ], 6913 + "jaraco-stream": [ 6914 + "setuptools", 6915 + "setuptools-scm" 6916 + ], 6917 + "jaraco-test": [ 6918 + "setuptools", 6919 + "setuptools-scm" 6920 + ], 6921 + "jaraco-text": [ 6922 + "setuptools", 6923 + "setuptools-scm" 578 6924 ], 579 6925 "jarowinkler": [ 580 - "cython" 6926 + "cython", 6927 + "setuptools" 6928 + ], 6929 + "javaobj-py3": [ 6930 + "setuptools" 6931 + ], 6932 + "javaproperties": [ 6933 + "setuptools" 6934 + ], 6935 + "jax": [ 6936 + "setuptools" 6937 + ], 6938 + "jaxlib": [ 6939 + "setuptools" 6940 + ], 6941 + "jaxlib-bin": [ 6942 + "setuptools" 6943 + ], 6944 + "jaxlib-build": [ 6945 + "setuptools" 6946 + ], 6947 + "jaxlibwithcuda": [ 6948 + "setuptools" 6949 + ], 6950 + "jaxlibwithoutcuda": [ 6951 + "setuptools" 6952 + ], 6953 + "jaydebeapi": [ 6954 + "setuptools" 6955 + ], 6956 + "jc": [ 6957 + "setuptools" 6958 + ], 6959 + "jdatetime": [ 6960 + "setuptools" 6961 + ], 6962 + "jdcal": [ 6963 + "setuptools" 6964 + ], 6965 + "jedi": [ 6966 + "setuptools" 581 6967 ], 582 6968 "jedi-language-server": [ 583 - "poetry" 6969 + "poetry", 6970 + "setuptools" 584 6971 ], 585 6972 "jeepney": [ 586 - "flit-core" 6973 + "flit-core", 6974 + "setuptools" 6975 + ], 6976 + "jellyfin-apiclient-python": [ 6977 + "setuptools" 6978 + ], 6979 + "jellyfish": [ 6980 + "setuptools" 587 6981 ], 588 6982 "jenkins-job-builder": [ 589 - "pbr" 6983 + "pbr", 6984 + "setuptools" 6985 + ], 6986 + "jieba": [ 6987 + "setuptools" 6988 + ], 6989 + "jinja2": [ 6990 + "setuptools" 590 6991 ], 591 6992 "jinja2-git": [ 592 - "poetry-core" 6993 + "poetry-core", 6994 + "setuptools" 6995 + ], 6996 + "jinja2-pluralize": [ 6997 + "setuptools" 6998 + ], 6999 + "jinja2-time": [ 7000 + "setuptools" 7001 + ], 7002 + "jira": [ 7003 + "setuptools", 7004 + "setuptools-scm" 7005 + ], 7006 + "jmespath": [ 7007 + "setuptools" 7008 + ], 7009 + "jmp": [ 7010 + "setuptools" 7011 + ], 7012 + "joblib": [ 7013 + "setuptools" 7014 + ], 7015 + "johnnycanencrypt": [ 7016 + "setuptools" 7017 + ], 7018 + "josepy": [ 7019 + "setuptools" 7020 + ], 7021 + "journalwatch": [ 7022 + "setuptools" 7023 + ], 7024 + "jplephem": [ 7025 + "setuptools" 7026 + ], 7027 + "jproperties": [ 7028 + "setuptools", 7029 + "setuptools-scm" 7030 + ], 7031 + "jpylyzer": [ 7032 + "setuptools" 7033 + ], 7034 + "jpype1": [ 7035 + "setuptools" 7036 + ], 7037 + "jq": [ 7038 + "setuptools" 7039 + ], 7040 + "js2py": [ 7041 + "setuptools" 7042 + ], 7043 + "jsbeautifier": [ 7044 + "setuptools" 593 7045 ], 594 7046 "jschema-to-python": [ 595 - "pbr" 7047 + "pbr", 7048 + "setuptools" 7049 + ], 7050 + "jsmin": [ 7051 + "setuptools" 7052 + ], 7053 + "json-home-client": [ 7054 + "setuptools" 7055 + ], 7056 + "json-logging": [ 7057 + "setuptools" 7058 + ], 7059 + "json-merge-patch": [ 7060 + "setuptools" 7061 + ], 7062 + "json-rpc": [ 7063 + "setuptools" 596 7064 ], 597 7065 "json-schema-for-humans": [ 598 - "poetry-core" 7066 + "poetry-core", 7067 + "setuptools" 7068 + ], 7069 + "json-stream": [ 7070 + "setuptools" 7071 + ], 7072 + "json-tricks": [ 7073 + "setuptools" 7074 + ], 7075 + "json5": [ 7076 + "setuptools" 7077 + ], 7078 + "jsonconversion": [ 7079 + "setuptools" 7080 + ], 7081 + "jsondate": [ 7082 + "setuptools" 7083 + ], 7084 + "jsondiff": [ 7085 + "setuptools" 7086 + ], 7087 + "jsonfield": [ 7088 + "setuptools" 7089 + ], 7090 + "jsonlines": [ 7091 + "setuptools" 7092 + ], 7093 + "jsonmerge": [ 7094 + "setuptools" 7095 + ], 7096 + "jsonnet": [ 7097 + "setuptools" 7098 + ], 7099 + "jsonpatch": [ 7100 + "setuptools" 7101 + ], 7102 + "jsonpath": [ 7103 + "setuptools" 7104 + ], 7105 + "jsonpath-ng": [ 7106 + "setuptools" 7107 + ], 7108 + "jsonpath-rw": [ 7109 + "setuptools" 7110 + ], 7111 + "jsonpickle": [ 7112 + "setuptools", 7113 + "setuptools-scm" 7114 + ], 7115 + "jsonpointer": [ 7116 + "setuptools" 7117 + ], 7118 + "jsonref": [ 7119 + "setuptools" 7120 + ], 7121 + "jsonrpc-async": [ 7122 + "setuptools" 7123 + ], 7124 + "jsonrpc-base": [ 7125 + "setuptools" 7126 + ], 7127 + "jsonrpc-websocket": [ 7128 + "setuptools" 7129 + ], 7130 + "jsonrpclib-pelix": [ 7131 + "setuptools" 7132 + ], 7133 + "jsons": [ 7134 + "setuptools" 599 7135 ], 600 7136 "jsonschema": [ 601 - { "buildSystem": "hatchling", "from": "4.6.0" }, 602 - { "buildSystem": "hatch-vcs", "from": "4.6.0" } 7137 + { 7138 + "buildSystem": "hatch-fancy-pypi-readme", 7139 + "from": "4.11.0" 7140 + }, 7141 + { 7142 + "buildSystem": "hatch-vcs", 7143 + "from": "4.6.0" 7144 + }, 7145 + { 7146 + "buildSystem": "hatchling", 7147 + "from": "4.6.0" 7148 + }, 7149 + { 7150 + "buildSystem": "setuptools", 7151 + "until": "4.6.0" 7152 + }, 7153 + { 7154 + "buildSystem": "setuptools-scm", 7155 + "until": "4.6.0" 7156 + } 7157 + ], 7158 + "jsonschema-3": [ 7159 + "setuptools-scm" 7160 + ], 7161 + "jsonschema-spec": [ 7162 + "poetry-core" 7163 + ], 7164 + "jsonstreams": [ 7165 + "setuptools" 7166 + ], 7167 + "jug": [ 7168 + "setuptools" 7169 + ], 7170 + "junit-xml": [ 7171 + "setuptools" 7172 + ], 7173 + "junitparser": [ 7174 + "setuptools" 7175 + ], 7176 + "junos-eznc": [ 7177 + "setuptools" 7178 + ], 7179 + "jupyter": [ 7180 + "setuptools" 7181 + ], 7182 + "jupyter-book": [ 7183 + "flit-core", 7184 + "flitBuildHook", 7185 + "setuptools" 7186 + ], 7187 + "jupyter-c-kernel": [ 7188 + "setuptools" 7189 + ], 7190 + "jupyter-cache": [ 7191 + "setuptools" 603 7192 ], 604 7193 "jupyter-client": [ 605 - "hatchling" 7194 + "hatchling", 7195 + "setuptools" 7196 + ], 7197 + "jupyter-console": [ 7198 + "setuptools" 7199 + ], 7200 + "jupyter-core": [ 7201 + "setuptools" 7202 + ], 7203 + "jupyter-lsp": [ 7204 + "setuptools" 7205 + ], 7206 + "jupyter-packaging": [ 7207 + "hatchling", 7208 + "setuptools" 7209 + ], 7210 + "jupyter-repo2docker": [ 7211 + "setuptools" 606 7212 ], 607 7213 "jupyter-server": [ 608 - "jupyter-packaging" 7214 + "setuptools" 7215 + ], 7216 + "jupyter-server-mathjax": [ 7217 + "jupyter-packaging", 7218 + "setuptools" 7219 + ], 7220 + "jupyter-sphinx": [ 7221 + "setuptools" 7222 + ], 7223 + "jupyter-telemetry": [ 7224 + "setuptools" 7225 + ], 7226 + "jupyterhub": [ 7227 + "setuptools" 7228 + ], 7229 + "jupyterhub-ldapauthenticator": [ 7230 + "setuptools" 7231 + ], 7232 + "jupyterhub-systemdspawner": [ 7233 + "setuptools" 7234 + ], 7235 + "jupyterhub-tmpauthenticator": [ 7236 + "setuptools" 609 7237 ], 610 7238 "jupyterlab": [ 611 - "jupyter-packaging" 7239 + "jupyter-packaging", 7240 + "setuptools" 612 7241 ], 613 7242 "jupyterlab-code-formatter": [ 614 7243 "jupyter-packaging" 615 7244 ], 7245 + "jupyterlab-git": [ 7246 + "jupyter-packaging", 7247 + "setuptools" 7248 + ], 7249 + "jupyterlab-launcher": [ 7250 + "setuptools" 7251 + ], 7252 + "jupyterlab-lsp": [ 7253 + "setuptools" 7254 + ], 616 7255 "jupyterlab-pygments": [ 617 - "jupyter-packaging" 7256 + "jupyter-packaging", 7257 + "setuptools" 7258 + ], 7259 + "jupyterlab-server": [ 7260 + "hatchling", 7261 + "setuptools" 7262 + ], 7263 + "jupyterlab-widgets": [ 7264 + "setuptools" 7265 + ], 7266 + "jupytext": [ 7267 + "setuptools" 7268 + ], 7269 + "justbackoff": [ 7270 + "setuptools" 7271 + ], 7272 + "justbases": [ 7273 + "setuptools" 7274 + ], 7275 + "justbytes": [ 7276 + "setuptools" 7277 + ], 7278 + "justnimbus": [ 7279 + "poetry-core", 7280 + "setuptools" 7281 + ], 7282 + "jwcrypto": [ 7283 + "setuptools" 7284 + ], 7285 + "jxmlease": [ 7286 + "setuptools" 7287 + ], 7288 + "k5test": [ 7289 + "setuptools" 7290 + ], 7291 + "kafka-python": [ 7292 + "setuptools" 7293 + ], 7294 + "kaggle": [ 7295 + "setuptools" 7296 + ], 7297 + "kaitaistruct": [ 7298 + "setuptools" 7299 + ], 7300 + "kajiki": [ 7301 + "setuptools" 7302 + ], 7303 + "kaldi-active-grammar": [ 7304 + "setuptools" 7305 + ], 7306 + "kanidm": [ 7307 + "poetry-core", 7308 + "setuptools" 7309 + ], 7310 + "kaptan": [ 7311 + "setuptools" 7312 + ], 7313 + "karton-asciimagic": [ 7314 + "setuptools" 7315 + ], 7316 + "karton-autoit-ripper": [ 7317 + "setuptools" 7318 + ], 7319 + "karton-classifier": [ 7320 + "setuptools" 7321 + ], 7322 + "karton-config-extractor": [ 7323 + "setuptools" 7324 + ], 7325 + "karton-core": [ 7326 + "setuptools" 7327 + ], 7328 + "karton-dashboard": [ 7329 + "setuptools" 7330 + ], 7331 + "karton-mwdb-reporter": [ 7332 + "setuptools" 7333 + ], 7334 + "karton-yaramatcher": [ 7335 + "setuptools" 7336 + ], 7337 + "kazoo": [ 7338 + "setuptools" 7339 + ], 7340 + "kbcstorage": [ 7341 + "setuptools", 7342 + "setuptools-scm" 7343 + ], 7344 + "kconfiglib": [ 7345 + "setuptools" 7346 + ], 7347 + "keep": [ 7348 + "setuptools" 7349 + ], 7350 + "keepkey": [ 7351 + "setuptools" 7352 + ], 7353 + "keepkey-agent": [ 7354 + "setuptools" 7355 + ], 7356 + "kegtron-ble": [ 7357 + "poetry-core" 7358 + ], 7359 + "keras": [ 7360 + "setuptools" 7361 + ], 7362 + "keras-applications": [ 7363 + "setuptools" 7364 + ], 7365 + "keras-preprocessing": [ 7366 + "setuptools" 7367 + ], 7368 + "kerberos": [ 7369 + "setuptools" 7370 + ], 7371 + "keyboard": [ 7372 + "setuptools" 7373 + ], 7374 + "keyring": [ 7375 + "setuptools", 7376 + "setuptools-scm" 7377 + ], 7378 + "keyrings-alt": [ 7379 + "setuptools", 7380 + "setuptools-scm" 7381 + ], 7382 + "keyrings-cryptfile": [ 7383 + "setuptools" 7384 + ], 7385 + "keyrings-google-artifactregistry-auth": [ 7386 + "setuptools", 7387 + "setuptools-scm" 7388 + ], 7389 + "keystone-engine": [ 7390 + "setuptools" 618 7391 ], 619 7392 "keystoneauth1": [ 620 - "pbr" 7393 + "pbr", 7394 + "setuptools" 7395 + ], 7396 + "keyutils": [ 7397 + "setuptools" 7398 + ], 7399 + "kinparse": [ 7400 + "setuptools" 7401 + ], 7402 + "kiss-headers": [ 7403 + "setuptools" 7404 + ], 7405 + "kitchen": [ 7406 + "setuptools" 621 7407 ], 622 7408 "kivy": [ 623 - "cython" 7409 + "cython", 7410 + "setuptools" 7411 + ], 7412 + "kivy-garden": [ 7413 + "setuptools" 7414 + ], 7415 + "kiwisolver": [ 7416 + "setuptools", 7417 + "setuptools-scm" 7418 + ], 7419 + "klaus": [ 7420 + "setuptools" 7421 + ], 7422 + "klein": [ 7423 + "setuptools" 7424 + ], 7425 + "kmapper": [ 7426 + "setuptools" 7427 + ], 7428 + "kml2geojson": [ 7429 + "poetry-core", 7430 + "setuptools" 7431 + ], 7432 + "knack": [ 7433 + "setuptools" 7434 + ], 7435 + "kombu": [ 7436 + "setuptools" 7437 + ], 7438 + "konnected": [ 7439 + "setuptools" 7440 + ], 7441 + "korean-lunar-calendar": [ 7442 + "setuptools" 7443 + ], 7444 + "krakenex": [ 7445 + "setuptools" 7446 + ], 7447 + "kubernetes": [ 7448 + "setuptools" 7449 + ], 7450 + "labgrid": [ 7451 + "setuptools", 7452 + "setuptools-scm" 7453 + ], 7454 + "labmath": [ 7455 + "setuptools" 624 7456 ], 625 7457 "langcodes": [ 626 - "poetry-core" 7458 + "poetry-core", 7459 + "setuptools" 7460 + ], 7461 + "langdetect": [ 7462 + "setuptools" 627 7463 ], 628 7464 "language-data": [ 629 - "poetry-core" 7465 + "poetry-core", 7466 + "setuptools" 7467 + ], 7468 + "lark": [ 7469 + "setuptools" 7470 + ], 7471 + "lark-parser": [ 7472 + "setuptools" 7473 + ], 7474 + "latexcodec": [ 7475 + "setuptools" 7476 + ], 7477 + "launchpadlib": [ 7478 + "setuptools" 7479 + ], 7480 + "laundrify-aio": [ 7481 + "setuptools" 7482 + ], 7483 + "lazr-config": [ 7484 + "setuptools" 7485 + ], 7486 + "lazr-delegates": [ 7487 + "setuptools" 7488 + ], 7489 + "lazr-restfulclient": [ 7490 + "setuptools" 7491 + ], 7492 + "lazr-uri": [ 7493 + "setuptools" 7494 + ], 7495 + "lazy": [ 7496 + "setuptools" 7497 + ], 7498 + "lazy-import": [ 7499 + "setuptools" 7500 + ], 7501 + "lazy-object-proxy": [ 7502 + "setuptools", 7503 + "setuptools-scm" 630 7504 ], 631 7505 "lc7001": [ 632 - "poetry-core" 7506 + "poetry-core", 7507 + "setuptools" 7508 + ], 7509 + "ldap": [ 7510 + "setuptools" 7511 + ], 7512 + "ldap3": [ 7513 + "setuptools" 7514 + ], 7515 + "ldapdomaindump": [ 7516 + "setuptools" 633 7517 ], 634 7518 "ldappool": [ 635 - "pbr" 7519 + "pbr", 7520 + "setuptools" 7521 + ], 7522 + "ldaptor": [ 7523 + "setuptools" 7524 + ], 7525 + "leather": [ 7526 + "setuptools" 7527 + ], 7528 + "leb128": [ 7529 + "setuptools" 7530 + ], 7531 + "led-ble": [ 7532 + "poetry-core", 7533 + "setuptools" 7534 + ], 7535 + "ledger-agent": [ 7536 + "setuptools" 7537 + ], 7538 + "ledgerblue": [ 7539 + "setuptools" 7540 + ], 7541 + "ledgerwallet": [ 7542 + "setuptools" 7543 + ], 7544 + "lektor": [ 7545 + "setuptools" 7546 + ], 7547 + "leveldb": [ 7548 + "setuptools" 636 7549 ], 637 7550 "levenshtein": [ 7551 + "cython", 7552 + "setuptools" 7553 + ], 7554 + "lexid": [ 7555 + "setuptools" 7556 + ], 7557 + "lhapdf": [ 638 7558 "cython" 639 7559 ], 7560 + "libagent": [ 7561 + "setuptools" 7562 + ], 7563 + "libais": [ 7564 + "setuptools" 7565 + ], 7566 + "libarchive-c": [ 7567 + "setuptools" 7568 + ], 7569 + "libarcus": [ 7570 + "setuptools" 7571 + ], 7572 + "libasyncns": [ 7573 + "setuptools" 7574 + ], 7575 + "libcloud": [ 7576 + "setuptools" 7577 + ], 7578 + "libcst": [ 7579 + "setuptools", 7580 + "setuptools-scm" 7581 + ], 7582 + "libevdev": [ 7583 + "setuptools" 7584 + ], 640 7585 "libgpuarray": [ 641 - "cython" 7586 + "cython", 7587 + "setuptools" 7588 + ], 7589 + "libiio": [ 7590 + "setuptools" 7591 + ], 7592 + "libkeepass": [ 7593 + "setuptools" 7594 + ], 7595 + "liblarch": [ 7596 + "setuptools" 7597 + ], 7598 + "liblzfse": [ 7599 + "setuptools" 642 7600 ], 643 7601 "libmr": [ 644 - "cython" 7602 + "cython", 7603 + "setuptools" 7604 + ], 7605 + "libnacl": [ 7606 + "setuptools" 7607 + ], 7608 + "libpurecool": [ 7609 + "setuptools" 7610 + ], 7611 + "libpyfoscam": [ 7612 + "setuptools" 7613 + ], 7614 + "libpyvivotek": [ 7615 + "setuptools" 7616 + ], 7617 + "librosa": [ 7618 + "setuptools" 7619 + ], 7620 + "librouteros": [ 7621 + "setuptools" 7622 + ], 7623 + "libsass": [ 7624 + "setuptools" 7625 + ], 7626 + "libsavitar": [ 7627 + "setuptools" 7628 + ], 7629 + "libsixel": [ 7630 + "setuptools" 7631 + ], 7632 + "libsoundtouch": [ 7633 + "setuptools" 7634 + ], 7635 + "libthumbor": [ 7636 + "setuptools" 645 7637 ], 646 7638 "libtmux": [ 647 - "poetry-core" 7639 + "poetry-core", 7640 + "setuptools" 7641 + ], 7642 + "libusb1": [ 7643 + "setuptools" 7644 + ], 7645 + "libusbsio": [ 7646 + "setuptools" 7647 + ], 7648 + "libversion": [ 7649 + "setuptools" 7650 + ], 7651 + "libvirt": [ 7652 + "setuptools" 7653 + ], 7654 + "libvirt-python": [ 7655 + "setuptools" 7656 + ], 7657 + "license-expression": [ 7658 + "setuptools", 7659 + "setuptools-scm" 648 7660 ], 649 7661 "licensecheck": [ 650 7662 "poetry-core" 651 7663 ], 652 - "line_profiler": [ 653 - "cython" 7664 + "life360": [ 7665 + "setuptools" 7666 + ], 7667 + "lightgbm": [ 7668 + "setuptools" 7669 + ], 7670 + "lightning": [ 7671 + "setuptools" 7672 + ], 7673 + "lightparam": [ 7674 + "setuptools" 7675 + ], 7676 + "lightwave": [ 7677 + "setuptools" 7678 + ], 7679 + "lightwave2": [ 7680 + "setuptools" 7681 + ], 7682 + "lima": [ 7683 + "setuptools" 7684 + ], 7685 + "limiter": [ 7686 + "setuptools" 7687 + ], 7688 + "limitlessled": [ 7689 + "setuptools" 7690 + ], 7691 + "limits": [ 7692 + "setuptools" 7693 + ], 7694 + "limnoria": [ 7695 + "setuptools" 7696 + ], 7697 + "line-profiler": [ 7698 + "cython", 7699 + "setuptools" 654 7700 ], 655 7701 "linecache2": [ 656 - "pbr" 7702 + "pbr", 7703 + "setuptools" 7704 + ], 7705 + "lingua": [ 7706 + "flit-core", 7707 + "setuptools" 7708 + ], 7709 + "linkify-it-py": [ 7710 + "setuptools" 7711 + ], 7712 + "linode": [ 7713 + "setuptools" 7714 + ], 7715 + "linode-api": [ 7716 + "setuptools" 7717 + ], 7718 + "linuxfd": [ 7719 + "setuptools" 657 7720 ], 658 7721 "linz-logger": [ 659 7722 "poetry-core" 660 7723 ], 7724 + "liquidctl": [ 7725 + "setuptools" 7726 + ], 7727 + "littleutils": [ 7728 + "setuptools" 7729 + ], 7730 + "livelossplot": [ 7731 + "setuptools" 7732 + ], 7733 + "livereload": [ 7734 + "setuptools" 7735 + ], 7736 + "livestreamer": [ 7737 + "setuptools" 7738 + ], 7739 + "livestreamer-curses": [ 7740 + "setuptools" 7741 + ], 7742 + "lizard": [ 7743 + "setuptools" 7744 + ], 661 7745 "llfuse": [ 662 - "cython" 7746 + "cython", 7747 + "setuptools" 7748 + ], 7749 + "llvmlite": [ 7750 + "setuptools" 7751 + ], 7752 + "lmdb": [ 7753 + "setuptools" 7754 + ], 7755 + "lml": [ 7756 + "setuptools" 7757 + ], 7758 + "lmnotify": [ 7759 + "setuptools" 7760 + ], 7761 + "lmtpd": [ 7762 + "setuptools" 663 7763 ], 664 7764 "loca": [ 665 - "flitBuildHook" 7765 + "flitBuildHook", 7766 + "setuptools" 7767 + ], 7768 + "localimport": [ 7769 + "setuptools" 7770 + ], 7771 + "localstack": [ 7772 + "setuptools" 7773 + ], 7774 + "localstack-client": [ 7775 + "setuptools" 7776 + ], 7777 + "localstack-ext": [ 7778 + "setuptools" 7779 + ], 7780 + "localzone": [ 7781 + "setuptools" 7782 + ], 7783 + "locationsharinglib": [ 7784 + "setuptools" 7785 + ], 7786 + "locket": [ 7787 + "setuptools" 666 7788 ], 667 7789 "lockfile": [ 668 - "pbr" 7790 + "pbr", 7791 + "setuptools" 7792 + ], 7793 + "log-symbols": [ 7794 + "setuptools" 7795 + ], 7796 + "logbook": [ 7797 + "setuptools" 7798 + ], 7799 + "logfury": [ 7800 + "setuptools", 7801 + "setuptools-scm" 7802 + ], 7803 + "logi-circle": [ 7804 + "setuptools" 7805 + ], 7806 + "logical-unification": [ 7807 + "setuptools" 7808 + ], 7809 + "logilab-astng": [ 7810 + "setuptools" 7811 + ], 7812 + "logilab-common": [ 7813 + "setuptools" 7814 + ], 7815 + "logilab-constraint": [ 7816 + "setuptools" 7817 + ], 7818 + "logster": [ 7819 + "setuptools" 7820 + ], 7821 + "loguru": [ 7822 + "setuptools" 7823 + ], 7824 + "logutils": [ 7825 + "setuptools" 7826 + ], 7827 + "logzero": [ 7828 + "setuptools" 7829 + ], 7830 + "lomond": [ 7831 + "setuptools" 7832 + ], 7833 + "loo-py": [ 7834 + "setuptools" 7835 + ], 7836 + "loopy": [ 7837 + "setuptools" 7838 + ], 7839 + "losant-rest": [ 7840 + "setuptools" 7841 + ], 7842 + "lrcalc-python": [ 7843 + "cython", 7844 + "setuptools" 7845 + ], 7846 + "lru-dict": [ 7847 + "setuptools" 669 7848 ], 670 7849 "lsassy": [ 671 - "poetry-core" 7850 + "poetry-core", 7851 + "setuptools" 7852 + ], 7853 + "luddite": [ 7854 + "setuptools" 672 7855 ], 673 7856 "luftdaten": [ 674 - "poetry-core" 7857 + "poetry-core", 7858 + "setuptools" 7859 + ], 7860 + "luhn": [ 7861 + "setuptools" 675 7862 ], 676 7863 "lupa": [ 677 - "cython" 7864 + "cython", 7865 + "setuptools" 7866 + ], 7867 + "lupupy": [ 7868 + "setuptools" 7869 + ], 7870 + "luxor": [ 7871 + "setuptools" 7872 + ], 7873 + "luxtronik": [ 7874 + "setuptools" 7875 + ], 7876 + "lxmf": [ 7877 + "setuptools" 678 7878 ], 679 7879 "lxml": [ 680 - "cython" 7880 + "cython", 7881 + "setuptools" 7882 + ], 7883 + "lyricwikia": [ 7884 + "setuptools" 681 7885 ], 682 7886 "lz4": [ 683 - "pkgconfig" 7887 + "pkgconfig", 7888 + "setuptools", 7889 + "setuptools-scm" 7890 + ], 7891 + "lzstring": [ 7892 + "setuptools" 7893 + ], 7894 + "m2crypto": [ 7895 + "setuptools" 7896 + ], 7897 + "m3u8": [ 7898 + "setuptools" 7899 + ], 7900 + "mac-alias": [ 7901 + "setuptools" 684 7902 ], 685 7903 "maestral": [ 686 - "pbr" 7904 + "pbr", 7905 + "setuptools" 7906 + ], 7907 + "magic": [ 7908 + "setuptools" 7909 + ], 7910 + "magic-wormhole": [ 7911 + "setuptools" 7912 + ], 7913 + "magic-wormhole-mailbox-server": [ 7914 + "setuptools" 7915 + ], 7916 + "magic-wormhole-transit-relay": [ 7917 + "setuptools" 7918 + ], 7919 + "magicgui": [ 7920 + "setuptools", 7921 + "setuptools-scm" 7922 + ], 7923 + "mahotas": [ 7924 + "setuptools" 7925 + ], 7926 + "mail-parser": [ 7927 + "setuptools" 7928 + ], 7929 + "mailcap-fix": [ 7930 + "setuptools" 7931 + ], 7932 + "mailchecker": [ 7933 + "setuptools" 7934 + ], 7935 + "mailchimp": [ 7936 + "setuptools" 7937 + ], 7938 + "mailmanclient": [ 7939 + "setuptools" 7940 + ], 7941 + "mailsuite": [ 7942 + "hatchling", 7943 + "setuptools" 7944 + ], 7945 + "makefun": [ 7946 + "setuptools", 7947 + "setuptools-scm" 7948 + ], 7949 + "mako": [ 7950 + "setuptools" 7951 + ], 7952 + "malduck": [ 7953 + "setuptools" 7954 + ], 7955 + "managesieve": [ 7956 + "setuptools" 7957 + ], 7958 + "manhole": [ 7959 + "setuptools" 687 7960 ], 688 7961 "manimpango": [ 689 - "cython" 7962 + "cython", 7963 + "setuptools" 7964 + ], 7965 + "manuel": [ 7966 + "setuptools" 7967 + ], 7968 + "mapbox-earcut": [ 7969 + "setuptools" 7970 + ], 7971 + "mariadb": [ 7972 + "setuptools" 690 7973 ], 691 7974 "marisa-trie": [ 692 - "cython" 7975 + "cython", 7976 + "setuptools" 7977 + ], 7978 + "markdown": [ 7979 + "setuptools" 7980 + ], 7981 + "markdown-include": [ 7982 + "setuptools" 693 7983 ], 694 7984 "markdown-it-py": [ 695 - "flit-core" 7985 + "flit-core", 7986 + "setuptools" 7987 + ], 7988 + "markdown-macros": [ 7989 + "setuptools" 7990 + ], 7991 + "markdown2": [ 7992 + "setuptools" 7993 + ], 7994 + "markdownify": [ 7995 + "setuptools" 7996 + ], 7997 + "markerlib": [ 7998 + "setuptools" 7999 + ], 8000 + "markups": [ 8001 + "setuptools" 8002 + ], 8003 + "markupsafe": [ 8004 + "setuptools" 8005 + ], 8006 + "marshmallow": [ 8007 + "setuptools" 8008 + ], 8009 + "marshmallow-dataclass": [ 8010 + "setuptools" 8011 + ], 8012 + "marshmallow-enum": [ 8013 + "setuptools" 8014 + ], 8015 + "marshmallow-oneofschema": [ 8016 + "setuptools" 8017 + ], 8018 + "marshmallow-polyfield": [ 8019 + "setuptools" 8020 + ], 8021 + "marshmallow-sqlalchemy": [ 8022 + "setuptools" 696 8023 ], 697 8024 "mask-rcnn": [ 698 8025 "cython" 699 8026 ], 8027 + "mastodon-py": [ 8028 + "setuptools" 8029 + ], 8030 + "mat2": [ 8031 + "setuptools" 8032 + ], 8033 + "matchpy": [ 8034 + "setuptools", 8035 + "setuptools-scm" 8036 + ], 8037 + "mathlibtools": [ 8038 + "setuptools" 8039 + ], 8040 + "matlink-gpapi": [ 8041 + "setuptools" 8042 + ], 8043 + "matplotlib": [ 8044 + "setuptools", 8045 + "setuptools-scm" 8046 + ], 8047 + "matplotlib-inline": [ 8048 + "setuptools" 8049 + ], 8050 + "matrix-api-async": [ 8051 + "setuptools" 8052 + ], 8053 + "matrix-client": [ 8054 + "setuptools" 8055 + ], 8056 + "matrix-common": [ 8057 + "setuptools" 8058 + ], 700 8059 "matrix-nio": [ 701 - "poetry-core" 8060 + "poetry-core", 8061 + "setuptools" 8062 + ], 8063 + "mattermostdriver": [ 8064 + "setuptools" 8065 + ], 8066 + "mautrix": [ 8067 + "setuptools" 8068 + ], 8069 + "mautrix-appservice": [ 8070 + "setuptools" 8071 + ], 8072 + "maxcube-api": [ 8073 + "setuptools" 8074 + ], 8075 + "maxminddb": [ 8076 + "setuptools" 8077 + ], 8078 + "maya": [ 8079 + "setuptools" 8080 + ], 8081 + "mayavi": [ 8082 + "setuptools" 8083 + ], 8084 + "mbddns": [ 8085 + "setuptools" 8086 + ], 8087 + "mccabe": [ 8088 + "setuptools" 702 8089 ], 703 8090 "mcstatus": [ 704 - "poetry-core" 8091 + "poetry-core", 8092 + "setuptools" 8093 + ], 8094 + "md-toc": [ 8095 + "setuptools" 8096 + ], 8097 + "md2gemini": [ 8098 + "setuptools" 705 8099 ], 706 8100 "mdformat": [ 707 - "poetry-core" 8101 + "poetry-core", 8102 + "setuptools" 8103 + ], 8104 + "mdit-py-plugins": [ 8105 + "flit-core", 8106 + "setuptools" 8107 + ], 8108 + "mdp": [ 8109 + "setuptools" 708 8110 ], 709 8111 "mdurl": [ 710 - "flit-core" 8112 + "flit-core", 8113 + "setuptools" 8114 + ], 8115 + "mdutils": [ 8116 + "setuptools" 8117 + ], 8118 + "mdx-truly-sane-lists": [ 8119 + "setuptools" 8120 + ], 8121 + "measurement": [ 8122 + "setuptools", 8123 + "setuptools-scm" 8124 + ], 8125 + "meater-python": [ 8126 + "setuptools" 8127 + ], 8128 + "mecab-python3": [ 8129 + "setuptools", 8130 + "setuptools-scm" 8131 + ], 8132 + "mechanicalsoup": [ 8133 + "setuptools" 8134 + ], 8135 + "mechanize": [ 8136 + "setuptools" 711 8137 ], 712 8138 "mediafile": [ 713 8139 "flit-core", 714 - "flitBuildHook" 8140 + "flitBuildHook", 8141 + "setuptools" 8142 + ], 8143 + "mediapy": [ 8144 + "setuptools" 8145 + ], 8146 + "meilisearch": [ 8147 + "setuptools" 8148 + ], 8149 + "meinheld": [ 8150 + "setuptools" 8151 + ], 8152 + "meld3": [ 8153 + "setuptools" 8154 + ], 8155 + "memcached": [ 8156 + "setuptools" 715 8157 ], 716 8158 "memory-allocator": [ 717 - "cython" 8159 + "cython", 8160 + "setuptools" 8161 + ], 8162 + "memory-profiler": [ 8163 + "setuptools" 8164 + ], 8165 + "mercantile": [ 8166 + "setuptools" 8167 + ], 8168 + "mercurial": [ 8169 + "setuptools" 8170 + ], 8171 + "mergedb": [ 8172 + "setuptools", 8173 + "setuptools-scm" 8174 + ], 8175 + "mergedeep": [ 8176 + "setuptools" 8177 + ], 8178 + "mergedict": [ 8179 + "setuptools" 8180 + ], 8181 + "merkletools": [ 8182 + "setuptools" 8183 + ], 8184 + "meross-iot": [ 8185 + "setuptools" 8186 + ], 8187 + "mesa": [ 8188 + "setuptools" 8189 + ], 8190 + "meshio": [ 8191 + "setuptools" 8192 + ], 8193 + "meshlabxml": [ 8194 + "setuptools" 8195 + ], 8196 + "meshtastic": [ 8197 + "setuptools" 8198 + ], 8199 + "meson": [ 8200 + "setuptools" 8201 + ], 8202 + "mesonpep517": [ 8203 + "setuptools" 8204 + ], 8205 + "messagebird": [ 8206 + "setuptools" 8207 + ], 8208 + "metakernel": [ 8209 + "setuptools" 8210 + ], 8211 + "metar": [ 8212 + "setuptools" 8213 + ], 8214 + "meteoalertapi": [ 8215 + "setuptools" 8216 + ], 8217 + "meteocalc": [ 8218 + "setuptools" 718 8219 ], 719 8220 "meteofrance-api": [ 720 - "poetry" 8221 + "poetry", 8222 + "poetry-core", 8223 + "setuptools" 721 8224 ], 722 8225 "metprint": [ 723 8226 "poetry-core" 724 8227 ], 8228 + "mezzanine": [ 8229 + "setuptools" 8230 + ], 8231 + "micawber": [ 8232 + "setuptools" 8233 + ], 8234 + "micloud": [ 8235 + "setuptools" 8236 + ], 8237 + "midiutil": [ 8238 + "setuptools" 8239 + ], 8240 + "mido": [ 8241 + "setuptools" 8242 + ], 8243 + "migen": [ 8244 + "setuptools" 8245 + ], 8246 + "milc": [ 8247 + "setuptools" 8248 + ], 8249 + "milksnake": [ 8250 + "setuptools" 8251 + ], 8252 + "mill-local": [ 8253 + "setuptools" 8254 + ], 8255 + "millheater": [ 8256 + "setuptools" 8257 + ], 8258 + "minexr": [ 8259 + "setuptools" 8260 + ], 8261 + "miniaudio": [ 8262 + "setuptools" 8263 + ], 8264 + "minidb": [ 8265 + "setuptools" 8266 + ], 8267 + "minidump": [ 8268 + "setuptools" 8269 + ], 8270 + "minikanren": [ 8271 + "setuptools" 8272 + ], 8273 + "minikerberos": [ 8274 + "setuptools" 8275 + ], 8276 + "minimal-dydb": [ 8277 + "poetry-core" 8278 + ], 8279 + "minimock": [ 8280 + "setuptools" 8281 + ], 8282 + "mininet-python": [ 8283 + "setuptools" 8284 + ], 8285 + "minio": [ 8286 + "setuptools" 8287 + ], 8288 + "miniupnpc": [ 8289 + "setuptools" 8290 + ], 8291 + "misaka": [ 8292 + "setuptools" 8293 + ], 8294 + "mistletoe": [ 8295 + "setuptools" 8296 + ], 8297 + "mistune": [ 8298 + "setuptools" 8299 + ], 8300 + "mistune-2-0": [ 8301 + "setuptools" 8302 + ], 8303 + "mitmproxy": [ 8304 + "setuptools" 8305 + ], 8306 + "mitogen": [ 8307 + "setuptools" 8308 + ], 8309 + "mizani": [ 8310 + "setuptools" 8311 + ], 8312 + "mkdocs": [ 8313 + "setuptools" 8314 + ], 725 8315 "mkdocs-autorefs": [ 726 8316 "pdm-pep517", 727 - "poetry" 8317 + "poetry", 8318 + "setuptools" 8319 + ], 8320 + "mkdocs-drawio-exporter": [ 8321 + "setuptools" 8322 + ], 8323 + "mkdocs-exclude": [ 8324 + "setuptools" 728 8325 ], 729 8326 "mkdocs-gen-files": [ 730 8327 "poetry" 731 8328 ], 8329 + "mkdocs-gitlab": [ 8330 + "setuptools" 8331 + ], 732 8332 "mkdocs-jupyter": [ 733 - "ipython_genutils", 8333 + "ipython-genutils", 734 8334 "poetry-core" 735 8335 ], 736 8336 "mkdocs-literate-nav": [ 737 8337 "poetry" 738 8338 ], 8339 + "mkdocs-macros": [ 8340 + "setuptools" 8341 + ], 8342 + "mkdocs-material": [ 8343 + "setuptools" 8344 + ], 8345 + "mkdocs-material-extensions": [ 8346 + "setuptools" 8347 + ], 8348 + "mkdocs-minify": [ 8349 + "setuptools" 8350 + ], 8351 + "mkdocs-redirects": [ 8352 + "setuptools" 8353 + ], 8354 + "mkdocs-swagger-ui-tag": [ 8355 + "setuptools" 8356 + ], 739 8357 "mkdocstrings": [ 740 - "pdm-pep517" 8358 + "pdm-pep517", 8359 + "setuptools" 8360 + ], 8361 + "mkdocstrings-python": [ 8362 + "setuptools" 8363 + ], 8364 + "mkl-service": [ 8365 + "cython", 8366 + "setuptools" 8367 + ], 8368 + "ml-collections": [ 8369 + "setuptools" 8370 + ], 8371 + "mlflow": [ 8372 + "setuptools" 8373 + ], 8374 + "mlrose": [ 8375 + "setuptools" 8376 + ], 8377 + "mmh3": [ 8378 + "setuptools" 8379 + ], 8380 + "mne-python": [ 8381 + "setuptools" 8382 + ], 8383 + "mnemonic": [ 8384 + "setuptools" 8385 + ], 8386 + "mnist": [ 8387 + "setuptools" 8388 + ], 8389 + "moat-ble": [ 8390 + "poetry-core", 8391 + "setuptools" 741 8392 ], 742 8393 "mock": [ 743 - "pbr" 8394 + "pbr", 8395 + "setuptools" 8396 + ], 8397 + "mock-open": [ 8398 + "setuptools" 8399 + ], 8400 + "mock-services": [ 8401 + "setuptools" 8402 + ], 8403 + "mocket": [ 8404 + "setuptools" 8405 + ], 8406 + "mockito": [ 8407 + "setuptools" 8408 + ], 8409 + "mockupdb": [ 8410 + "setuptools" 8411 + ], 8412 + "moderngl": [ 8413 + "setuptools" 8414 + ], 8415 + "moderngl-window": [ 8416 + "setuptools" 8417 + ], 8418 + "mohawk": [ 8419 + "setuptools" 8420 + ], 8421 + "moku": [ 8422 + "setuptools" 8423 + ], 8424 + "monai": [ 8425 + "setuptools" 8426 + ], 8427 + "monero": [ 8428 + "setuptools" 8429 + ], 8430 + "mongodict": [ 8431 + "setuptools" 8432 + ], 8433 + "mongoengine": [ 8434 + "setuptools" 744 8435 ], 745 8436 "mongomock": [ 746 - "pbr" 8437 + "pbr", 8438 + "setuptools" 8439 + ], 8440 + "monkeyhex": [ 8441 + "setuptools" 747 8442 ], 748 8443 "monosat": [ 749 - "cython" 8444 + "cython", 8445 + "setuptools" 8446 + ], 8447 + "monotonic": [ 8448 + "setuptools" 8449 + ], 8450 + "monty": [ 8451 + "setuptools" 8452 + ], 8453 + "moonraker-api": [ 8454 + "setuptools" 750 8455 ], 751 8456 "more-itertools": [ 752 - "flit-core" 8457 + "flit-core", 8458 + "flitBuildHook", 8459 + "setuptools" 8460 + ], 8461 + "more-properties": [ 8462 + "setuptools" 8463 + ], 8464 + "morphys": [ 8465 + "setuptools" 8466 + ], 8467 + "mortgage": [ 8468 + "setuptools" 8469 + ], 8470 + "motionblinds": [ 8471 + "setuptools" 753 8472 ], 754 8473 "motioneye-client": [ 755 - "poetry-core" 8474 + "poetry-core", 8475 + "setuptools" 8476 + ], 8477 + "moto": [ 8478 + "setuptools" 8479 + ], 8480 + "motor": [ 8481 + "setuptools" 8482 + ], 8483 + "mouseinfo": [ 8484 + "setuptools" 8485 + ], 8486 + "moviepy": [ 8487 + "setuptools" 8488 + ], 8489 + "mox": [ 8490 + "setuptools" 756 8491 ], 757 8492 "mox3": [ 758 - "pbr" 8493 + "pbr", 8494 + "setuptools" 8495 + ], 8496 + "mpd2": [ 8497 + "setuptools" 8498 + ], 8499 + "mpi4py": [ 8500 + "setuptools" 8501 + ], 8502 + "mpldatacursor": [ 8503 + "setuptools" 8504 + ], 8505 + "mplfinance": [ 8506 + "setuptools" 8507 + ], 8508 + "mplleaflet": [ 8509 + "setuptools" 8510 + ], 8511 + "mpmath": [ 8512 + "setuptools", 8513 + "setuptools-scm" 8514 + ], 8515 + "mpv": [ 8516 + "setuptools" 8517 + ], 8518 + "mpyq": [ 8519 + "setuptools" 8520 + ], 8521 + "ms-active-directory": [ 8522 + "setuptools" 8523 + ], 8524 + "ms-cv": [ 8525 + "setuptools" 8526 + ], 8527 + "msal": [ 8528 + "setuptools" 8529 + ], 8530 + "msal-extensions": [ 8531 + "setuptools" 8532 + ], 8533 + "msgpack": [ 8534 + "setuptools" 759 8535 ], 760 8536 "msgpack-numpy": [ 761 - "cython" 8537 + "cython", 8538 + "setuptools" 762 8539 ], 763 8540 "msgpack-types": [ 764 8541 "poetry" 765 8542 ], 8543 + "msgraph-core": [ 8544 + "flit-core", 8545 + "setuptools" 8546 + ], 8547 + "msldap": [ 8548 + "setuptools" 8549 + ], 766 8550 "msoffcrypto-tool": [ 767 - "poetry-core" 8551 + "poetry-core", 8552 + "setuptools" 8553 + ], 8554 + "msrest": [ 8555 + "setuptools" 8556 + ], 8557 + "msrestazure": [ 8558 + "setuptools" 8559 + ], 8560 + "mss": [ 8561 + "setuptools" 8562 + ], 8563 + "mt-940": [ 8564 + "setuptools" 8565 + ], 8566 + "mujson": [ 8567 + "setuptools" 8568 + ], 8569 + "mullvad-api": [ 8570 + "setuptools" 8571 + ], 8572 + "mulpyplexer": [ 8573 + "setuptools" 8574 + ], 8575 + "multi-key-dict": [ 8576 + "setuptools" 8577 + ], 8578 + "multidict": [ 8579 + "setuptools" 8580 + ], 8581 + "multimethod": [ 8582 + "setuptools" 8583 + ], 8584 + "multipledispatch": [ 8585 + "setuptools" 8586 + ], 8587 + "multiprocess": [ 8588 + "setuptools" 8589 + ], 8590 + "multiset": [ 8591 + "setuptools", 8592 + "setuptools-scm" 8593 + ], 8594 + "multitasking": [ 8595 + "setuptools" 768 8596 ], 769 8597 "munch": [ 770 - "pbr" 8598 + "pbr", 8599 + "setuptools" 8600 + ], 8601 + "munkres": [ 8602 + "setuptools" 771 8603 ], 772 8604 "murmurhash": [ 773 - "cython" 8605 + "cython", 8606 + "setuptools" 8607 + ], 8608 + "musicbrainzngs": [ 8609 + "setuptools" 8610 + ], 8611 + "mutag": [ 8612 + "setuptools" 8613 + ], 8614 + "mutagen": [ 8615 + "setuptools" 8616 + ], 8617 + "mutatormath": [ 8618 + "setuptools" 8619 + ], 8620 + "mutesync": [ 8621 + "setuptools" 8622 + ], 8623 + "mutf8": [ 8624 + "setuptools" 8625 + ], 8626 + "mutmut": [ 8627 + "setuptools" 8628 + ], 8629 + "mwclient": [ 8630 + "setuptools" 8631 + ], 8632 + "mwdblib": [ 8633 + "setuptools" 8634 + ], 8635 + "mwoauth": [ 8636 + "setuptools" 8637 + ], 8638 + "mwparserfromhell": [ 8639 + "setuptools" 8640 + ], 8641 + "mxnet": [ 8642 + "setuptools" 8643 + ], 8644 + "myfitnesspal": [ 8645 + "setuptools" 8646 + ], 8647 + "mygpoclient": [ 8648 + "setuptools" 774 8649 ], 775 8650 "myhome": [ 776 - "poetry-core" 8651 + "poetry-core", 8652 + "setuptools" 8653 + ], 8654 + "myjwt": [ 8655 + "setuptools" 8656 + ], 8657 + "mypy": [ 8658 + "setuptools" 777 8659 ], 778 8660 "mypy-boto3-builder": [ 779 - "poetry-core" 8661 + "poetry-core", 8662 + "setuptools" 8663 + ], 8664 + "mypy-boto3-cognito-idp": [ 8665 + "setuptools" 8666 + ], 8667 + "mypy-boto3-s3": [ 8668 + "setuptools" 8669 + ], 8670 + "mypy-extensions": [ 8671 + "setuptools" 8672 + ], 8673 + "mypy-protobuf": [ 8674 + "setuptools" 8675 + ], 8676 + "mysql-connector": [ 8677 + "setuptools" 8678 + ], 8679 + "mysqlclient": [ 8680 + "setuptools" 8681 + ], 8682 + "myst-docutils": [ 8683 + "flit-core", 8684 + "setuptools" 8685 + ], 8686 + "myst-nb": [ 8687 + "flit-core", 8688 + "flitBuildHook", 8689 + "setuptools" 780 8690 ], 781 8691 "myst-parser": [ 782 - "flit-core" 8692 + "flit-core", 8693 + "flitBuildHook", 8694 + "setuptools" 8695 + ], 8696 + "nad-receiver": [ 8697 + "setuptools" 8698 + ], 8699 + "nagiosplugin": [ 8700 + "setuptools" 8701 + ], 8702 + "name-that-hash": [ 8703 + "poetry-core", 8704 + "setuptools" 8705 + ], 8706 + "namedlist": [ 8707 + "setuptools" 8708 + ], 8709 + "nameparser": [ 8710 + "setuptools" 8711 + ], 8712 + "names": [ 8713 + "setuptools" 8714 + ], 8715 + "nampa": [ 8716 + "setuptools" 8717 + ], 8718 + "nanoleaf": [ 8719 + "setuptools" 8720 + ], 8721 + "nanomsg-python": [ 8722 + "setuptools" 8723 + ], 8724 + "nanotime": [ 8725 + "setuptools" 8726 + ], 8727 + "napalm": [ 8728 + "setuptools" 8729 + ], 8730 + "napalm-hp-procurve": [ 8731 + "setuptools" 8732 + ], 8733 + "napari": [ 8734 + "setuptools", 8735 + "setuptools-scm" 8736 + ], 8737 + "napari-console": [ 8738 + "setuptools", 8739 + "setuptools-scm" 8740 + ], 8741 + "napari-npe2": [ 8742 + "setuptools", 8743 + "setuptools-scm" 8744 + ], 8745 + "napari-plugin-engine": [ 8746 + "setuptools", 8747 + "setuptools-scm" 8748 + ], 8749 + "napari-svg": [ 8750 + "setuptools", 8751 + "setuptools-scm" 8752 + ], 8753 + "nats-py": [ 8754 + "setuptools" 783 8755 ], 784 8756 "nats-python": [ 785 - "poetry-core" 8757 + "poetry-core", 8758 + "setuptools" 8759 + ], 8760 + "natsort": [ 8761 + "setuptools" 8762 + ], 8763 + "naturalsort": [ 8764 + "setuptools" 786 8765 ], 787 8766 "nbclassic": [ 788 - "jupyter-packaging" 8767 + "jupyter-packaging", 8768 + "setuptools" 8769 + ], 8770 + "nbclient": [ 8771 + "setuptools" 8772 + ], 8773 + "nbconflux": [ 8774 + "setuptools" 8775 + ], 8776 + "nbconvert": [ 8777 + "setuptools" 8778 + ], 8779 + "nbdime": [ 8780 + "setuptools", 8781 + "setuptools-scm" 8782 + ], 8783 + "nbformat": [ 8784 + "flit-core", 8785 + "setuptools" 8786 + ], 8787 + "nbmerge": [ 8788 + "setuptools" 8789 + ], 8790 + "nbsmoke": [ 8791 + "setuptools" 8792 + ], 8793 + "nbsphinx": [ 8794 + "setuptools" 8795 + ], 8796 + "nbval": [ 8797 + "setuptools" 8798 + ], 8799 + "nbxmpp": [ 8800 + "setuptools" 8801 + ], 8802 + "ncclient": [ 8803 + "setuptools" 8804 + ], 8805 + "nclib": [ 8806 + "setuptools" 8807 + ], 8808 + "ndg-httpsclient": [ 8809 + "setuptools" 8810 + ], 8811 + "ndjson": [ 8812 + "setuptools" 8813 + ], 8814 + "ndms2-client": [ 8815 + "setuptools" 8816 + ], 8817 + "ndspy": [ 8818 + "setuptools" 8819 + ], 8820 + "ndtypes": [ 8821 + "setuptools" 8822 + ], 8823 + "nengo": [ 8824 + "setuptools" 8825 + ], 8826 + "neo": [ 8827 + "setuptools" 8828 + ], 8829 + "neo4j": [ 8830 + "setuptools" 8831 + ], 8832 + "nessclient": [ 8833 + "setuptools" 8834 + ], 8835 + "nest-asyncio": [ 8836 + "setuptools" 8837 + ], 8838 + "nested-lookup": [ 8839 + "setuptools" 8840 + ], 8841 + "nestedtext": [ 8842 + "setuptools" 789 8843 ], 790 8844 "net2grid": [ 791 - "poetry-core" 8845 + "poetry-core", 8846 + "setuptools" 8847 + ], 8848 + "netaddr": [ 8849 + "setuptools" 792 8850 ], 793 8851 "netcdf4": [ 794 - "cython" 8852 + "cython", 8853 + "setuptools" 795 8854 ], 796 8855 "netdata": [ 797 - "poetry-core" 8856 + "poetry-core", 8857 + "setuptools" 8858 + ], 8859 + "netdisco": [ 8860 + "setuptools" 8861 + ], 8862 + "netifaces": [ 8863 + "setuptools" 8864 + ], 8865 + "netio": [ 8866 + "setuptools" 8867 + ], 8868 + "netmap": [ 8869 + "setuptools" 8870 + ], 8871 + "netmiko": [ 8872 + "setuptools" 8873 + ], 8874 + "nettigo-air-monitor": [ 8875 + "setuptools" 798 8876 ], 799 8877 "netutils": [ 800 - "poetry-core" 8878 + "poetry-core", 8879 + "setuptools" 8880 + ], 8881 + "networkx": [ 8882 + "setuptools" 801 8883 ], 802 8884 "newversion": [ 803 - "poetry-core" 8885 + "poetry-core", 8886 + "setuptools" 8887 + ], 8888 + "nexia": [ 8889 + "setuptools" 8890 + ], 8891 + "nextcloudmonitor": [ 8892 + "setuptools" 8893 + ], 8894 + "nextcord": [ 8895 + "setuptools" 8896 + ], 8897 + "nextdns": [ 8898 + "setuptools" 804 8899 ], 805 8900 "nghttp2": [ 806 - "cython" 8901 + "cython", 8902 + "setuptools" 8903 + ], 8904 + "niaarm": [ 8905 + "poetry-core", 8906 + "setuptools" 8907 + ], 8908 + "niapy": [ 8909 + "setuptools" 8910 + ], 8911 + "nibabel": [ 8912 + "setuptools" 8913 + ], 8914 + "niko-home-control": [ 8915 + "setuptools" 8916 + ], 8917 + "nikola": [ 8918 + "setuptools" 8919 + ], 8920 + "nilearn": [ 8921 + "setuptools" 8922 + ], 8923 + "niluclient": [ 8924 + "setuptools" 8925 + ], 8926 + "nimfa": [ 8927 + "setuptools" 8928 + ], 8929 + "nine": [ 8930 + "setuptools" 8931 + ], 8932 + "nipy": [ 8933 + "setuptools" 807 8934 ], 808 8935 "nitime": [ 809 - "cython" 8936 + "cython", 8937 + "setuptools" 8938 + ], 8939 + "nitransforms": [ 8940 + "setuptools", 8941 + "setuptools-scm" 8942 + ], 8943 + "nix-kernel": [ 8944 + "setuptools" 8945 + ], 8946 + "nix-prefetch-github": [ 8947 + "setuptools" 810 8948 ], 811 8949 "nixpkgs": [ 812 - "pbr" 8950 + "pbr", 8951 + "setuptools" 8952 + ], 8953 + "nixpkgs-pytools": [ 8954 + "setuptools" 813 8955 ], 814 8956 "nkdfu": [ 815 - "flitBuildHook" 8957 + "flitBuildHook", 8958 + "setuptools" 8959 + ], 8960 + "nltk": [ 8961 + "setuptools" 8962 + ], 8963 + "nmapthon2": [ 8964 + "setuptools" 8965 + ], 8966 + "nocasedict": [ 8967 + "setuptools" 8968 + ], 8969 + "nocaselist": [ 8970 + "setuptools" 8971 + ], 8972 + "node-semver": [ 8973 + "setuptools" 8974 + ], 8975 + "nodeenv": [ 8976 + "setuptools" 8977 + ], 8978 + "nodepy-runtime": [ 8979 + "setuptools" 8980 + ], 8981 + "noise": [ 8982 + "setuptools" 8983 + ], 8984 + "noiseprotocol": [ 8985 + "setuptools" 8986 + ], 8987 + "nomadnet": [ 8988 + "setuptools" 8989 + ], 8990 + "normality": [ 8991 + "setuptools" 8992 + ], 8993 + "nose": [ 8994 + "setuptools" 8995 + ], 8996 + "nose-cov": [ 8997 + "setuptools" 8998 + ], 8999 + "nose-cprof": [ 9000 + "setuptools" 9001 + ], 9002 + "nose-exclude": [ 9003 + "setuptools" 9004 + ], 9005 + "nose-pattern-exclude": [ 9006 + "setuptools" 9007 + ], 9008 + "nose-randomly": [ 9009 + "setuptools" 9010 + ], 9011 + "nose-timer": [ 9012 + "setuptools" 9013 + ], 9014 + "nose-warnings-filters": [ 9015 + "setuptools" 9016 + ], 9017 + "nose2": [ 9018 + "setuptools" 9019 + ], 9020 + "nosejs": [ 9021 + "setuptools" 9022 + ], 9023 + "nosexcover": [ 9024 + "setuptools" 9025 + ], 9026 + "notebook": [ 9027 + "setuptools" 816 9028 ], 817 9029 "notebook-shim": [ 818 - "jupyter-packaging" 9030 + "jupyter-packaging", 9031 + "setuptools" 9032 + ], 9033 + "notedown": [ 9034 + "setuptools" 9035 + ], 9036 + "notifications-python-client": [ 9037 + "setuptools" 9038 + ], 9039 + "notify-events": [ 9040 + "setuptools" 819 9041 ], 820 9042 "notify-py": [ 821 - "poetry-core" 9043 + "poetry-core", 9044 + "setuptools" 9045 + ], 9046 + "notify2": [ 9047 + "setuptools" 9048 + ], 9049 + "notifymuch": [ 9050 + "setuptools" 9051 + ], 9052 + "notmuch": [ 9053 + "setuptools" 9054 + ], 9055 + "notmuch2": [ 9056 + "setuptools" 9057 + ], 9058 + "nototools": [ 9059 + "setuptools", 9060 + "setuptools-scm" 822 9061 ], 823 9062 "notus-scanner": [ 824 - "poetry-core" 9063 + "poetry-core", 9064 + "setuptools" 9065 + ], 9066 + "nplusone": [ 9067 + "setuptools" 9068 + ], 9069 + "npyscreen": [ 9070 + "setuptools" 9071 + ], 9072 + "nsapi": [ 9073 + "setuptools" 825 9074 ], 826 9075 "ntc-templates": [ 827 - "poetry-core" 9076 + "poetry-core", 9077 + "setuptools" 9078 + ], 9079 + "ntlm-auth": [ 9080 + "setuptools" 9081 + ], 9082 + "ntplib": [ 9083 + "setuptools" 9084 + ], 9085 + "nuitka": [ 9086 + "setuptools" 9087 + ], 9088 + "nulltype": [ 9089 + "setuptools" 9090 + ], 9091 + "num2words": [ 9092 + "setuptools" 9093 + ], 9094 + "numba": [ 9095 + "setuptools" 9096 + ], 9097 + "numba-scipy": [ 9098 + "setuptools" 9099 + ], 9100 + "numbawithcuda": [ 9101 + "setuptools" 828 9102 ], 829 9103 "numcodecs": [ 830 - "cython" 9104 + "cython", 9105 + "setuptools", 9106 + "setuptools-scm" 9107 + ], 9108 + "numdifftools": [ 9109 + "setuptools" 9110 + ], 9111 + "numericalunits": [ 9112 + "setuptools" 9113 + ], 9114 + "numexpr": [ 9115 + "setuptools" 831 9116 ], 832 9117 "numpy": [ 833 - "cython" 9118 + "cython", 9119 + "setuptools" 834 9120 ], 835 9121 "numpy-stl": [ 836 - "cython" 9122 + "cython", 9123 + "setuptools" 9124 + ], 9125 + "numpydoc": [ 9126 + "setuptools" 9127 + ], 9128 + "numpyro": [ 9129 + "setuptools" 9130 + ], 9131 + "nunavut": [ 9132 + "setuptools" 9133 + ], 9134 + "nutils": [ 9135 + "setuptools" 9136 + ], 9137 + "nvchecker": [ 9138 + "setuptools" 9139 + ], 9140 + "nvidia-ml-py3": [ 9141 + "setuptools", 9142 + "setuptools-scm" 9143 + ], 9144 + "nwdiag": [ 9145 + "setuptools" 9146 + ], 9147 + "nxt-python": [ 9148 + "setuptools" 9149 + ], 9150 + "oasatelematics": [ 9151 + "setuptools" 9152 + ], 9153 + "oath": [ 9154 + "setuptools" 9155 + ], 9156 + "oauth": [ 9157 + "setuptools" 9158 + ], 9159 + "oauth2": [ 9160 + "setuptools" 9161 + ], 9162 + "oauth2client": [ 9163 + "setuptools" 9164 + ], 9165 + "oauthenticator": [ 9166 + "setuptools" 9167 + ], 9168 + "oauthlib": [ 9169 + "setuptools" 9170 + ], 9171 + "objax": [ 9172 + "setuptools" 9173 + ], 9174 + "objgraph": [ 9175 + "setuptools" 9176 + ], 9177 + "obspy": [ 9178 + "setuptools" 9179 + ], 9180 + "oci": [ 9181 + "setuptools" 9182 + ], 9183 + "ocifs": [ 9184 + "setuptools" 9185 + ], 9186 + "ocrmypdf": [ 9187 + "setuptools", 9188 + "setuptools-scm" 9189 + ], 9190 + "od": [ 9191 + "setuptools" 9192 + ], 9193 + "odfpy": [ 9194 + "setuptools" 9195 + ], 9196 + "oemthermostat": [ 9197 + "setuptools", 9198 + "setuptools-scm" 9199 + ], 9200 + "offtrac": [ 9201 + "setuptools" 9202 + ], 9203 + "ofxclient": [ 9204 + "setuptools" 9205 + ], 9206 + "ofxhome": [ 9207 + "setuptools" 9208 + ], 9209 + "ofxparse": [ 9210 + "setuptools" 9211 + ], 9212 + "ofxtools": [ 9213 + "setuptools" 9214 + ], 9215 + "olefile": [ 9216 + "setuptools" 9217 + ], 9218 + "oletools": [ 9219 + "setuptools" 9220 + ], 9221 + "omegaconf": [ 9222 + "setuptools" 837 9223 ], 838 9224 "omnikinverter": [ 839 - "poetry-core" 9225 + "poetry-core", 9226 + "setuptools" 9227 + ], 9228 + "omnilogic": [ 9229 + "setuptools" 9230 + ], 9231 + "ondilo": [ 9232 + "setuptools" 9233 + ], 9234 + "onetimepad": [ 9235 + "setuptools" 9236 + ], 9237 + "onetimepass": [ 9238 + "setuptools" 9239 + ], 9240 + "onkyo-eiscp": [ 9241 + "setuptools" 9242 + ], 9243 + "online-judge-api-client": [ 9244 + "setuptools" 9245 + ], 9246 + "online-judge-tools": [ 9247 + "setuptools" 9248 + ], 9249 + "onlykey-solo-python": [ 9250 + "setuptools" 9251 + ], 9252 + "onnx": [ 9253 + "setuptools" 9254 + ], 9255 + "onvif-zeep-async": [ 9256 + "setuptools" 9257 + ], 9258 + "oocsi": [ 9259 + "setuptools" 9260 + ], 9261 + "open-garage": [ 9262 + "setuptools" 840 9263 ], 841 9264 "open-meteo": [ 842 - "poetry-core" 9265 + "poetry-core", 9266 + "setuptools" 9267 + ], 9268 + "openai": [ 9269 + "setuptools" 9270 + ], 9271 + "openant": [ 9272 + "setuptools" 9273 + ], 9274 + "openapi-core": [ 9275 + "setuptools" 843 9276 ], 844 9277 "openapi-schema-validator": [ 845 - "poetry-core" 9278 + "poetry-core", 9279 + "setuptools" 846 9280 ], 847 9281 "openapi-spec-validator": [ 848 - "poetry-core" 9282 + "poetry-core", 9283 + "setuptools" 9284 + ], 9285 + "openbabel-bindings": [ 9286 + "setuptools" 9287 + ], 9288 + "opencv4": [ 9289 + "setuptools" 9290 + ], 9291 + "openerz-api": [ 9292 + "setuptools" 849 9293 ], 850 9294 "openevsewifi": [ 851 - "poetry-core" 9295 + "poetry-core", 9296 + "setuptools" 9297 + ], 9298 + "openhomedevice": [ 9299 + "setuptools" 9300 + ], 9301 + "openidc-client": [ 9302 + "setuptools" 9303 + ], 9304 + "openpaperwork-core": [ 9305 + "setuptools" 9306 + ], 9307 + "openpaperwork-gtk": [ 9308 + "setuptools" 9309 + ], 9310 + "openpyxl": [ 9311 + "setuptools" 9312 + ], 9313 + "openrazer": [ 9314 + "setuptools" 9315 + ], 9316 + "openrazer-daemon": [ 9317 + "setuptools" 9318 + ], 9319 + "openrouteservice": [ 9320 + "setuptools" 9321 + ], 9322 + "opensensemap-api": [ 9323 + "setuptools" 9324 + ], 9325 + "opensfm": [ 9326 + "setuptools" 9327 + ], 9328 + "openshift": [ 9329 + "setuptools" 9330 + ], 9331 + "opensimplex": [ 9332 + "setuptools" 852 9333 ], 853 9334 "openstackdocstheme": [ 854 - "pbr" 9335 + "pbr", 9336 + "setuptools" 855 9337 ], 856 9338 "openstacksdk": [ 857 - "pbr" 9339 + "pbr", 9340 + "setuptools" 858 9341 ], 859 9342 "openstep-plist": [ 860 - "cython" 9343 + "cython", 9344 + "setuptools", 9345 + "setuptools-scm" 9346 + ], 9347 + "opentelemetry-api": [ 9348 + { 9349 + "buildSystem": "setuptools", 9350 + "until": "1.13.0" 9351 + }, 9352 + { 9353 + "buildSystem": "hatchling", 9354 + "from": "1.13.0" 9355 + } 9356 + ], 9357 + "opentelemetry-exporter-otlp-proto-http": [ 9358 + { 9359 + "buildSystem": "setuptools", 9360 + "until": "0.34b0" 9361 + }, 9362 + { 9363 + "buildSystem": "hatchling", 9364 + "from": "0.34b0" 9365 + } 9366 + ], 9367 + "opentelemetry-instrumentation": [ 9368 + { 9369 + "buildSystem": "setuptools", 9370 + "until": "0.34b0" 9371 + }, 9372 + { 9373 + "buildSystem": "hatchling", 9374 + "from": "0.34b0" 9375 + } 9376 + ], 9377 + "opentelemetry-instrumentation-asyncpg": [ 9378 + { 9379 + "buildSystem": "setuptools", 9380 + "until": "0.34b0" 9381 + }, 9382 + { 9383 + "buildSystem": "hatchling", 9384 + "from": "0.34b0" 9385 + } 9386 + ], 9387 + "opentelemetry-instrumentation-httpx": [ 9388 + { 9389 + "buildSystem": "setuptools", 9390 + "until": "0.34b0" 9391 + }, 9392 + { 9393 + "buildSystem": "hatchling", 9394 + "from": "0.34b0" 9395 + } 9396 + ], 9397 + "opentelemetry-proto": [ 9398 + { 9399 + "buildSystem": "setuptools", 9400 + "until": "1.13.0" 9401 + }, 9402 + { 9403 + "buildSystem": "hatchling", 9404 + "from": "1.13.0" 9405 + } 9406 + ], 9407 + "opentelemetry-sdk": [ 9408 + { 9409 + "buildSystem": "setuptools", 9410 + "until": "1.13.0" 9411 + }, 9412 + { 9413 + "buildSystem": "hatchling", 9414 + "from": "1.13.0" 9415 + } 9416 + ], 9417 + "opentelemetry-semantic-conventions": [ 9418 + { 9419 + "buildSystem": "setuptools", 9420 + "until": "0.34b0" 9421 + }, 9422 + { 9423 + "buildSystem": "hatchling", 9424 + "from": "0.33b0" 9425 + } 9426 + ], 9427 + "opentimestamps": [ 9428 + "setuptools" 9429 + ], 9430 + "opentracing": [ 9431 + "setuptools" 861 9432 ], 862 9433 "openvino": [ 863 9434 "cython" 864 9435 ], 9436 + "openwebifpy": [ 9437 + "setuptools" 9438 + ], 9439 + "openwrt-luci-rpc": [ 9440 + "setuptools" 9441 + ], 9442 + "openwrt-ubus-rpc": [ 9443 + "setuptools" 9444 + ], 9445 + "opsdroid-get-image-size": [ 9446 + "setuptools" 9447 + ], 9448 + "opt-einsum": [ 9449 + "setuptools" 9450 + ], 9451 + "optax": [ 9452 + "setuptools" 9453 + ], 9454 + "opuslib": [ 9455 + "setuptools" 9456 + ], 865 9457 "ordered-set": [ 866 - "flit-core" 9458 + "flit-core", 9459 + "setuptools" 9460 + ], 9461 + "orderedmultidict": [ 9462 + "setuptools" 9463 + ], 9464 + "orjson": [ 9465 + "setuptools" 9466 + ], 9467 + "orm": [ 9468 + "setuptools" 867 9469 ], 868 9470 "ormar": [ 869 - "poetry-core" 9471 + "poetry-core", 9472 + "setuptools" 9473 + ], 9474 + "ortools": [ 9475 + "setuptools" 9476 + ], 9477 + "orvibo": [ 9478 + "setuptools" 870 9479 ], 871 9480 "os-service-types": [ 872 - "pbr" 9481 + "pbr", 9482 + "setuptools" 9483 + ], 9484 + "osc": [ 9485 + "setuptools" 873 9486 ], 874 9487 "osc-lib": [ 875 - "pbr" 9488 + "pbr", 9489 + "setuptools" 9490 + ], 9491 + "oscpy": [ 9492 + "setuptools" 9493 + ], 9494 + "oscrypto": [ 9495 + "setuptools" 9496 + ], 9497 + "oset": [ 9498 + "setuptools" 876 9499 ], 877 9500 "oslo-concurrency": [ 878 - "pbr" 9501 + "pbr", 9502 + "setuptools" 879 9503 ], 880 9504 "oslo-config": [ 881 - "pbr" 9505 + "pbr", 9506 + "setuptools" 882 9507 ], 883 9508 "oslo-context": [ 884 - "pbr" 9509 + "pbr", 9510 + "setuptools" 885 9511 ], 886 9512 "oslo-db": [ 887 - "pbr" 9513 + "pbr", 9514 + "setuptools" 888 9515 ], 889 9516 "oslo-i18n": [ 890 - "pbr" 9517 + "pbr", 9518 + "setuptools" 891 9519 ], 892 9520 "oslo-log": [ 893 - "pbr" 9521 + "pbr", 9522 + "setuptools" 894 9523 ], 895 9524 "oslo-serialization": [ 896 - "pbr" 9525 + "pbr", 9526 + "setuptools" 897 9527 ], 898 9528 "oslo-utils": [ 899 - "pbr" 9529 + "pbr", 9530 + "setuptools" 900 9531 ], 901 9532 "oslotest": [ 902 - "pbr" 9533 + "pbr", 9534 + "setuptools" 9535 + ], 9536 + "osmnx": [ 9537 + "setuptools" 9538 + ], 9539 + "osmpythontools": [ 9540 + "setuptools" 9541 + ], 9542 + "ospd": [ 9543 + "setuptools" 9544 + ], 9545 + "osqp": [ 9546 + "setuptools", 9547 + "setuptools-scm" 9548 + ], 9549 + "oss2": [ 9550 + "setuptools" 9551 + ], 9552 + "ossfs": [ 9553 + "setuptools" 9554 + ], 9555 + "outcome": [ 9556 + "setuptools" 9557 + ], 9558 + "overly": [ 9559 + "setuptools" 9560 + ], 9561 + "ovh": [ 9562 + "setuptools" 9563 + ], 9564 + "ovmfvartool": [ 9565 + "setuptools" 9566 + ], 9567 + "ovoenergy": [ 9568 + "setuptools" 9569 + ], 9570 + "owslib": [ 9571 + "setuptools" 9572 + ], 9573 + "oyaml": [ 9574 + "setuptools" 903 9575 ], 904 9576 "p1monitor": [ 905 - "poetry-core" 9577 + "poetry-core", 9578 + "setuptools" 9579 + ], 9580 + "pa-ringbuffer": [ 9581 + "setuptools" 9582 + ], 9583 + "packageurl-python": [ 9584 + "setuptools" 9585 + ], 9586 + "packaging": [ 9587 + "setuptools" 9588 + ], 9589 + "packbits": [ 9590 + "setuptools" 9591 + ], 9592 + "packet-python": [ 9593 + "setuptools" 9594 + ], 9595 + "pad4pi": [ 9596 + "setuptools" 906 9597 ], 907 9598 "paddle-client": [ 908 9599 "poetry" 909 9600 ], 9601 + "pafy": [ 9602 + "setuptools" 9603 + ], 9604 + "pagelabels": [ 9605 + "setuptools" 9606 + ], 9607 + "paho-mqtt": [ 9608 + "setuptools" 9609 + ], 910 9610 "palace": [ 911 - "cython" 9611 + "cython", 9612 + "setuptools" 9613 + ], 9614 + "palettable": [ 9615 + "setuptools" 9616 + ], 9617 + "pallets-sphinx-themes": [ 9618 + "setuptools" 9619 + ], 9620 + "pam": [ 9621 + "setuptools" 9622 + ], 9623 + "pamela": [ 9624 + "setuptools" 9625 + ], 9626 + "pamqp": [ 9627 + "setuptools" 9628 + ], 9629 + "panacotta": [ 9630 + "setuptools" 9631 + ], 9632 + "panasonic-viera": [ 9633 + "setuptools" 912 9634 ], 913 9635 "pandas": [ 914 - "cython" 9636 + "cython", 9637 + "setuptools" 9638 + ], 9639 + "pandas-datareader": [ 9640 + "setuptools" 9641 + ], 9642 + "pandas-stubs": [ 9643 + "setuptools" 9644 + ], 9645 + "pandoc-attributes": [ 9646 + "setuptools" 9647 + ], 9648 + "pandoc-xnos": [ 9649 + "setuptools" 9650 + ], 9651 + "pandocfilters": [ 9652 + "setuptools" 9653 + ], 9654 + "panel": [ 9655 + "setuptools" 9656 + ], 9657 + "panflute": [ 9658 + "setuptools" 9659 + ], 9660 + "papermill": [ 9661 + "setuptools" 9662 + ], 9663 + "paperwork-backend": [ 9664 + "setuptools" 9665 + ], 9666 + "paperwork-shell": [ 9667 + "setuptools" 9668 + ], 9669 + "papis": [ 9670 + "setuptools" 9671 + ], 9672 + "papis-python-rofi": [ 9673 + "setuptools" 9674 + ], 9675 + "param": [ 9676 + "setuptools" 9677 + ], 9678 + "parameter-expansion-patched": [ 9679 + "setuptools", 9680 + "setuptools-scm" 9681 + ], 9682 + "parameterized": [ 9683 + "setuptools" 9684 + ], 9685 + "paramiko": [ 9686 + "setuptools" 9687 + ], 9688 + "paramz": [ 9689 + "setuptools" 9690 + ], 9691 + "paranoid-crypto": [ 9692 + "setuptools" 9693 + ], 9694 + "parfive": [ 9695 + "setuptools", 9696 + "setuptools-scm" 9697 + ], 9698 + "parquet": [ 9699 + "setuptools" 9700 + ], 9701 + "parse": [ 9702 + "setuptools" 9703 + ], 9704 + "parse-type": [ 9705 + "setuptools" 9706 + ], 9707 + "parsedatetime": [ 9708 + "setuptools" 9709 + ], 9710 + "parsedmarc": [ 9711 + "setuptools" 9712 + ], 9713 + "parsel": [ 9714 + "setuptools" 9715 + ], 9716 + "parsimonious": [ 9717 + "setuptools" 9718 + ], 9719 + "parsita": [ 9720 + "poetry" 9721 + ], 9722 + "parsley": [ 9723 + "setuptools" 9724 + ], 9725 + "parso": [ 9726 + "setuptools" 9727 + ], 9728 + "parsy": [ 9729 + "setuptools" 9730 + ], 9731 + "partd": [ 9732 + "setuptools" 9733 + ], 9734 + "particle": [ 9735 + "setuptools", 9736 + "setuptools-scm" 9737 + ], 9738 + "parts": [ 9739 + "setuptools" 9740 + ], 9741 + "parver": [ 9742 + "setuptools" 9743 + ], 9744 + "passlib": [ 9745 + "setuptools" 9746 + ], 9747 + "paste": [ 9748 + "setuptools" 9749 + ], 9750 + "pastedeploy": [ 9751 + "setuptools" 915 9752 ], 916 9753 "pastel": [ 917 - "poetry-core" 9754 + "poetry-core", 9755 + "setuptools" 9756 + ], 9757 + "pastescript": [ 9758 + "setuptools" 9759 + ], 9760 + "patch": [ 9761 + "setuptools" 9762 + ], 9763 + "patch-ng": [ 9764 + "setuptools" 9765 + ], 9766 + "path": [ 9767 + "setuptools", 9768 + "setuptools-scm" 9769 + ], 9770 + "path-and-address": [ 9771 + "setuptools" 918 9772 ], 919 9773 "pathable": [ 920 - "poetry-core" 9774 + "poetry-core", 9775 + "setuptools" 9776 + ], 9777 + "pathlib2": [ 9778 + "setuptools" 9779 + ], 9780 + "pathos": [ 9781 + "setuptools" 9782 + ], 9783 + "pathpy": [ 9784 + "setuptools", 9785 + "setuptools-scm" 9786 + ], 9787 + "pathspec": [ 9788 + "setuptools" 9789 + ], 9790 + "pathtools": [ 9791 + "setuptools" 9792 + ], 9793 + "pathvalidate": [ 9794 + "setuptools" 9795 + ], 9796 + "pathy": [ 9797 + "setuptools" 9798 + ], 9799 + "patiencediff": [ 9800 + "setuptools" 9801 + ], 9802 + "patool": [ 9803 + "setuptools" 9804 + ], 9805 + "patrowl4py": [ 9806 + "setuptools" 9807 + ], 9808 + "patsy": [ 9809 + "setuptools" 9810 + ], 9811 + "paver": [ 9812 + "setuptools" 9813 + ], 9814 + "paypalrestsdk": [ 9815 + "setuptools" 9816 + ], 9817 + "pbkdf2": [ 9818 + "setuptools" 9819 + ], 9820 + "pbr": [ 9821 + "setuptools" 9822 + ], 9823 + "pc-ble-driver-py": [ 9824 + "setuptools" 9825 + ], 9826 + "pcapy-ng": [ 9827 + "cython", 9828 + "setuptools" 9829 + ], 9830 + "pcodedmp": [ 9831 + "setuptools" 9832 + ], 9833 + "pcpp": [ 9834 + "setuptools" 9835 + ], 9836 + "pdf2image": [ 9837 + "setuptools" 9838 + ], 9839 + "pdfkit": [ 9840 + "setuptools" 9841 + ], 9842 + "pdfminer": [ 9843 + "setuptools" 9844 + ], 9845 + "pdfminer-six": [ 9846 + "setuptools" 9847 + ], 9848 + "pdfposter": [ 9849 + "setuptools" 9850 + ], 9851 + "pdfrw": [ 9852 + "setuptools" 9853 + ], 9854 + "pdftotext": [ 9855 + "setuptools" 9856 + ], 9857 + "pdfx": [ 9858 + "setuptools" 9859 + ], 9860 + "pdm-pep517": [ 9861 + "setuptools" 9862 + ], 9863 + "pdoc": [ 9864 + "setuptools" 9865 + ], 9866 + "pdoc3": [ 9867 + "setuptools", 9868 + "setuptools-scm" 9869 + ], 9870 + "pdunehd": [ 9871 + "setuptools" 9872 + ], 9873 + "peaqevcore": [ 9874 + "setuptools" 9875 + ], 9876 + "pebble": [ 9877 + "setuptools" 9878 + ], 9879 + "pecan": [ 9880 + "setuptools" 9881 + ], 9882 + "peco": [ 9883 + "setuptools" 921 9884 ], 922 9885 "peewee": [ 923 - "cython" 9886 + "cython", 9887 + "setuptools" 9888 + ], 9889 + "pefile": [ 9890 + "setuptools", 9891 + "setuptools-scm" 9892 + ], 9893 + "pelican": [ 9894 + "setuptools" 9895 + ], 9896 + "pencompy": [ 9897 + "setuptools" 924 9898 ], 925 9899 "pendulum": [ 926 - "poetry-core" 9900 + "poetry-core", 9901 + "setuptools" 9902 + ], 9903 + "pep257": [ 9904 + "setuptools" 9905 + ], 9906 + "pep440": [ 9907 + "flit-core", 9908 + "flitBuildHook", 9909 + "setuptools" 927 9910 ], 928 9911 "pep440-version-utils": [ 929 9912 "poetry" 930 9913 ], 931 9914 "pep517": [ 932 - "flit-core" 9915 + "flit-core", 9916 + "setuptools" 9917 + ], 9918 + "pep8": [ 9919 + "setuptools" 9920 + ], 9921 + "pep8-naming": [ 9922 + "setuptools" 9923 + ], 9924 + "peppercorn": [ 9925 + "setuptools" 9926 + ], 9927 + "percol": [ 9928 + "setuptools" 9929 + ], 9930 + "periodictable": [ 9931 + "setuptools" 9932 + ], 9933 + "persim": [ 9934 + "setuptools" 9935 + ], 9936 + "persistent": [ 9937 + "setuptools" 9938 + ], 9939 + "persisting-theory": [ 9940 + "setuptools" 9941 + ], 9942 + "pescea": [ 9943 + "setuptools" 933 9944 ], 934 9945 "pex": [ 935 9946 "flit-core", 936 - "flitBuildHook" 9947 + "flitBuildHook", 9948 + "setuptools" 9949 + ], 9950 + "pexif": [ 9951 + "setuptools" 9952 + ], 9953 + "pexpect": [ 9954 + "setuptools" 9955 + ], 9956 + "pg8000": [ 9957 + "setuptools" 9958 + ], 9959 + "pgcli": [ 9960 + "setuptools" 9961 + ], 9962 + "pglast": [ 9963 + "setuptools" 9964 + ], 9965 + "pgpdump": [ 9966 + "setuptools" 9967 + ], 9968 + "pgpy": [ 9969 + "setuptools" 9970 + ], 9971 + "pgsanity": [ 9972 + "setuptools" 9973 + ], 9974 + "pgspecial": [ 9975 + "setuptools" 9976 + ], 9977 + "phe": [ 9978 + "setuptools" 9979 + ], 9980 + "phik": [ 9981 + "setuptools" 9982 + ], 9983 + "phone-modem": [ 9984 + "setuptools" 9985 + ], 9986 + "phonemizer": [ 9987 + "setuptools" 9988 + ], 9989 + "phonenumbers": [ 9990 + "setuptools" 9991 + ], 9992 + "phonopy": [ 9993 + "setuptools" 9994 + ], 9995 + "phpserialize": [ 9996 + "setuptools" 9997 + ], 9998 + "phx-class-registry": [ 9999 + "setuptools" 10000 + ], 10001 + "pi1wire": [ 10002 + "setuptools" 10003 + ], 10004 + "piccata": [ 10005 + "setuptools" 10006 + ], 10007 + "piccolo-theme": [ 10008 + "setuptools" 10009 + ], 10010 + "pick": [ 10011 + "poetry-core", 10012 + "setuptools" 10013 + ], 10014 + "pickleshare": [ 10015 + "setuptools" 10016 + ], 10017 + "picobox": [ 10018 + "setuptools", 10019 + "setuptools-scm" 10020 + ], 10021 + "picos": [ 10022 + "setuptools" 10023 + ], 10024 + "pid": [ 10025 + "setuptools" 10026 + ], 10027 + "piexif": [ 10028 + "setuptools" 10029 + ], 10030 + "pijuice": [ 10031 + "setuptools" 10032 + ], 10033 + "pika": [ 10034 + "setuptools" 10035 + ], 10036 + "pika-pool": [ 10037 + "setuptools" 10038 + ], 10039 + "pikepdf": [ 10040 + "setuptools", 10041 + "setuptools-scm" 10042 + ], 10043 + "pilkit": [ 10044 + "setuptools" 10045 + ], 10046 + "pillow": [ 10047 + "setuptools" 10048 + ], 10049 + "pillow-simd": [ 10050 + "setuptools" 10051 + ], 10052 + "pillowfight": [ 10053 + "setuptools" 10054 + ], 10055 + "pims": [ 10056 + "setuptools" 10057 + ], 10058 + "pinboard": [ 10059 + "setuptools" 10060 + ], 10061 + "pint": [ 10062 + "setuptools", 10063 + "setuptools-scm" 10064 + ], 10065 + "pint-pandas": [ 10066 + "setuptools", 10067 + "setuptools-scm" 10068 + ], 10069 + "pip": [ 10070 + "setuptools" 10071 + ], 10072 + "pip-api": [ 10073 + "setuptools" 10074 + ], 10075 + "pip-requirements-parser": [ 10076 + "setuptools", 10077 + "setuptools-scm" 10078 + ], 10079 + "pip-tools": [ 10080 + "setuptools", 10081 + "setuptools-scm" 10082 + ], 10083 + "pipdate": [ 10084 + "setuptools" 10085 + ], 10086 + "pipdeptree": [ 10087 + "hatchling", 10088 + "setuptools" 937 10089 ], 938 10090 "pipenv-poetry-migrate": [ 939 - "poetry" 10091 + "poetry", 10092 + "setuptools" 10093 + ], 10094 + "pipx": [ 10095 + "hatchling", 10096 + "setuptools" 10097 + ], 10098 + "pivy": [ 10099 + "setuptools" 10100 + ], 10101 + "pixcat": [ 10102 + "setuptools" 940 10103 ], 941 10104 "pixelmatch": [ 942 - "poetry-core" 10105 + "poetry-core", 10106 + "setuptools" 10107 + ], 10108 + "pkce": [ 10109 + "setuptools" 943 10110 ], 944 10111 "pkgconfig": [ 945 - "poetry-core" 10112 + "poetry-core", 10113 + "setuptools" 10114 + ], 10115 + "pkginfo": [ 10116 + "setuptools" 10117 + ], 10118 + "pkginfo2": [ 10119 + "setuptools" 10120 + ], 10121 + "pkgutil-resolve-name": [ 10122 + "flit-core" 10123 + ], 10124 + "pkutils": [ 10125 + "setuptools" 10126 + ], 10127 + "plac": [ 10128 + "setuptools" 10129 + ], 10130 + "plaid-python": [ 10131 + "setuptools" 10132 + ], 10133 + "plantuml": [ 10134 + "setuptools" 10135 + ], 10136 + "plantuml-markdown": [ 10137 + "setuptools" 10138 + ], 10139 + "plaster": [ 10140 + "setuptools" 10141 + ], 10142 + "plaster-pastedeploy": [ 10143 + "setuptools" 10144 + ], 10145 + "platformdirs": [ 10146 + "hatch-vcs", 10147 + "hatchling", 10148 + "setuptools", 10149 + "setuptools-scm" 10150 + ], 10151 + "playsound": [ 10152 + "setuptools" 10153 + ], 10154 + "plexapi": [ 10155 + "setuptools" 10156 + ], 10157 + "plexauth": [ 10158 + "setuptools" 10159 + ], 10160 + "plexwebsocket": [ 10161 + "setuptools" 10162 + ], 10163 + "plone-testing": [ 10164 + "setuptools" 10165 + ], 10166 + "plotly": [ 10167 + "setuptools" 10168 + ], 10169 + "plotnine": [ 10170 + "setuptools" 10171 + ], 10172 + "pluggy": [ 10173 + "setuptools", 10174 + "setuptools-scm" 10175 + ], 10176 + "pluginbase": [ 10177 + "setuptools" 10178 + ], 10179 + "plugincode": [ 10180 + "setuptools", 10181 + "setuptools-scm" 10182 + ], 10183 + "plugnplay": [ 10184 + "setuptools" 10185 + ], 10186 + "plugwise": [ 10187 + "setuptools" 10188 + ], 10189 + "plum-py": [ 10190 + "setuptools" 10191 + ], 10192 + "plumbum": [ 10193 + "setuptools", 10194 + "setuptools-scm" 946 10195 ], 947 10196 "plux": [ 948 - "pytest-runner" 10197 + "pytest-runner", 10198 + "setuptools" 949 10199 ], 950 - "poetry": [ 951 - "poetry-core" 10200 + "ply": [ 10201 + "setuptools" 10202 + ], 10203 + "plyer": [ 10204 + "setuptools" 10205 + ], 10206 + "plyfile": [ 10207 + "setuptools" 10208 + ], 10209 + "plyplus": [ 10210 + "setuptools" 10211 + ], 10212 + "plyvel": [ 10213 + "setuptools" 10214 + ], 10215 + "pmsensor": [ 10216 + "setuptools" 10217 + ], 10218 + "pmw": [ 10219 + "setuptools" 10220 + ], 10221 + "pocket": [ 10222 + "setuptools" 10223 + ], 10224 + "podcastparser": [ 10225 + "setuptools" 10226 + ], 10227 + "podcats": [ 10228 + "setuptools" 952 10229 ], 953 10230 "poetry-dynamic-versioning": [ 10231 + "poetry-core", 10232 + "setuptools" 10233 + ], 10234 + "poetry-plugin-export": [ 10235 + "poetry", 954 10236 "poetry-core" 10237 + ], 10238 + "poetry-semver": [ 10239 + "setuptools" 955 10240 ], 956 10241 "poetry2conda": [ 957 - "poetry" 10242 + "poetry", 10243 + "setuptools" 10244 + ], 10245 + "poezio": [ 10246 + "setuptools" 10247 + ], 10248 + "polarizationsolver": [ 10249 + "setuptools" 10250 + ], 10251 + "polib": [ 10252 + "setuptools" 10253 + ], 10254 + "policy-sentry": [ 10255 + "setuptools" 10256 + ], 10257 + "policyuniverse": [ 10258 + "setuptools" 10259 + ], 10260 + "polyline": [ 10261 + "setuptools" 958 10262 ], 959 10263 "pomegranate": [ 960 - "cython" 10264 + "cython", 10265 + "setuptools" 961 10266 ], 962 10267 "pontos": [ 963 - "poetry-core" 10268 + "poetry-core", 10269 + "setuptools" 10270 + ], 10271 + "pony": [ 10272 + "setuptools" 10273 + ], 10274 + "ponywhoosh": [ 10275 + "setuptools" 10276 + ], 10277 + "pooch": [ 10278 + "setuptools", 10279 + "setuptools-scm" 10280 + ], 10281 + "pook": [ 10282 + "setuptools" 10283 + ], 10284 + "poolsense": [ 10285 + "setuptools" 10286 + ], 10287 + "poppler-qt5": [ 10288 + "setuptools" 10289 + ], 10290 + "portalocker": [ 10291 + "setuptools" 10292 + ], 10293 + "portend": [ 10294 + "setuptools", 10295 + "setuptools-scm" 10296 + ], 10297 + "portpicker": [ 10298 + "setuptools" 10299 + ], 10300 + "posix-ipc": [ 10301 + "setuptools" 964 10302 ], 965 10303 "pot": [ 966 - "cython" 10304 + "cython", 10305 + "setuptools" 10306 + ], 10307 + "potentials": [ 10308 + "setuptools" 10309 + ], 10310 + "potr": [ 10311 + "setuptools" 10312 + ], 10313 + "power": [ 10314 + "setuptools" 10315 + ], 10316 + "powerline": [ 10317 + "setuptools" 10318 + ], 10319 + "powerline-mem-segment": [ 10320 + "setuptools" 10321 + ], 10322 + "powerlinememsegment": [ 10323 + "setuptools" 10324 + ], 10325 + "pox": [ 10326 + "setuptools" 10327 + ], 10328 + "poyo": [ 10329 + "setuptools" 10330 + ], 10331 + "ppdeep": [ 10332 + "setuptools" 10333 + ], 10334 + "ppft": [ 10335 + "setuptools" 967 10336 ], 968 10337 "pplpy": [ 969 - "cython" 10338 + "cython", 10339 + "setuptools" 10340 + ], 10341 + "pprintpp": [ 10342 + "setuptools" 10343 + ], 10344 + "pproxy": [ 10345 + "setuptools" 10346 + ], 10347 + "ppscore": [ 10348 + "setuptools" 10349 + ], 10350 + "pq": [ 10351 + "setuptools" 10352 + ], 10353 + "prance": [ 10354 + "setuptools", 10355 + "setuptools-scm" 10356 + ], 10357 + "praw": [ 10358 + "setuptools" 10359 + ], 10360 + "prawcore": [ 10361 + "setuptools" 10362 + ], 10363 + "prayer-times-calculator": [ 10364 + "setuptools" 10365 + ], 10366 + "pre-commit-hooks": [ 10367 + "setuptools" 10368 + ], 10369 + "precis-i18n": [ 10370 + "setuptools" 10371 + ], 10372 + "prefixed": [ 10373 + "setuptools" 10374 + ], 10375 + "preggy": [ 10376 + "setuptools" 10377 + ], 10378 + "premailer": [ 10379 + "setuptools" 970 10380 ], 971 10381 "preprocess-cancellation": [ 972 - "poetry-core" 10382 + "poetry-core", 10383 + "setuptools" 973 10384 ], 974 10385 "preshed": [ 975 - "cython" 10386 + "cython", 10387 + "setuptools" 10388 + ], 10389 + "pretend": [ 10390 + "setuptools" 10391 + ], 10392 + "prettytable": [ 10393 + "setuptools", 10394 + "setuptools-scm" 976 10395 ], 977 10396 "primecountpy": [ 978 - "cython" 10397 + "cython", 10398 + "setuptools" 979 10399 ], 980 10400 "primer3": [ 981 - "cython" 10401 + "cython", 10402 + "setuptools" 10403 + ], 10404 + "priority": [ 10405 + "setuptools" 10406 + ], 10407 + "prison": [ 10408 + "setuptools" 10409 + ], 10410 + "privacyidea-ldap-proxy": [ 10411 + "setuptools" 10412 + ], 10413 + "proboscis": [ 10414 + "setuptools" 10415 + ], 10416 + "process-tests": [ 10417 + "setuptools" 10418 + ], 10419 + "proglog": [ 10420 + "setuptools" 10421 + ], 10422 + "progress": [ 10423 + "setuptools" 10424 + ], 10425 + "progressbar": [ 10426 + "setuptools" 10427 + ], 10428 + "progressbar2": [ 10429 + "setuptools" 10430 + ], 10431 + "progressbar33": [ 10432 + "setuptools" 10433 + ], 10434 + "prometheus-client": [ 10435 + "setuptools" 982 10436 ], 983 10437 "prometheus-fastapi-instrumentator": [ 984 10438 "poetry" 985 10439 ], 10440 + "prometheus-flask-exporter": [ 10441 + "setuptools" 10442 + ], 10443 + "promise": [ 10444 + "setuptools" 10445 + ], 10446 + "prompt-toolkit": [ 10447 + "setuptools" 10448 + ], 10449 + "property-manager": [ 10450 + "setuptools" 10451 + ], 986 10452 "prospector": [ 987 10453 "poetry-core" 988 10454 ], 10455 + "protego": [ 10456 + "setuptools" 10457 + ], 10458 + "proto-plus": [ 10459 + "setuptools" 10460 + ], 10461 + "protobuf": [ 10462 + "setuptools" 10463 + ], 10464 + "protobuf3-to-dict": [ 10465 + "setuptools" 10466 + ], 989 10467 "protoletariat": [ 990 10468 "poetry-core" 991 10469 ], 10470 + "proton-client": [ 10471 + "setuptools" 10472 + ], 10473 + "protonup": [ 10474 + "setuptools" 10475 + ], 10476 + "protonvpn-nm-lib": [ 10477 + "setuptools" 10478 + ], 10479 + "prov": [ 10480 + "setuptools" 10481 + ], 10482 + "prox-tv": [ 10483 + "setuptools" 10484 + ], 10485 + "proxmoxer": [ 10486 + "setuptools" 10487 + ], 10488 + "proxy-py": [ 10489 + "setuptools", 10490 + "setuptools-scm" 10491 + ], 10492 + "proxy-tools": [ 10493 + "setuptools" 10494 + ], 10495 + "psautohint": [ 10496 + "setuptools", 10497 + "setuptools-scm" 10498 + ], 10499 + "pscript": [ 10500 + "setuptools" 10501 + ], 10502 + "psd-tools": [ 10503 + "cython", 10504 + "setuptools" 10505 + ], 10506 + "psrpcore": [ 10507 + "setuptools" 10508 + ], 10509 + "psutil": [ 10510 + "setuptools" 10511 + ], 10512 + "psutil-home-assistant": [ 10513 + "setuptools" 10514 + ], 10515 + "psycopg": [ 10516 + "setuptools" 10517 + ], 10518 + "psycopg2": [ 10519 + "setuptools" 10520 + ], 10521 + "psycopg2cffi": [ 10522 + "setuptools" 10523 + ], 10524 + "psygnal": [ 10525 + "setuptools", 10526 + "setuptools-scm" 10527 + ], 10528 + "ptable": [ 10529 + "setuptools" 10530 + ], 10531 + "ptest": [ 10532 + "setuptools" 10533 + ], 10534 + "ptpython": [ 10535 + "setuptools" 10536 + ], 992 10537 "ptyprocess": [ 993 - "flit-core" 10538 + "flit-core", 10539 + "setuptools" 994 10540 ], 995 10541 "publication": [ 996 10542 "flit" 997 10543 ], 10544 + "publicsuffix": [ 10545 + "setuptools" 10546 + ], 10547 + "publicsuffix2": [ 10548 + "setuptools" 10549 + ], 10550 + "pubnub": [ 10551 + "setuptools" 10552 + ], 10553 + "pubnubsub-handler": [ 10554 + "setuptools" 10555 + ], 10556 + "pudb": [ 10557 + "setuptools" 10558 + ], 10559 + "pulp": [ 10560 + "setuptools" 10561 + ], 10562 + "pulsectl": [ 10563 + "setuptools" 10564 + ], 10565 + "pulumi": [ 10566 + "setuptools" 10567 + ], 10568 + "pulumi-aws": [ 10569 + "setuptools" 10570 + ], 10571 + "pure-cdb": [ 10572 + "setuptools" 10573 + ], 10574 + "pure-eval": [ 10575 + "setuptools", 10576 + "setuptools-scm" 10577 + ], 10578 + "pure-pcapy3": [ 10579 + "setuptools" 10580 + ], 10581 + "pure-python-adb": [ 10582 + "setuptools" 10583 + ], 10584 + "pure-python-adb-homeassistant": [ 10585 + "setuptools" 10586 + ], 10587 + "pure-sasl": [ 10588 + "setuptools" 10589 + ], 10590 + "puremagic": [ 10591 + "setuptools" 10592 + ], 998 10593 "purepng": [ 999 - "cython" 10594 + "cython", 10595 + "setuptools" 10596 + ], 10597 + "purl": [ 10598 + "setuptools" 10599 + ], 10600 + "push-receiver": [ 10601 + "setuptools" 10602 + ], 10603 + "pushbullet": [ 10604 + "setuptools" 10605 + ], 10606 + "pushover-complete": [ 10607 + "setuptools" 10608 + ], 10609 + "pvlib": [ 10610 + "setuptools" 1000 10611 ], 1001 10612 "pvo": [ 1002 - "poetry-core" 10613 + "poetry-core", 10614 + "setuptools" 10615 + ], 10616 + "pweave": [ 10617 + "setuptools" 10618 + ], 10619 + "pwntools": [ 10620 + "setuptools" 10621 + ], 10622 + "py": [ 10623 + "setuptools", 10624 + "setuptools-scm" 10625 + ], 10626 + "py-air-control": [ 10627 + "setuptools" 10628 + ], 10629 + "py-air-control-exporter": [ 10630 + "setuptools" 10631 + ], 10632 + "py-canary": [ 10633 + "setuptools" 10634 + ], 10635 + "py-cid": [ 10636 + "setuptools" 10637 + ], 10638 + "py-cpuinfo": [ 10639 + "setuptools" 10640 + ], 10641 + "py-deprecate": [ 10642 + "setuptools" 10643 + ], 10644 + "py-desmume": [ 10645 + "setuptools" 10646 + ], 10647 + "py-dmidecode": [ 10648 + "setuptools" 10649 + ], 10650 + "py-ecc": [ 10651 + "setuptools" 10652 + ], 10653 + "py-eth-sig-utils": [ 10654 + "setuptools" 10655 + ], 10656 + "py-lru-cache": [ 10657 + "setuptools" 10658 + ], 10659 + "py-multiaddr": [ 10660 + "setuptools" 10661 + ], 10662 + "py-multibase": [ 10663 + "setuptools" 10664 + ], 10665 + "py-multicodec": [ 10666 + "setuptools" 1003 10667 ], 1004 10668 "py-multihash": [ 1005 - "pytest-runner" 10669 + "pytest-runner", 10670 + "setuptools" 10671 + ], 10672 + "py-nextbusnext": [ 10673 + "setuptools" 10674 + ], 10675 + "py-nightscout": [ 10676 + "setuptools" 10677 + ], 10678 + "py-scrypt": [ 10679 + "setuptools" 10680 + ], 10681 + "py-sneakers": [ 10682 + "setuptools" 10683 + ], 10684 + "py-sonic": [ 10685 + "setuptools" 10686 + ], 10687 + "py-stringmatching": [ 10688 + "setuptools" 1006 10689 ], 1007 10690 "py-synologydsm-api": [ 1008 - "poetry-core" 10691 + "poetry-core", 10692 + "setuptools" 10693 + ], 10694 + "py-tes": [ 10695 + "setuptools" 10696 + ], 10697 + "py-tree-sitter": [ 10698 + "setuptools" 10699 + ], 10700 + "py-ubjson": [ 10701 + "setuptools" 10702 + ], 10703 + "py-vapid": [ 10704 + "setuptools" 10705 + ], 10706 + "py-zabbix": [ 10707 + "setuptools" 1009 10708 ], 1010 10709 "py17track": [ 1011 - "poetry-core" 10710 + "poetry-core", 10711 + "setuptools" 10712 + ], 10713 + "py2bit": [ 10714 + "setuptools" 10715 + ], 10716 + "py3exiv2": [ 10717 + "setuptools" 10718 + ], 10719 + "py3rijndael": [ 10720 + "setuptools" 10721 + ], 10722 + "py3status": [ 10723 + "setuptools" 10724 + ], 10725 + "py3to2": [ 10726 + "setuptools" 10727 + ], 10728 + "py4j": [ 10729 + "setuptools" 10730 + ], 10731 + "pyacoustid": [ 10732 + "setuptools" 10733 + ], 10734 + "pyads": [ 10735 + "setuptools" 10736 + ], 10737 + "pyaehw4a1": [ 10738 + "setuptools" 10739 + ], 10740 + "pyaes": [ 10741 + "setuptools" 10742 + ], 10743 + "pyaftership": [ 10744 + "setuptools" 10745 + ], 10746 + "pyahocorasick": [ 10747 + "setuptools" 1012 10748 ], 1013 10749 "pyairnow": [ 1014 - "poetry" 10750 + "poetry", 10751 + "setuptools" 1015 10752 ], 1016 10753 "pyairvisual": [ 1017 - "poetry-core" 10754 + "poetry-core", 10755 + "setuptools" 10756 + ], 10757 + "pyalgotrade": [ 10758 + "setuptools" 10759 + ], 10760 + "pyalmond": [ 10761 + "setuptools" 10762 + ], 10763 + "pyamg": [ 10764 + "setuptools", 10765 + "setuptools-scm" 10766 + ], 10767 + "pyaml": [ 10768 + "setuptools" 10769 + ], 10770 + "pyannotate": [ 10771 + "setuptools" 10772 + ], 10773 + "pyarlo": [ 10774 + "setuptools" 10775 + ], 10776 + "pyarr": [ 10777 + "setuptools" 1018 10778 ], 1019 10779 "pyarrow": [ 1020 - "cython" 10780 + "cython", 10781 + "setuptools", 10782 + "setuptools-scm" 10783 + ], 10784 + "pyasn": [ 10785 + "setuptools" 10786 + ], 10787 + "pyasn1": [ 10788 + "setuptools" 10789 + ], 10790 + "pyasn1-modules": [ 10791 + "setuptools" 10792 + ], 10793 + "pyatag": [ 10794 + "setuptools" 10795 + ], 10796 + "pyathena": [ 10797 + "setuptools" 10798 + ], 10799 + "pyatmo": [ 10800 + "setuptools", 10801 + "setuptools-scm" 10802 + ], 10803 + "pyatome": [ 10804 + "setuptools" 10805 + ], 10806 + "pyatspi": [ 10807 + "setuptools" 10808 + ], 10809 + "pyatv": [ 10810 + "setuptools" 10811 + ], 10812 + "pyaudio": [ 10813 + "setuptools" 1021 10814 ], 1022 10815 "pyaussiebb": [ 10816 + "poetry-core", 10817 + "setuptools" 10818 + ], 10819 + "pyautogui": [ 10820 + "setuptools" 10821 + ], 10822 + "pyavm": [ 10823 + "setuptools" 10824 + ], 10825 + "pyaxmlparser": [ 10826 + "setuptools" 10827 + ], 10828 + "pybalboa": [ 10829 + "setuptools" 10830 + ], 10831 + "pybase64": [ 10832 + "setuptools" 10833 + ], 10834 + "pybigwig": [ 10835 + "setuptools" 10836 + ], 10837 + "pybind11": [ 10838 + "setuptools" 10839 + ], 10840 + "pybindgen": [ 10841 + "setuptools", 10842 + "setuptools-scm" 10843 + ], 10844 + "pyblackbird": [ 10845 + "setuptools" 10846 + ], 10847 + "pyblake2": [ 10848 + "setuptools" 10849 + ], 10850 + "pybluez": [ 10851 + "setuptools" 10852 + ], 10853 + "pybotvac": [ 10854 + "setuptools" 10855 + ], 10856 + "pybravia": [ 1023 10857 "poetry-core" 1024 10858 ], 10859 + "pybrowserid": [ 10860 + "setuptools" 10861 + ], 10862 + "pybtex": [ 10863 + "setuptools" 10864 + ], 10865 + "pybtex-docutils": [ 10866 + "setuptools" 10867 + ], 10868 + "pybullet": [ 10869 + "setuptools" 10870 + ], 10871 + "pycairo": [ 10872 + "setuptools" 10873 + ], 1025 10874 "pycangjie": [ 1026 - "cython" 10875 + "cython", 10876 + "setuptools" 1027 10877 ], 1028 10878 "pycapnp": [ 1029 - "cython" 10879 + "cython", 10880 + "setuptools" 10881 + ], 10882 + "pycaption": [ 10883 + "setuptools" 10884 + ], 10885 + "pycares": [ 10886 + "setuptools" 10887 + ], 10888 + "pycarwings2": [ 10889 + "setuptools" 10890 + ], 10891 + "pycategories": [ 10892 + "setuptools" 10893 + ], 10894 + "pycdio": [ 10895 + "setuptools" 10896 + ], 10897 + "pycec": [ 10898 + "setuptools" 1030 10899 ], 1031 10900 "pycep-parser": [ 1032 - "poetry-core" 10901 + "poetry-core", 10902 + "setuptools" 10903 + ], 10904 + "pycfdns": [ 10905 + "setuptools" 10906 + ], 10907 + "pycflow2dot": [ 10908 + "setuptools" 10909 + ], 10910 + "pycfmodel": [ 10911 + "setuptools" 10912 + ], 10913 + "pychannels": [ 10914 + "setuptools" 10915 + ], 10916 + "pychef": [ 10917 + "setuptools" 10918 + ], 10919 + "pychm": [ 10920 + "setuptools" 10921 + ], 10922 + "pychromecast": [ 10923 + "setuptools" 10924 + ], 10925 + "pycketcasts": [ 10926 + "setuptools" 10927 + ], 10928 + "pyclimacell": [ 10929 + "setuptools" 10930 + ], 10931 + "pyclip": [ 10932 + "setuptools" 1033 10933 ], 1034 10934 "pyclipper": [ 1035 - "cython" 10935 + "cython", 10936 + "setuptools", 10937 + "setuptools-scm" 10938 + ], 10939 + "pycm": [ 10940 + "setuptools" 10941 + ], 10942 + "pycmarkgfm": [ 10943 + "setuptools" 1036 10944 ], 1037 10945 "pycocotools": [ 1038 - "cython" 10946 + "cython", 10947 + "setuptools" 10948 + ], 10949 + "pycodestyle": [ 10950 + "setuptools" 10951 + ], 10952 + "pycognito": [ 10953 + "setuptools" 10954 + ], 10955 + "pycoin": [ 10956 + "setuptools" 10957 + ], 10958 + "pycollada": [ 10959 + "setuptools" 10960 + ], 10961 + "pycomfoconnect": [ 10962 + "setuptools" 10963 + ], 10964 + "pycontracts": [ 10965 + "setuptools" 10966 + ], 10967 + "pycontrol4": [ 10968 + "setuptools" 10969 + ], 10970 + "pycoolmasternet-async": [ 10971 + "setuptools" 10972 + ], 10973 + "pycosat": [ 10974 + "setuptools" 10975 + ], 10976 + "pycountry": [ 10977 + "setuptools" 10978 + ], 10979 + "pycparser": [ 10980 + "setuptools" 10981 + ], 10982 + "pycrc": [ 10983 + "setuptools" 10984 + ], 10985 + "pycritty": [ 10986 + "setuptools" 10987 + ], 10988 + "pycron": [ 10989 + "setuptools" 10990 + ], 10991 + "pycrypto": [ 10992 + "setuptools" 10993 + ], 10994 + "pycryptodome": [ 10995 + "setuptools" 10996 + ], 10997 + "pycryptodomex": [ 10998 + "setuptools" 10999 + ], 11000 + "pycsdr": [ 11001 + "setuptools" 11002 + ], 11003 + "pyct": [ 11004 + "setuptools" 11005 + ], 11006 + "pyctr": [ 11007 + "setuptools" 11008 + ], 11009 + "pycuda": [ 11010 + "setuptools" 11011 + ], 11012 + "pycups": [ 11013 + "setuptools" 11014 + ], 11015 + "pycurl": [ 11016 + "setuptools" 11017 + ], 11018 + "pycxx": [ 11019 + "setuptools" 11020 + ], 11021 + "pydaikin": [ 11022 + "setuptools" 11023 + ], 11024 + "pydal": [ 11025 + "setuptools" 11026 + ], 11027 + "pydanfossair": [ 11028 + "setuptools" 1039 11029 ], 1040 11030 "pydantic": [ 1041 - "cython" 11031 + "cython", 11032 + "setuptools" 11033 + ], 11034 + "pydantic-dydb": [ 11035 + "poetry-core" 11036 + ], 11037 + "pydash": [ 11038 + "setuptools" 11039 + ], 11040 + "pydata-sphinx-theme": [ 11041 + "setuptools" 11042 + ], 11043 + "pydbus": [ 11044 + "setuptools" 11045 + ], 11046 + "pydeck": [ 11047 + "setuptools" 11048 + ], 11049 + "pydeconz": [ 11050 + "setuptools" 11051 + ], 11052 + "pydelijn": [ 11053 + "setuptools" 11054 + ], 11055 + "pydenticon": [ 11056 + "setuptools" 11057 + ], 11058 + "pydeps": [ 11059 + "setuptools" 11060 + ], 11061 + "pydes": [ 11062 + "setuptools" 11063 + ], 11064 + "pydevccu": [ 11065 + "setuptools" 11066 + ], 11067 + "pydevd": [ 11068 + "setuptools" 11069 + ], 11070 + "pydexcom": [ 11071 + "setuptools" 11072 + ], 11073 + "pydicom": [ 11074 + "setuptools" 11075 + ], 11076 + "pydigiham": [ 11077 + "setuptools" 11078 + ], 11079 + "pydispatcher": [ 11080 + "setuptools" 11081 + ], 11082 + "pydmd": [ 11083 + "setuptools" 11084 + ], 11085 + "pydns": [ 11086 + "setuptools" 11087 + ], 11088 + "pydocstyle": [ 11089 + "setuptools" 11090 + ], 11091 + "pydocumentdb": [ 11092 + "setuptools" 11093 + ], 11094 + "pydoods": [ 11095 + "setuptools" 11096 + ], 11097 + "pydot": [ 11098 + "setuptools" 11099 + ], 11100 + "pydrive2": [ 11101 + "setuptools" 11102 + ], 11103 + "pydroid-ipcam": [ 11104 + "setuptools" 11105 + ], 11106 + "pydsdl": [ 11107 + "setuptools" 11108 + ], 11109 + "pydub": [ 11110 + "setuptools" 11111 + ], 11112 + "pyduke-energy": [ 11113 + "setuptools" 1042 11114 ], 1043 11115 "pydy": [ 1044 - "cython" 11116 + "cython", 11117 + "setuptools" 11118 + ], 11119 + "pydyf": [ 11120 + "setuptools" 11121 + ], 11122 + "pyeapi": [ 11123 + "setuptools" 1045 11124 ], 1046 11125 "pyebus": [ 1047 - "poetry-core" 11126 + "poetry-core", 11127 + "setuptools" 11128 + ], 11129 + "pyeclib": [ 11130 + "setuptools" 11131 + ], 11132 + "pyeconet": [ 11133 + "setuptools" 11134 + ], 11135 + "pyecowitt": [ 11136 + "setuptools" 11137 + ], 11138 + "pyedimax": [ 11139 + "setuptools" 11140 + ], 11141 + "pyee": [ 11142 + "setuptools" 11143 + ], 11144 + "pyefergy": [ 11145 + "setuptools" 11146 + ], 11147 + "pyeight": [ 11148 + "setuptools" 11149 + ], 11150 + "pyelftools": [ 11151 + "setuptools" 11152 + ], 11153 + "pyemby": [ 11154 + "setuptools" 1048 11155 ], 1049 11156 "pyemd": [ 1050 - "cython" 11157 + "cython", 11158 + "setuptools" 11159 + ], 11160 + "pyenchant": [ 11161 + "setuptools" 11162 + ], 11163 + "pyenvisalink": [ 11164 + "setuptools" 11165 + ], 11166 + "pyephember": [ 11167 + "setuptools" 11168 + ], 11169 + "pyepsg": [ 11170 + "setuptools" 11171 + ], 11172 + "pyerfa": [ 11173 + "setuptools", 11174 + "setuptools-scm" 11175 + ], 11176 + "pyeverlights": [ 11177 + "setuptools" 11178 + ], 11179 + "pyevilgenius": [ 11180 + "setuptools" 11181 + ], 11182 + "pyevmasm": [ 11183 + "setuptools" 11184 + ], 11185 + "pyexcel": [ 11186 + "setuptools" 11187 + ], 11188 + "pyexcel-io": [ 11189 + "setuptools" 11190 + ], 11191 + "pyexcel-ods": [ 11192 + "setuptools" 11193 + ], 11194 + "pyexcel-xls": [ 11195 + "setuptools" 11196 + ], 11197 + "pyext": [ 11198 + "setuptools" 11199 + ], 11200 + "pyezviz": [ 11201 + "setuptools" 11202 + ], 11203 + "pyface": [ 11204 + "setuptools" 11205 + ], 11206 + "pyfaidx": [ 11207 + "setuptools", 11208 + "setuptools-scm" 11209 + ], 11210 + "pyfakefs": [ 11211 + "setuptools" 11212 + ], 11213 + "pyfakewebcam": [ 11214 + "setuptools" 11215 + ], 11216 + "pyfantom": [ 11217 + "setuptools" 11218 + ], 11219 + "pyfcm": [ 11220 + "setuptools" 1051 11221 ], 1052 11222 "pyfftw": [ 1053 - "cython" 11223 + "cython", 11224 + "setuptools" 11225 + ], 11226 + "pyfido": [ 11227 + "setuptools" 11228 + ], 11229 + "pyfiglet": [ 11230 + "setuptools" 11231 + ], 11232 + "pyfireservicerota": [ 11233 + "setuptools" 11234 + ], 11235 + "pyflakes": [ 11236 + "setuptools" 11237 + ], 11238 + "pyflexit": [ 11239 + "setuptools" 11240 + ], 11241 + "pyflic": [ 11242 + "setuptools" 11243 + ], 11244 + "pyflick": [ 11245 + "setuptools" 11246 + ], 11247 + "pyflume": [ 11248 + "setuptools" 1054 11249 ], 1055 11250 "pyflunearyou": [ 1056 - "poetry-core" 11251 + "poetry-core", 11252 + "setuptools" 11253 + ], 11254 + "pyfma": [ 11255 + "setuptools" 1057 11256 ], 1058 - "pygame_sdl2": [ 1059 - "cython" 11257 + "pyfnip": [ 11258 + "setuptools" 11259 + ], 11260 + "pyfreedompro": [ 11261 + "setuptools" 11262 + ], 11263 + "pyfribidi": [ 11264 + "setuptools" 11265 + ], 11266 + "pyfritzhome": [ 11267 + "setuptools" 11268 + ], 11269 + "pyfronius": [ 11270 + "setuptools" 11271 + ], 11272 + "pyftdi": [ 11273 + "setuptools" 11274 + ], 11275 + "pyftgl": [ 11276 + "setuptools" 11277 + ], 11278 + "pyftpdlib": [ 11279 + "setuptools" 11280 + ], 11281 + "pyfttt": [ 11282 + "setuptools" 11283 + ], 11284 + "pyfuse3": [ 11285 + "cython", 11286 + "setuptools" 11287 + ], 11288 + "pyfxa": [ 11289 + "setuptools" 11290 + ], 11291 + "pyfzf": [ 11292 + "setuptools" 11293 + ], 11294 + "pygal": [ 11295 + "setuptools" 11296 + ], 11297 + "pygame": [ 11298 + "setuptools" 11299 + ], 11300 + "pygame-gui": [ 11301 + "setuptools" 11302 + ], 11303 + "pygame-sdl2": [ 11304 + "cython", 11305 + "setuptools" 11306 + ], 11307 + "pygatt": [ 11308 + "setuptools" 11309 + ], 11310 + "pygccxml": [ 11311 + "setuptools" 11312 + ], 11313 + "pygdbmi": [ 11314 + "setuptools" 11315 + ], 11316 + "pygeoip": [ 11317 + "setuptools" 1060 11318 ], 1061 11319 "pygeos": [ 1062 - "cython" 11320 + "cython", 11321 + "setuptools" 11322 + ], 11323 + "pygetwindow": [ 11324 + "setuptools" 11325 + ], 11326 + "pygit2": [ 11327 + "setuptools" 11328 + ], 11329 + "pygithub": [ 11330 + "setuptools" 11331 + ], 11332 + "pyglet": [ 11333 + "setuptools" 11334 + ], 11335 + "pygls": [ 11336 + "setuptools", 11337 + "setuptools-scm" 11338 + ], 11339 + "pygmars": [ 11340 + "setuptools", 11341 + "setuptools-scm" 11342 + ], 11343 + "pygments": [ 11344 + "setuptools" 11345 + ], 11346 + "pygments-better-html": [ 11347 + "setuptools" 11348 + ], 11349 + "pygments-markdown-lexer": [ 11350 + "setuptools" 11351 + ], 11352 + "pygmt": [ 11353 + "setuptools", 11354 + "setuptools-scm" 11355 + ], 11356 + "pygobject3": [ 11357 + "setuptools" 11358 + ], 11359 + "pygogo": [ 11360 + "setuptools" 11361 + ], 11362 + "pygpgme": [ 11363 + "setuptools" 11364 + ], 11365 + "pygraphviz": [ 11366 + "setuptools" 11367 + ], 11368 + "pygreat": [ 11369 + "setuptools" 11370 + ], 11371 + "pygrok": [ 11372 + "setuptools" 11373 + ], 11374 + "pygtail": [ 11375 + "setuptools" 11376 + ], 11377 + "pygtfs": [ 11378 + "setuptools", 11379 + "setuptools-scm" 11380 + ], 11381 + "pygti": [ 11382 + "setuptools", 11383 + "setuptools-scm" 11384 + ], 11385 + "pygtkspellcheck": [ 11386 + "setuptools" 11387 + ], 11388 + "pygtrie": [ 11389 + "setuptools" 11390 + ], 11391 + "pyhamcrest": [ 11392 + "hatchling", 11393 + "setuptools" 11394 + ], 11395 + "pyhanko": [ 11396 + "setuptools" 11397 + ], 11398 + "pyhanko-certvalidator": [ 11399 + "setuptools" 11400 + ], 11401 + "pyhaversion": [ 11402 + "setuptools" 11403 + ], 11404 + "pyhcl": [ 11405 + "setuptools" 11406 + ], 11407 + "pyheos": [ 11408 + "setuptools" 11409 + ], 11410 + "pyhiveapi": [ 11411 + "setuptools" 11412 + ], 11413 + "pyhocon": [ 11414 + "setuptools" 11415 + ], 11416 + "pyhomematic": [ 11417 + "setuptools" 11418 + ], 11419 + "pyhomepilot": [ 11420 + "setuptools" 11421 + ], 11422 + "pyhomeworks": [ 11423 + "setuptools" 11424 + ], 11425 + "pyhs100": [ 11426 + "setuptools" 1063 11427 ], 1064 11428 "pyhumps": [ 1065 - "poetry-core" 11429 + "poetry-core", 11430 + "setuptools" 11431 + ], 11432 + "pyi2cflash": [ 11433 + "setuptools" 11434 + ], 11435 + "pyialarm": [ 11436 + "setuptools" 11437 + ], 11438 + "pyicloud": [ 11439 + "setuptools" 11440 + ], 11441 + "pyicu": [ 11442 + "setuptools" 11443 + ], 11444 + "pyimpfuzzy": [ 11445 + "setuptools" 11446 + ], 11447 + "pyinfra": [ 11448 + "setuptools" 11449 + ], 11450 + "pyinotify": [ 11451 + "setuptools" 11452 + ], 11453 + "pyinputevent": [ 11454 + "setuptools" 11455 + ], 11456 + "pyinsteon": [ 11457 + "setuptools" 11458 + ], 11459 + "pyinstrument": [ 11460 + "setuptools" 11461 + ], 11462 + "pyintesishome": [ 11463 + "setuptools" 11464 + ], 11465 + "pyipma": [ 11466 + "setuptools" 11467 + ], 11468 + "pyipp": [ 11469 + "setuptools" 1066 11470 ], 1067 11471 "pyiqvia": [ 1068 - "poetry-core" 11472 + "poetry-core", 11473 + "setuptools" 11474 + ], 11475 + "pyisbn": [ 11476 + "setuptools" 11477 + ], 11478 + "pyisy": [ 11479 + "setuptools" 1069 11480 ], 1070 11481 "pyjet": [ 1071 - "cython" 11482 + "cython", 11483 + "setuptools" 11484 + ], 11485 + "pyjks": [ 11486 + "setuptools" 11487 + ], 11488 + "pyjnius": [ 11489 + "cython", 11490 + "setuptools" 1072 11491 ], 1073 11492 "pyjsg": [ 1074 11493 "pbr" 1075 11494 ], 11495 + "pyjson5": [ 11496 + "setuptools" 11497 + ], 11498 + "pyjsparser": [ 11499 + "setuptools" 11500 + ], 11501 + "pyjwkest": [ 11502 + "setuptools" 11503 + ], 11504 + "pyjwt": [ 11505 + "setuptools" 11506 + ], 11507 + "pykakasi": [ 11508 + "setuptools", 11509 + "setuptools-scm" 11510 + ], 11511 + "pykdtree": [ 11512 + "setuptools" 11513 + ], 11514 + "pykeepass": [ 11515 + "setuptools" 11516 + ], 11517 + "pykerberos": [ 11518 + "setuptools" 11519 + ], 11520 + "pykeyatome": [ 11521 + "setuptools" 11522 + ], 11523 + "pykira": [ 11524 + "setuptools" 11525 + ], 1076 11526 "pykka": [ 1077 - "poetry-core" 11527 + "poetry-core", 11528 + "setuptools" 11529 + ], 11530 + "pykmtronic": [ 11531 + "setuptools" 11532 + ], 11533 + "pykodi": [ 11534 + "setuptools" 11535 + ], 11536 + "pykoplenti": [ 11537 + "setuptools" 11538 + ], 11539 + "pykostalpiko": [ 11540 + "setuptools" 11541 + ], 11542 + "pykrakenapi": [ 11543 + "setuptools" 11544 + ], 11545 + "pykulersky": [ 11546 + "setuptools" 11547 + ], 11548 + "pykwalify": [ 11549 + "setuptools" 11550 + ], 11551 + "pykwb": [ 11552 + "setuptools" 11553 + ], 11554 + "pylacrosse": [ 11555 + "setuptools" 11556 + ], 11557 + "pylama": [ 11558 + "setuptools" 11559 + ], 11560 + "pylast": [ 11561 + "setuptools", 11562 + "setuptools-scm" 11563 + ], 11564 + "pylatexenc": [ 11565 + "setuptools" 11566 + ], 11567 + "pylaunches": [ 11568 + "setuptools" 11569 + ], 11570 + "pyld": [ 11571 + "setuptools" 11572 + ], 11573 + "pylev": [ 11574 + "setuptools" 11575 + ], 11576 + "pylgnetcast": [ 11577 + "setuptools" 11578 + ], 11579 + "pylibacl": [ 11580 + "setuptools" 11581 + ], 11582 + "pylibconfig2": [ 11583 + "setuptools" 11584 + ], 11585 + "pylibdmtx": [ 11586 + "setuptools" 11587 + ], 11588 + "pylibftdi": [ 11589 + "setuptools" 1078 11590 ], 1079 11591 "pyliblo": [ 1080 - "cython" 11592 + "cython", 11593 + "setuptools" 11594 + ], 11595 + "pylibmc": [ 11596 + "setuptools" 11597 + ], 11598 + "pylink-square": [ 11599 + "setuptools" 11600 + ], 11601 + "pylint": [ 11602 + "setuptools" 11603 + ], 11604 + "pylint-celery": [ 11605 + "setuptools" 11606 + ], 11607 + "pylint-django": [ 11608 + "setuptools" 11609 + ], 11610 + "pylint-flask": [ 11611 + "setuptools" 11612 + ], 11613 + "pylint-plugin-utils": [ 11614 + "setuptools" 11615 + ], 11616 + "pylitterbot": [ 11617 + "poetry-core", 11618 + "setuptools" 11619 + ], 11620 + "pylnk3": [ 11621 + "setuptools" 11622 + ], 11623 + "pylru": [ 11624 + "setuptools" 11625 + ], 11626 + "pyls-flake8": [ 11627 + "setuptools" 11628 + ], 11629 + "pyls-isort": [ 11630 + "setuptools" 11631 + ], 11632 + "pyls-spyder": [ 11633 + "setuptools" 11634 + ], 11635 + "pylsp-mypy": [ 11636 + "setuptools" 11637 + ], 11638 + "pylutron": [ 11639 + "setuptools" 11640 + ], 11641 + "pylutron-caseta": [ 11642 + "setuptools" 11643 + ], 11644 + "pylxd": [ 11645 + "setuptools" 11646 + ], 11647 + "pylyrics": [ 11648 + "setuptools" 11649 + ], 11650 + "pylzma": [ 11651 + "setuptools" 11652 + ], 11653 + "pymacaroons": [ 11654 + "setuptools" 11655 + ], 11656 + "pymaging": [ 11657 + "setuptools" 11658 + ], 11659 + "pymaging-png": [ 11660 + "setuptools" 11661 + ], 11662 + "pymailgunner": [ 11663 + "setuptools" 11664 + ], 11665 + "pymanopt": [ 11666 + "setuptools" 11667 + ], 11668 + "pymarshal": [ 11669 + "setuptools" 11670 + ], 11671 + "pymata-express": [ 11672 + "setuptools" 1081 11673 ], 1082 11674 "pymatgen": [ 1083 - "cython" 11675 + "cython", 11676 + "setuptools" 1084 11677 ], 1085 11678 "pymaven-patch": [ 1086 - "pbr" 11679 + "pbr", 11680 + "setuptools" 11681 + ], 11682 + "pymavlink": [ 11683 + "setuptools" 11684 + ], 11685 + "pymazda": [ 11686 + "setuptools" 11687 + ], 11688 + "pymbolic": [ 11689 + "setuptools" 11690 + ], 11691 + "pymc": [ 11692 + "setuptools" 11693 + ], 11694 + "pymc3": [ 11695 + "setuptools" 1087 11696 ], 1088 11697 "pymdown-extensions": [ 1089 - "hatchling" 11698 + "hatchling", 11699 + "setuptools" 11700 + ], 11701 + "pymdstat": [ 11702 + "setuptools" 11703 + ], 11704 + "pymediainfo": [ 11705 + "setuptools", 11706 + "setuptools-scm" 11707 + ], 11708 + "pymediaroom": [ 11709 + "setuptools" 11710 + ], 11711 + "pymeeus": [ 11712 + "setuptools" 11713 + ], 11714 + "pymelcloud": [ 11715 + "setuptools" 11716 + ], 11717 + "pymemcache": [ 11718 + "setuptools" 11719 + ], 11720 + "pymemoize": [ 11721 + "setuptools" 11722 + ], 11723 + "pyment": [ 11724 + "setuptools" 11725 + ], 11726 + "pymetar": [ 11727 + "setuptools" 11728 + ], 11729 + "pymeteireann": [ 11730 + "setuptools" 11731 + ], 11732 + "pymeteoclimatic": [ 11733 + "setuptools" 11734 + ], 11735 + "pymetno": [ 11736 + "setuptools" 1090 11737 ], 1091 11738 "pymfy": [ 1092 - "poetry-core" 11739 + "poetry-core", 11740 + "setuptools" 11741 + ], 11742 + "pymicrobot": [ 11743 + "setuptools" 11744 + ], 11745 + "pymitv": [ 11746 + "setuptools" 11747 + ], 11748 + "pymodbus": [ 11749 + "setuptools" 11750 + ], 11751 + "pymongo": [ 11752 + "setuptools" 11753 + ], 11754 + "pymoo": [ 11755 + "cython", 11756 + "setuptools" 11757 + ], 11758 + "pymorphy2": [ 11759 + "setuptools" 11760 + ], 11761 + "pymorphy2-dicts-ru": [ 11762 + "setuptools" 11763 + ], 11764 + "pympler": [ 11765 + "setuptools" 11766 + ], 11767 + "pymsgbox": [ 11768 + "setuptools" 1093 11769 ], 1094 11770 "pymssql": [ 1095 11771 "cython" 1096 11772 ], 11773 + "pymsteams": [ 11774 + "setuptools" 11775 + ], 11776 + "pymumble": [ 11777 + "setuptools" 11778 + ], 11779 + "pymunk": [ 11780 + "setuptools" 11781 + ], 11782 + "pymupdf": [ 11783 + "setuptools" 11784 + ], 11785 + "pymvglive": [ 11786 + "setuptools" 11787 + ], 11788 + "pymyq": [ 11789 + "setuptools" 11790 + ], 11791 + "pymysensors": [ 11792 + "setuptools" 11793 + ], 11794 + "pymysql": [ 11795 + "setuptools" 11796 + ], 11797 + "pymysqlsa": [ 11798 + "setuptools" 11799 + ], 11800 + "pymystem3": [ 11801 + "setuptools" 11802 + ], 11803 + "pynac": [ 11804 + "setuptools" 11805 + ], 11806 + "pynacl": [ 11807 + "setuptools" 11808 + ], 11809 + "pynamecheap": [ 11810 + "setuptools" 11811 + ], 11812 + "pynamodb": [ 11813 + "setuptools" 11814 + ], 11815 + "pynanoleaf": [ 11816 + "setuptools" 11817 + ], 11818 + "pynello": [ 11819 + "setuptools" 11820 + ], 11821 + "pynest2d": [ 11822 + "setuptools" 11823 + ], 11824 + "pynetbox": [ 11825 + "setuptools", 11826 + "setuptools-scm" 11827 + ], 11828 + "pynetdicom": [ 11829 + "setuptools" 11830 + ], 11831 + "pynetgear": [ 11832 + "setuptools" 11833 + ], 11834 + "pynina": [ 11835 + "setuptools" 11836 + ], 11837 + "pynisher": [ 11838 + "setuptools" 11839 + ], 1097 11840 "pynixutil": [ 1098 11841 "poetry" 1099 11842 ], 11843 + "pynmea2": [ 11844 + "setuptools" 11845 + ], 11846 + "pynndescent": [ 11847 + "setuptools" 11848 + ], 11849 + "pynobo": [ 11850 + "setuptools" 11851 + ], 11852 + "pynput": [ 11853 + "setuptools" 11854 + ], 11855 + "pynrrd": [ 11856 + "setuptools" 11857 + ], 1100 11858 "pynuki": [ 1101 - "poetry-core" 11859 + "poetry-core", 11860 + "setuptools" 11861 + ], 11862 + "pynut2": [ 11863 + "setuptools" 11864 + ], 11865 + "pynvim": [ 11866 + "setuptools" 11867 + ], 11868 + "pynvml": [ 11869 + "setuptools" 11870 + ], 11871 + "pynws": [ 11872 + "setuptools" 11873 + ], 11874 + "pynx584": [ 11875 + "setuptools" 11876 + ], 11877 + "pynzb": [ 11878 + "setuptools" 11879 + ], 11880 + "pyobihai": [ 11881 + "setuptools" 11882 + ], 11883 + "pyocr": [ 11884 + "setuptools" 11885 + ], 11886 + "pyoctoprintapi": [ 11887 + "setuptools" 11888 + ], 11889 + "pyodbc": [ 11890 + "setuptools" 11891 + ], 11892 + "pyogg": [ 11893 + "setuptools" 11894 + ], 11895 + "pyombi": [ 11896 + "setuptools" 11897 + ], 11898 + "pyomo": [ 11899 + "setuptools" 1102 11900 ], 1103 11901 "pyopencl": [ 1104 - "pybind11" 11902 + "pybind11", 11903 + "setuptools" 11904 + ], 11905 + "pyopengl": [ 11906 + "setuptools" 11907 + ], 11908 + "pyopenssl": [ 11909 + "setuptools" 1105 11910 ], 1106 11911 "pyopenuv": [ 1107 - "poetry-core" 11912 + "poetry-core", 11913 + "setuptools" 1108 11914 ], 1109 11915 "pyopnsense": [ 1110 - "pbr" 11916 + "pbr", 11917 + "setuptools" 11918 + ], 11919 + "pyoppleio": [ 11920 + "setuptools" 11921 + ], 11922 + "pyosf": [ 11923 + "setuptools" 11924 + ], 11925 + "pyosmium": [ 11926 + "setuptools" 11927 + ], 11928 + "pyotgw": [ 11929 + "setuptools" 11930 + ], 11931 + "pyotp": [ 11932 + "setuptools" 1111 11933 ], 1112 11934 "pyoverkiz": [ 1113 - "poetry-core" 11935 + "poetry-core", 11936 + "setuptools" 11937 + ], 11938 + "pyowm": [ 11939 + "setuptools" 11940 + ], 11941 + "pyownet": [ 11942 + "setuptools" 11943 + ], 11944 + "pyp": [ 11945 + "setuptools" 11946 + ], 11947 + "pypandoc": [ 11948 + "setuptools" 11949 + ], 11950 + "pyparser": [ 11951 + "setuptools" 1114 11952 ], 1115 11953 "pyparsing": [ 1116 - "flit-core" 11954 + "flit-core", 11955 + "setuptools" 11956 + ], 11957 + "pyparted": [ 11958 + "setuptools" 1117 11959 ], 1118 11960 "pypass": [ 1119 - "pbr" 11961 + "pbr", 11962 + "setuptools" 11963 + ], 11964 + "pypblib": [ 11965 + "setuptools" 11966 + ], 11967 + "pypca": [ 11968 + "setuptools" 11969 + ], 11970 + "pypcap": [ 11971 + "setuptools" 11972 + ], 11973 + "pypck": [ 11974 + "setuptools" 11975 + ], 11976 + "pypdf2": [ 11977 + "setuptools" 11978 + ], 11979 + "pypdf3": [ 11980 + "setuptools" 11981 + ], 11982 + "pypeg2": [ 11983 + "setuptools" 11984 + ], 11985 + "pypemicro": [ 11986 + "setuptools" 11987 + ], 11988 + "pyperclip": [ 11989 + "setuptools" 11990 + ], 11991 + "pyperf": [ 11992 + "setuptools" 1120 11993 ], 1121 11994 "pyphen": [ 1122 - "flit" 11995 + "flit", 11996 + "setuptools" 11997 + ], 11998 + "pyphotonfile": [ 11999 + "setuptools" 1123 12000 ], 1124 12001 "pypika-tortoise": [ 1125 12002 "poetry-core" 1126 12003 ], 12004 + "pypillowfight": [ 12005 + "setuptools" 12006 + ], 12007 + "pypinyin": [ 12008 + "setuptools" 12009 + ], 12010 + "pypiserver": [ 12011 + "setuptools" 12012 + ], 12013 + "pyplaato": [ 12014 + "setuptools" 12015 + ], 12016 + "pypng": [ 12017 + "setuptools" 12018 + ], 12019 + "pypoint": [ 12020 + "setuptools" 12021 + ], 1127 12022 "pypoolstation": [ 1128 - "poetry-core" 12023 + "poetry-core", 12024 + "setuptools" 1129 12025 ], 1130 12026 "pyppeteer": [ 1131 - "poetry-core" 12027 + "poetry-core", 12028 + "setuptools" 1132 12029 ], 1133 12030 "pyprecice": [ 1134 - "cython" 12031 + "cython", 12032 + "setuptools" 12033 + ], 12034 + "pypresence": [ 12035 + "setuptools" 12036 + ], 12037 + "pyprind": [ 12038 + "setuptools" 12039 + ], 12040 + "pyprof2calltree": [ 12041 + "setuptools" 1135 12042 ], 1136 12043 "pyproj": [ 1137 - "cython" 12044 + "cython", 12045 + "setuptools" 1138 12046 ], 1139 12047 "pyproject-flake8": [ 1140 12048 "flit-core" 1141 12049 ], 12050 + "pyproject-metadata": [ 12051 + "setuptools" 12052 + ], 12053 + "pyprosegur": [ 12054 + "setuptools" 12055 + ], 1142 12056 "pypsrp": [ 1143 - "poetry-core" 12057 + "poetry-core", 12058 + "setuptools" 12059 + ], 12060 + "pypubsub": [ 12061 + "setuptools" 12062 + ], 12063 + "pypugjs": [ 12064 + "setuptools" 12065 + ], 12066 + "pypykatz": [ 12067 + "setuptools" 12068 + ], 12069 + "pypytools": [ 12070 + "setuptools" 12071 + ], 12072 + "pyqldb": [ 12073 + "setuptools" 12074 + ], 12075 + "pyqrcode": [ 12076 + "setuptools" 12077 + ], 12078 + "pyqt-builder": [ 12079 + "setuptools" 12080 + ], 12081 + "pyqt4": [ 12082 + "setuptools" 12083 + ], 12084 + "pyqt5": [ 12085 + "setuptools" 12086 + ], 12087 + "pyqt5-sip": [ 12088 + "setuptools" 12089 + ], 12090 + "pyqt5-with-qtmultimedia": [ 12091 + "setuptools" 12092 + ], 12093 + "pyqt5-with-qtwebkit": [ 12094 + "setuptools" 12095 + ], 12096 + "pyqtgraph": [ 12097 + "setuptools" 12098 + ], 12099 + "pyqtwebengine": [ 12100 + "setuptools" 12101 + ], 12102 + "pyquaternion": [ 12103 + "setuptools" 12104 + ], 12105 + "pyquery": [ 12106 + "setuptools" 1144 12107 ], 1145 12108 "pyquil": [ 1146 - "poetry-core" 12109 + "poetry-core", 12110 + "setuptools" 12111 + ], 12112 + "pyqvrpro": [ 12113 + "setuptools" 12114 + ], 12115 + "pyrabbit2": [ 12116 + "setuptools" 1147 12117 ], 1148 12118 "pyrad": [ 1149 - "poetry-core" 12119 + "poetry-core", 12120 + "setuptools" 12121 + ], 12122 + "pyradios": [ 12123 + "setuptools" 12124 + ], 12125 + "pyrainbird": [ 12126 + "setuptools" 12127 + ], 12128 + "pyramid": [ 12129 + "setuptools" 12130 + ], 12131 + "pyramid-chameleon": [ 12132 + "setuptools" 12133 + ], 12134 + "pyramid-exclog": [ 12135 + "setuptools" 12136 + ], 12137 + "pyramid-hawkauth": [ 12138 + "setuptools" 12139 + ], 12140 + "pyramid-jinja2": [ 12141 + "setuptools" 12142 + ], 12143 + "pyramid-mako": [ 12144 + "setuptools" 12145 + ], 12146 + "pyramid-multiauth": [ 12147 + "setuptools" 12148 + ], 12149 + "pyreadability": [ 12150 + "setuptools" 12151 + ], 12152 + "pyrect": [ 12153 + "setuptools" 1150 12154 ], 1151 12155 "pyregion": [ 1152 - "cython" 12156 + "cython", 12157 + "setuptools" 1153 12158 ], 1154 12159 "pyrevolve": [ 1155 - "cython" 12160 + "cython", 12161 + "setuptools" 12162 + ], 12163 + "pyrfc3339": [ 12164 + "setuptools" 12165 + ], 12166 + "pyrfxtrx": [ 12167 + "setuptools" 12168 + ], 12169 + "pyric": [ 12170 + "setuptools" 12171 + ], 12172 + "pyrisco": [ 12173 + "setuptools" 12174 + ], 12175 + "pyrituals": [ 12176 + "setuptools" 1156 12177 ], 1157 12178 "pyrmvtransport": [ 1158 - "flit" 12179 + "flit", 12180 + "setuptools" 12181 + ], 12182 + "pyro-api": [ 12183 + "setuptools" 12184 + ], 12185 + "pyro-ppl": [ 12186 + "setuptools" 12187 + ], 12188 + "pyro4": [ 12189 + "setuptools" 12190 + ], 12191 + "pyro5": [ 12192 + "setuptools" 12193 + ], 12194 + "pyrogram": [ 12195 + "setuptools" 12196 + ], 12197 + "pyroma": [ 12198 + "setuptools" 12199 + ], 12200 + "pyroute2": [ 12201 + "setuptools" 12202 + ], 12203 + "pyrr": [ 12204 + "setuptools" 12205 + ], 12206 + "pyrsistent": [ 12207 + "setuptools" 12208 + ], 12209 + "pyrss2gen": [ 12210 + "setuptools" 12211 + ], 12212 + "pyruckus": [ 12213 + "setuptools" 12214 + ], 12215 + "pysabnzbd": [ 12216 + "setuptools" 12217 + ], 12218 + "pysaj": [ 12219 + "setuptools" 1159 12220 ], 1160 12221 "pysam": [ 1161 - "cython" 12222 + "cython", 12223 + "setuptools" 12224 + ], 12225 + "pysaml2": [ 12226 + "setuptools" 12227 + ], 12228 + "pysatochip": [ 12229 + "setuptools" 12230 + ], 12231 + "pysbd": [ 12232 + "setuptools" 12233 + ], 12234 + "pyscard": [ 12235 + "setuptools" 12236 + ], 12237 + "pyscf": [ 12238 + "setuptools" 12239 + ], 12240 + "pyschedule": [ 12241 + "setuptools" 12242 + ], 12243 + "pyschemes": [ 12244 + "setuptools" 12245 + ], 12246 + "pyscreenshot": [ 12247 + "setuptools" 12248 + ], 12249 + "pyscreeze": [ 12250 + "setuptools" 12251 + ], 12252 + "pyscrypt": [ 12253 + "setuptools" 12254 + ], 12255 + "pyscss": [ 12256 + "setuptools" 12257 + ], 12258 + "pysdcp": [ 12259 + "setuptools" 12260 + ], 12261 + "pysdl2": [ 12262 + "setuptools" 12263 + ], 12264 + "pysecuritas": [ 12265 + "setuptools" 12266 + ], 12267 + "pysendfile": [ 12268 + "setuptools" 12269 + ], 12270 + "pysensibo": [ 12271 + "setuptools" 12272 + ], 12273 + "pysensors": [ 12274 + "setuptools" 12275 + ], 12276 + "pyserial": [ 12277 + "setuptools" 12278 + ], 12279 + "pyserial-asyncio": [ 12280 + "setuptools" 12281 + ], 12282 + "pysftp": [ 12283 + "setuptools" 12284 + ], 12285 + "pysha3": [ 12286 + "setuptools" 12287 + ], 12288 + "pyshark": [ 12289 + "setuptools" 1162 12290 ], 1163 12291 "pyshex": [ 1164 12292 "pbr" ··· 1166 12294 "pyshexc": [ 1167 12295 "pbr" 1168 12296 ], 12297 + "pyshp": [ 12298 + "setuptools" 12299 + ], 12300 + "pysiaalarm": [ 12301 + "setuptools", 12302 + "setuptools-scm" 12303 + ], 12304 + "pyside": [ 12305 + "setuptools" 12306 + ], 12307 + "pyside2": [ 12308 + "setuptools" 12309 + ], 12310 + "pysideshiboken": [ 12311 + "setuptools" 12312 + ], 12313 + "pysidetools": [ 12314 + "setuptools" 12315 + ], 1169 12316 "pysigma": [ 1170 - "poetry-core" 12317 + "poetry-core", 12318 + "setuptools" 12319 + ], 12320 + "pysigma-backend-elasticsearch": [ 12321 + "poetry-core", 12322 + "setuptools" 1171 12323 ], 1172 12324 "pysigma-backend-insightidr": [ 1173 - "poetry-core" 12325 + "poetry-core", 12326 + "setuptools" 12327 + ], 12328 + "pysigma-backend-opensearch": [ 12329 + "poetry-core", 12330 + "setuptools" 12331 + ], 12332 + "pysigma-backend-qradar": [ 12333 + "poetry-core", 12334 + "setuptools" 1174 12335 ], 1175 12336 "pysigma-backend-splunk": [ 1176 - "poetry-core" 12337 + "poetry-core", 12338 + "setuptools" 1177 12339 ], 1178 12340 "pysigma-pipeline-crowdstrike": [ 1179 - "poetry-core" 12341 + "poetry-core", 12342 + "setuptools" 1180 12343 ], 1181 12344 "pysigma-pipeline-sysmon": [ 1182 - "poetry-core" 12345 + "poetry-core", 12346 + "setuptools" 1183 12347 ], 1184 12348 "pysigma-pipeline-windows": [ 1185 - "poetry-core" 12349 + "poetry-core", 12350 + "setuptools" 12351 + ], 12352 + "pysignalclirestapi": [ 12353 + "setuptools" 12354 + ], 12355 + "pysigset": [ 12356 + "setuptools" 12357 + ], 12358 + "pysimplegui": [ 12359 + "setuptools" 12360 + ], 12361 + "pysingleton": [ 12362 + "setuptools" 12363 + ], 12364 + "pyskyqhub": [ 12365 + "setuptools" 12366 + ], 12367 + "pyskyqremote": [ 12368 + "setuptools" 1186 12369 ], 1187 12370 "pyslurm": [ 1188 - "cython" 12371 + "cython", 12372 + "setuptools" 12373 + ], 12374 + "pysma": [ 12375 + "setuptools" 12376 + ], 12377 + "pysmappee": [ 12378 + "setuptools" 12379 + ], 12380 + "pysmart": [ 12381 + "setuptools" 12382 + ], 12383 + "pysmart-smartx": [ 12384 + "setuptools" 12385 + ], 12386 + "pysmartapp": [ 12387 + "setuptools" 12388 + ], 12389 + "pysmartdl": [ 12390 + "setuptools" 12391 + ], 12392 + "pysmartthings": [ 12393 + "setuptools" 12394 + ], 12395 + "pysmb": [ 12396 + "setuptools" 12397 + ], 12398 + "pysmbc": [ 12399 + "setuptools" 1189 12400 ], 1190 12401 "pysmf": [ 1191 - "cython" 12402 + "cython", 12403 + "setuptools" 12404 + ], 12405 + "pysmi": [ 12406 + "setuptools" 1192 12407 ], 1193 12408 "pysml": [ 1194 - "poetry-core" 12409 + "poetry-core", 12410 + "setuptools" 12411 + ], 12412 + "pysmt": [ 12413 + "setuptools" 12414 + ], 12415 + "pysnmp": [ 12416 + "setuptools" 1195 12417 ], 1196 12418 "pysnmp-pyasn1": [ 1197 - "poetry-core" 12419 + "poetry-core", 12420 + "setuptools" 1198 12421 ], 1199 12422 "pysnmp-pysmi": [ 1200 - "poetry-core" 12423 + "poetry-core", 12424 + "setuptools" 1201 12425 ], 1202 12426 "pysnmplib": [ 1203 - "poetry-core" 12427 + "poetry-core", 12428 + "setuptools" 12429 + ], 12430 + "pysnooper": [ 12431 + "setuptools" 1204 12432 ], 1205 12433 "pysnow": [ 1206 12434 "poetry", 1207 - "poetry-core" 12435 + "poetry-core", 12436 + "setuptools" 12437 + ], 12438 + "pysocks": [ 12439 + "setuptools" 12440 + ], 12441 + "pysolcast": [ 12442 + "setuptools", 12443 + "setuptools-scm" 12444 + ], 12445 + "pysolr": [ 12446 + "setuptools", 12447 + "setuptools-scm" 12448 + ], 12449 + "pysoma": [ 12450 + "setuptools" 12451 + ], 12452 + "pysonos": [ 12453 + "setuptools" 12454 + ], 12455 + "pysoundfile": [ 12456 + "setuptools" 12457 + ], 12458 + "pyspark": [ 12459 + "setuptools" 12460 + ], 12461 + "pyspcwebgw": [ 12462 + "setuptools" 12463 + ], 12464 + "pyspf": [ 12465 + "setuptools" 12466 + ], 12467 + "pyspice": [ 12468 + "setuptools" 12469 + ], 12470 + "pyspiflash": [ 12471 + "setuptools" 12472 + ], 12473 + "pyspinel": [ 12474 + "setuptools" 12475 + ], 12476 + "pyspnego": [ 12477 + "setuptools" 1208 12478 ], 1209 12479 "pysptk": [ 1210 - "cython" 12480 + "cython", 12481 + "setuptools" 12482 + ], 12483 + "pysqlite": [ 12484 + "setuptools" 12485 + ], 12486 + "pysqlitecipher": [ 12487 + "setuptools" 12488 + ], 12489 + "pysqueezebox": [ 12490 + "setuptools" 12491 + ], 12492 + "pysrim": [ 12493 + "setuptools" 12494 + ], 12495 + "pysrt": [ 12496 + "setuptools" 12497 + ], 12498 + "pyssim": [ 12499 + "setuptools" 12500 + ], 12501 + "pystache": [ 12502 + "setuptools" 12503 + ], 12504 + "pystemd": [ 12505 + "setuptools" 12506 + ], 12507 + "pystemmer": [ 12508 + "cython", 12509 + "setuptools" 12510 + ], 12511 + "pystray": [ 12512 + "setuptools" 12513 + ], 12514 + "pysvg-py3": [ 12515 + "setuptools" 12516 + ], 12517 + "pysvn": [ 12518 + "setuptools" 12519 + ], 12520 + "pyswitchbot": [ 12521 + "setuptools" 12522 + ], 12523 + "pysychonaut": [ 12524 + "setuptools" 12525 + ], 12526 + "pysyncobj": [ 12527 + "setuptools" 12528 + ], 12529 + "pysyncthru": [ 12530 + "setuptools" 12531 + ], 12532 + "pytabix": [ 12533 + "setuptools" 12534 + ], 12535 + "pytado": [ 12536 + "setuptools" 1211 12537 ], 1212 12538 "pytaglib": [ 1213 - "cython" 12539 + "cython", 12540 + "setuptools" 12541 + ], 12542 + "pytankerkoenig": [ 12543 + "setuptools" 12544 + ], 12545 + "pytap2": [ 12546 + "setuptools" 12547 + ], 12548 + "pytautulli": [ 12549 + "setuptools" 12550 + ], 12551 + "pyte": [ 12552 + "setuptools" 12553 + ], 12554 + "pytelegrambotapi": [ 12555 + "setuptools" 12556 + ], 12557 + "pytenable": [ 12558 + "setuptools" 12559 + ], 12560 + "pytesseract": [ 12561 + "setuptools" 12562 + ], 12563 + "pytest": [ 12564 + "setuptools", 12565 + "setuptools-scm" 12566 + ], 12567 + "pytest-6": [ 12568 + "setuptools", 12569 + "setuptools-scm" 12570 + ], 12571 + "pytest-aio": [ 12572 + "setuptools" 12573 + ], 12574 + "pytest-aiohttp": [ 12575 + "setuptools", 12576 + "setuptools-scm" 12577 + ], 12578 + "pytest-annotate": [ 12579 + "setuptools" 12580 + ], 12581 + "pytest-arraydiff": [ 12582 + "setuptools", 12583 + "setuptools-scm" 12584 + ], 12585 + "pytest-astropy": [ 12586 + "setuptools", 12587 + "setuptools-scm" 12588 + ], 12589 + "pytest-astropy-header": [ 12590 + "setuptools", 12591 + "setuptools-scm" 12592 + ], 12593 + "pytest-asyncio": [ 12594 + "setuptools", 12595 + "setuptools-scm" 12596 + ], 12597 + "pytest-bdd": [ 12598 + "setuptools" 12599 + ], 12600 + "pytest-benchmark": [ 12601 + "setuptools" 12602 + ], 12603 + "pytest-black": [ 12604 + "setuptools", 12605 + "setuptools-scm" 12606 + ], 12607 + "pytest-cache": [ 12608 + "setuptools" 12609 + ], 12610 + "pytest-cases": [ 12611 + "setuptools", 12612 + "setuptools-scm" 12613 + ], 12614 + "pytest-catchlog": [ 12615 + "setuptools" 1214 12616 ], 1215 12617 "pytest-celery": [ 1216 - "flitBuildHook" 12618 + "flitBuildHook", 12619 + "setuptools" 1217 12620 ], 1218 12621 "pytest-check": [ 1219 - "flitBuildHook" 12622 + "flitBuildHook", 12623 + "setuptools" 1220 12624 ], 1221 12625 "pytest-cid": [ 1222 - "flitBuildHook" 12626 + "flitBuildHook", 12627 + "setuptools" 12628 + ], 12629 + "pytest-clarity": [ 12630 + "setuptools" 12631 + ], 12632 + "pytest-click": [ 12633 + "setuptools" 12634 + ], 12635 + "pytest-console-scripts": [ 12636 + "setuptools", 12637 + "setuptools-scm" 12638 + ], 12639 + "pytest-cov": [ 12640 + "setuptools" 12641 + ], 12642 + "pytest-cram": [ 12643 + "setuptools" 12644 + ], 12645 + "pytest-datadir": [ 12646 + "setuptools", 12647 + "setuptools-scm" 12648 + ], 12649 + "pytest-datafiles": [ 12650 + "setuptools" 12651 + ], 12652 + "pytest-dependency": [ 12653 + "setuptools" 12654 + ], 12655 + "pytest-describe": [ 12656 + "setuptools" 12657 + ], 12658 + "pytest-django": [ 12659 + "setuptools", 12660 + "setuptools-scm" 12661 + ], 12662 + "pytest-doctestplus": [ 12663 + "setuptools", 12664 + "setuptools-scm" 12665 + ], 12666 + "pytest-dotenv": [ 12667 + "setuptools" 12668 + ], 12669 + "pytest-env": [ 12670 + "setuptools" 12671 + ], 12672 + "pytest-error-for-skips": [ 12673 + "setuptools" 12674 + ], 12675 + "pytest-expect": [ 12676 + "setuptools" 12677 + ], 12678 + "pytest-factoryboy": [ 12679 + "setuptools" 12680 + ], 12681 + "pytest-filter-subpackage": [ 12682 + "setuptools", 12683 + "setuptools-scm" 12684 + ], 12685 + "pytest-fixture-config": [ 12686 + "setuptools" 12687 + ], 12688 + "pytest-flakes": [ 12689 + "setuptools" 12690 + ], 12691 + "pytest-flask": [ 12692 + "setuptools", 12693 + "setuptools-scm" 12694 + ], 12695 + "pytest-forked": [ 12696 + "setuptools", 12697 + "setuptools-scm" 12698 + ], 12699 + "pytest-freezegun": [ 12700 + "setuptools" 12701 + ], 12702 + "pytest-helpers-namespace": [ 12703 + "setuptools", 12704 + "setuptools-scm" 12705 + ], 12706 + "pytest-html": [ 12707 + "setuptools", 12708 + "setuptools-scm" 12709 + ], 12710 + "pytest-httpbin": [ 12711 + "setuptools" 1223 12712 ], 1224 12713 "pytest-httpserver": [ 1225 - "poetry-core" 12714 + "poetry-core", 12715 + "setuptools" 12716 + ], 12717 + "pytest-httpx": [ 12718 + "setuptools" 12719 + ], 12720 + "pytest-instafail": [ 12721 + "setuptools" 1226 12722 ], 1227 12723 "pytest-isort": [ 1228 - "poetry-core" 12724 + "poetry-core", 12725 + "setuptools" 12726 + ], 12727 + "pytest-json-report": [ 12728 + "setuptools" 12729 + ], 12730 + "pytest-lazy-fixture": [ 12731 + "setuptools" 12732 + ], 12733 + "pytest-localserver": [ 12734 + "setuptools" 12735 + ], 12736 + "pytest-logdog": [ 12737 + "setuptools", 12738 + "setuptools-scm" 12739 + ], 12740 + "pytest-metadata": [ 12741 + "setuptools", 12742 + "setuptools-scm" 12743 + ], 12744 + "pytest-mock": [ 12745 + "setuptools", 12746 + "setuptools-scm" 1229 12747 ], 1230 12748 "pytest-mockservers": [ 1231 - "poetry-core" 12749 + "poetry-core", 12750 + "setuptools" 12751 + ], 12752 + "pytest-mpl": [ 12753 + "setuptools", 12754 + "setuptools-scm" 12755 + ], 12756 + "pytest-mypy": [ 12757 + "setuptools", 12758 + "setuptools-scm" 12759 + ], 12760 + "pytest-mypy-plugins": [ 12761 + "setuptools" 12762 + ], 12763 + "pytest-openfiles": [ 12764 + "setuptools", 12765 + "setuptools-scm" 12766 + ], 12767 + "pytest-order": [ 12768 + "setuptools" 12769 + ], 12770 + "pytest-param-files": [ 12771 + "flit-core", 12772 + "flitBuildHook", 12773 + "setuptools" 1232 12774 ], 1233 12775 "pytest-profiling": [ 12776 + "setuptools", 1234 12777 "setuptools-git" 1235 12778 ], 12779 + "pytest-pylint": [ 12780 + "setuptools" 12781 + ], 12782 + "pytest-qt": [ 12783 + "setuptools", 12784 + "setuptools-scm" 12785 + ], 12786 + "pytest-raises": [ 12787 + "setuptools" 12788 + ], 12789 + "pytest-raisesregexp": [ 12790 + "setuptools" 12791 + ], 1236 12792 "pytest-raisin": [ 1237 12793 "flit-core", 1238 - "flitBuildHook" 12794 + "flitBuildHook", 12795 + "setuptools" 12796 + ], 12797 + "pytest-random-order": [ 12798 + "setuptools" 12799 + ], 12800 + "pytest-randomly": [ 12801 + "setuptools" 12802 + ], 12803 + "pytest-regressions": [ 12804 + "setuptools", 12805 + "setuptools-scm" 12806 + ], 12807 + "pytest-remotedata": [ 12808 + "setuptools", 12809 + "setuptools-scm" 12810 + ], 12811 + "pytest-repeat": [ 12812 + "setuptools", 12813 + "setuptools-scm" 12814 + ], 12815 + "pytest-rerunfailures": [ 12816 + "setuptools" 12817 + ], 12818 + "pytest-resource-path": [ 12819 + "setuptools" 12820 + ], 12821 + "pytest-runner": [ 12822 + "setuptools", 12823 + "setuptools-scm" 12824 + ], 12825 + "pytest-server-fixtures": [ 12826 + "setuptools" 12827 + ], 12828 + "pytest-services": [ 12829 + "setuptools", 12830 + "setuptools-scm" 12831 + ], 12832 + "pytest-shutil": [ 12833 + "setuptools" 12834 + ], 12835 + "pytest-snapshot": [ 12836 + "setuptools", 12837 + "setuptools-scm" 1239 12838 ], 1240 12839 "pytest-socket": [ 1241 - "poetry-core" 12840 + "poetry-core", 12841 + "setuptools" 12842 + ], 12843 + "pytest-subprocess": [ 12844 + "setuptools" 12845 + ], 12846 + "pytest-subtesthack": [ 12847 + "setuptools" 12848 + ], 12849 + "pytest-subtests": [ 12850 + "setuptools", 12851 + "setuptools-scm" 12852 + ], 12853 + "pytest-sugar": [ 12854 + "setuptools" 12855 + ], 12856 + "pytest-test-utils": [ 12857 + "setuptools" 12858 + ], 12859 + "pytest-testmon": [ 12860 + "setuptools" 12861 + ], 12862 + "pytest-timeout": [ 12863 + "setuptools" 12864 + ], 12865 + "pytest-tornado": [ 12866 + "setuptools" 12867 + ], 12868 + "pytest-tornasync": [ 12869 + "setuptools" 12870 + ], 12871 + "pytest-trio": [ 12872 + "setuptools" 12873 + ], 12874 + "pytest-twisted": [ 12875 + "setuptools" 12876 + ], 12877 + "pytest-unordered": [ 12878 + "setuptools" 12879 + ], 12880 + "pytest-vcr": [ 12881 + "setuptools" 12882 + ], 12883 + "pytest-virtualenv": [ 12884 + "setuptools" 12885 + ], 12886 + "pytest-warnings": [ 12887 + "setuptools" 12888 + ], 12889 + "pytest-watch": [ 12890 + "setuptools" 12891 + ], 12892 + "pytest-xdist": [ 12893 + "setuptools", 12894 + "setuptools-scm" 12895 + ], 12896 + "pytest-xprocess": [ 12897 + "setuptools", 12898 + "setuptools-scm" 12899 + ], 12900 + "pytest-xvfb": [ 12901 + "setuptools" 12902 + ], 12903 + "pytestcache": [ 12904 + "setuptools" 12905 + ], 12906 + "pytestcov": [ 12907 + "setuptools" 12908 + ], 12909 + "pytestrunner": [ 12910 + "setuptools", 12911 + "setuptools-scm" 1242 12912 ], 1243 12913 "python-awair": [ 1244 - "poetry-core" 12914 + "poetry-core", 12915 + "setuptools" 12916 + ], 12917 + "python-axolotl": [ 12918 + "setuptools" 12919 + ], 12920 + "python-axolotl-curve25519": [ 12921 + "setuptools" 12922 + ], 12923 + "python-barcode": [ 12924 + "setuptools", 12925 + "setuptools-scm" 12926 + ], 12927 + "python-baseconv": [ 12928 + "setuptools" 12929 + ], 12930 + "python-benedict": [ 12931 + "setuptools" 12932 + ], 12933 + "python-bidi": [ 12934 + "setuptools" 12935 + ], 12936 + "python-binance": [ 12937 + "setuptools" 12938 + ], 12939 + "python-box": [ 12940 + "setuptools" 1245 12941 ], 1246 12942 "python-cinderclient": [ 1247 - "pbr" 12943 + "pbr", 12944 + "setuptools" 12945 + ], 12946 + "python-codon-tables": [ 12947 + "setuptools" 12948 + ], 12949 + "python-constraint": [ 12950 + "setuptools" 12951 + ], 12952 + "python-crfsuite": [ 12953 + "setuptools" 12954 + ], 12955 + "python-crontab": [ 12956 + "setuptools" 1248 12957 ], 1249 12958 "python-csxcad": [ 1250 - "cython" 12959 + "cython", 12960 + "setuptools" 12961 + ], 12962 + "python-ctags3": [ 12963 + "setuptools" 12964 + ], 12965 + "python-daemon": [ 12966 + "setuptools" 12967 + ], 12968 + "python-datemath": [ 12969 + "setuptools" 12970 + ], 12971 + "python-dateutil": [ 12972 + "setuptools", 12973 + "setuptools-scm" 12974 + ], 12975 + "python-dbusmock": [ 12976 + "setuptools", 12977 + "setuptools-scm" 12978 + ], 12979 + "python-didl-lite": [ 12980 + "setuptools" 12981 + ], 12982 + "python-digitalocean": [ 12983 + "setuptools" 12984 + ], 12985 + "python-docx": [ 12986 + "setuptools" 12987 + ], 12988 + "python-doi": [ 12989 + "setuptools" 12990 + ], 12991 + "python-dotenv": [ 12992 + "setuptools" 12993 + ], 12994 + "python-ecobee-api": [ 12995 + "setuptools" 12996 + ], 12997 + "python-editor": [ 12998 + "setuptools" 12999 + ], 13000 + "python-engineio": [ 13001 + "setuptools" 13002 + ], 13003 + "python-etcd": [ 13004 + "setuptools" 13005 + ], 13006 + "python-ethtool": [ 13007 + "setuptools" 13008 + ], 13009 + "python-family-hub-local": [ 13010 + "setuptools" 13011 + ], 13012 + "python-fedora": [ 13013 + "setuptools" 13014 + ], 13015 + "python-flirt": [ 13016 + "setuptools" 1251 13017 ], 1252 13018 "python-fontconfig": [ 1253 - "cython" 13019 + "cython", 13020 + "setuptools" 13021 + ], 13022 + "python-forecastio": [ 13023 + "setuptools" 13024 + ], 13025 + "python-frontmatter": [ 13026 + "setuptools" 13027 + ], 13028 + "python-fsutil": [ 13029 + "setuptools" 13030 + ], 13031 + "python-gammu": [ 13032 + "setuptools" 13033 + ], 13034 + "python-gitlab": [ 13035 + "setuptools" 1254 13036 ], 1255 13037 "python-glanceclient": [ 1256 - "pbr" 13038 + "pbr", 13039 + "setuptools" 13040 + ], 13041 + "python-gnupg": [ 13042 + "setuptools" 13043 + ], 13044 + "python-google-nest": [ 13045 + "setuptools" 1257 13046 ], 1258 13047 "python-gvm": [ 1259 - "poetry-core" 13048 + "poetry-core", 13049 + "setuptools" 1260 13050 ], 1261 13051 "python-heatclient": [ 1262 - "pbr" 13052 + "pbr", 13053 + "setuptools" 13054 + ], 13055 + "python-hglib": [ 13056 + "setuptools" 13057 + ], 13058 + "python-homewizard-energy": [ 13059 + "poetry-core", 13060 + "setuptools" 13061 + ], 13062 + "python-hosts": [ 13063 + "setuptools" 13064 + ], 13065 + "python-hpilo": [ 13066 + "setuptools" 13067 + ], 13068 + "python-http-client": [ 13069 + "setuptools" 13070 + ], 13071 + "python-i18n": [ 13072 + "setuptools" 13073 + ], 13074 + "python-igraph": [ 13075 + "setuptools" 13076 + ], 13077 + "python-ipmi": [ 13078 + "setuptools" 1263 13079 ], 1264 13080 "python-ironicclient": [ 1265 - "pbr" 13081 + "pbr", 13082 + "setuptools" 13083 + ], 13084 + "python-izone": [ 13085 + "setuptools", 13086 + "setuptools-scm" 1266 13087 ], 1267 13088 "python-jenkins": [ 1268 - "pbr" 13089 + "pbr", 13090 + "setuptools" 13091 + ], 13092 + "python-jose": [ 13093 + "setuptools" 13094 + ], 13095 + "python-json-logger": [ 13096 + "setuptools" 13097 + ], 13098 + "python-jsonrpc-server": [ 13099 + "setuptools" 13100 + ], 13101 + "python-juicenet": [ 13102 + "setuptools" 1269 13103 ], 1270 13104 "python-kasa": [ 1271 - "poetry-core" 13105 + "poetry-core", 13106 + "setuptools" 13107 + ], 13108 + "python-keycloak": [ 13109 + "setuptools" 13110 + ], 13111 + "python-keyczar": [ 13112 + "setuptools" 1272 13113 ], 1273 13114 "python-keystoneclient": [ 1274 - "pbr" 13115 + "pbr", 13116 + "setuptools" 13117 + ], 13118 + "python-ldap-test": [ 13119 + "setuptools" 13120 + ], 13121 + "python-levenshtein": [ 13122 + "setuptools" 13123 + ], 13124 + "python-linux-procfs": [ 13125 + "setuptools" 13126 + ], 13127 + "python-logstash": [ 13128 + "setuptools" 13129 + ], 13130 + "python-louvain": [ 13131 + "setuptools" 13132 + ], 13133 + "python-lsp-black": [ 13134 + "setuptools" 13135 + ], 13136 + "python-lsp-jsonrpc": [ 13137 + "setuptools" 13138 + ], 13139 + "python-lsp-server": [ 13140 + "setuptools", 13141 + "setuptools-scm" 13142 + ], 13143 + "python-ly": [ 13144 + "setuptools" 13145 + ], 13146 + "python-lz4": [ 13147 + "setuptools", 13148 + "setuptools-scm" 13149 + ], 13150 + "python-lzf": [ 13151 + "setuptools" 13152 + ], 13153 + "python-lzo": [ 13154 + "setuptools" 13155 + ], 13156 + "python-magic": [ 13157 + "setuptools" 1275 13158 ], 1276 13159 "python-manilaclient": [ 1277 - "pbr" 13160 + "pbr", 13161 + "setuptools" 13162 + ], 13163 + "python-mapnik": [ 13164 + "setuptools" 13165 + ], 13166 + "python-markdown-math": [ 13167 + "setuptools" 13168 + ], 13169 + "python-memcached": [ 13170 + "setuptools" 1278 13171 ], 1279 13172 "python-miio": [ 1280 13173 "poetry", 1281 - "poetry-core" 13174 + "poetry-core", 13175 + "setuptools" 13176 + ], 13177 + "python-mimeparse": [ 13178 + "setuptools" 13179 + ], 13180 + "python-mnist": [ 13181 + "setuptools" 13182 + ], 13183 + "python-mpv-jsonipc": [ 13184 + "setuptools" 13185 + ], 13186 + "python-multipart": [ 13187 + "setuptools" 13188 + ], 13189 + "python-mystrom": [ 13190 + "setuptools" 13191 + ], 13192 + "python-nest": [ 13193 + "setuptools" 13194 + ], 13195 + "python-nmap": [ 13196 + "setuptools" 13197 + ], 13198 + "python-nomad": [ 13199 + "setuptools" 1282 13200 ], 1283 13201 "python-novaclient": [ 1284 - "pbr" 13202 + "pbr", 13203 + "setuptools" 13204 + ], 13205 + "python-nvd3": [ 13206 + "setuptools" 13207 + ], 13208 + "python-oauth2": [ 13209 + "setuptools" 13210 + ], 13211 + "python-olm": [ 13212 + "setuptools" 13213 + ], 13214 + "python-opendata-transport": [ 13215 + "setuptools" 1285 13216 ], 1286 13217 "python-openems": [ 1287 - "cython" 13218 + "cython", 13219 + "setuptools" 1288 13220 ], 1289 13221 "python-openstackclient": [ 1290 - "pbr" 13222 + "pbr", 13223 + "setuptools" 13224 + ], 13225 + "python-openzwave": [ 13226 + "cython", 13227 + "setuptools" 13228 + ], 13229 + "python-openzwave-mqtt": [ 13230 + "setuptools" 13231 + ], 13232 + "python-osc": [ 13233 + "setuptools" 13234 + ], 13235 + "python-owasp-zap-v2-4": [ 13236 + "setuptools" 13237 + ], 13238 + "python-packer": [ 13239 + "setuptools" 1291 13240 ], 1292 13241 "python-pae": [ 1293 - "poetry-core" 13242 + "poetry-core", 13243 + "setuptools" 13244 + ], 13245 + "python-pam": [ 13246 + "setuptools" 13247 + ], 13248 + "python-periphery": [ 13249 + "setuptools" 13250 + ], 13251 + "python-picnic-api": [ 13252 + "setuptools" 13253 + ], 13254 + "python-pidfile": [ 13255 + "setuptools" 13256 + ], 13257 + "python-pipedrive": [ 13258 + "setuptools" 1294 13259 ], 1295 13260 "python-pkcs11": [ 1296 - "cython" 13261 + "cython", 13262 + "setuptools", 13263 + "setuptools-scm" 13264 + ], 13265 + "python-prctl": [ 13266 + "setuptools" 13267 + ], 13268 + "python-ptrace": [ 13269 + "setuptools" 13270 + ], 13271 + "python-pushover": [ 13272 + "setuptools" 13273 + ], 13274 + "python-rabbitair": [ 13275 + "setuptools" 13276 + ], 13277 + "python-rapidjson": [ 13278 + "setuptools" 13279 + ], 13280 + "python-redis-lock": [ 13281 + "setuptools" 13282 + ], 13283 + "python-registry": [ 13284 + "setuptools" 13285 + ], 13286 + "python-rtmidi": [ 13287 + "setuptools" 13288 + ], 13289 + "python-sat": [ 13290 + "setuptools" 13291 + ], 13292 + "python-simple-hipchat": [ 13293 + "setuptools" 13294 + ], 13295 + "python-slugify": [ 13296 + "setuptools" 13297 + ], 13298 + "python-smarttub": [ 13299 + "setuptools" 13300 + ], 13301 + "python-snap7": [ 13302 + "setuptools" 13303 + ], 13304 + "python-snappy": [ 13305 + "setuptools" 13306 + ], 13307 + "python-socketio": [ 13308 + "setuptools" 13309 + ], 13310 + "python-socks": [ 13311 + "setuptools" 1297 13312 ], 1298 13313 "python-songpal": [ 1299 - "poetry-core" 13314 + "poetry-core", 13315 + "setuptools" 13316 + ], 13317 + "python-sql": [ 13318 + "setuptools" 13319 + ], 13320 + "python-status": [ 13321 + "setuptools" 13322 + ], 13323 + "python-stdnum": [ 13324 + "setuptools" 13325 + ], 13326 + "python-string-utils": [ 13327 + "setuptools" 13328 + ], 13329 + "python-subunit": [ 13330 + "setuptools" 1300 13331 ], 1301 13332 "python-swiftclient": [ 1302 - "pbr" 13333 + "pbr", 13334 + "setuptools" 13335 + ], 13336 + "python-tado": [ 13337 + "setuptools" 13338 + ], 13339 + "python-telegram": [ 13340 + "setuptools" 13341 + ], 13342 + "python-telegram-bot": [ 13343 + "setuptools" 13344 + ], 13345 + "python-toolbox": [ 13346 + "setuptools" 1303 13347 ], 1304 13348 "python-trovo": [ 1305 - "poetry" 13349 + "poetry", 13350 + "setuptools" 1306 13351 ], 1307 - "python_openzwave": [ 1308 - "cython" 13352 + "python-twitch-client": [ 13353 + "setuptools" 13354 + ], 13355 + "python-twitter": [ 13356 + "setuptools" 13357 + ], 13358 + "python-u2flib-host": [ 13359 + "setuptools" 13360 + ], 13361 + "python-uinput": [ 13362 + "setuptools" 13363 + ], 13364 + "python-unshare": [ 13365 + "setuptools" 13366 + ], 13367 + "python-utils": [ 13368 + "setuptools" 13369 + ], 13370 + "python-vagrant": [ 13371 + "setuptools" 13372 + ], 13373 + "python-velbus": [ 13374 + "setuptools" 13375 + ], 13376 + "python-vipaccess": [ 13377 + "setuptools" 13378 + ], 13379 + "python-vlc": [ 13380 + "setuptools" 13381 + ], 13382 + "python-whois": [ 13383 + "setuptools" 13384 + ], 13385 + "python-wink": [ 13386 + "setuptools" 13387 + ], 13388 + "python-xmp-toolkit": [ 13389 + "setuptools" 13390 + ], 13391 + "python-zbar": [ 13392 + "setuptools" 13393 + ], 13394 + "python3-application": [ 13395 + "setuptools" 13396 + ], 13397 + "python3-eventlib": [ 13398 + "setuptools" 13399 + ], 13400 + "python3-gnutls": [ 13401 + "setuptools" 13402 + ], 13403 + "python3-openid": [ 13404 + "setuptools" 13405 + ], 13406 + "python3-saml": [ 13407 + "setuptools" 13408 + ], 13409 + "pythoncatchconflictshook": [ 13410 + "setuptools" 13411 + ], 13412 + "pythondialog": [ 13413 + "setuptools" 13414 + ], 13415 + "pythonefl": [ 13416 + "setuptools" 13417 + ], 13418 + "pythonegardia": [ 13419 + "setuptools" 13420 + ], 13421 + "pythonfinder": [ 13422 + "setuptools" 13423 + ], 13424 + "pythonix": [ 13425 + "setuptools" 13426 + ], 13427 + "pythonnet": [ 13428 + "setuptools" 13429 + ], 13430 + "pythran": [ 13431 + "setuptools" 13432 + ], 13433 + "pytibber": [ 13434 + "setuptools" 1309 13435 ], 1310 13436 "pytile": [ 1311 - "poetry-core" 13437 + "poetry-core", 13438 + "setuptools" 13439 + ], 13440 + "pytimeparse": [ 13441 + "setuptools" 1312 13442 ], 1313 13443 "pytkdocs": [ 1314 13444 "pdm-pep517" 1315 13445 ], 13446 + "pytm": [ 13447 + "setuptools" 13448 + ], 13449 + "pytmx": [ 13450 + "setuptools" 13451 + ], 13452 + "pytoml": [ 13453 + "setuptools" 13454 + ], 13455 + "pytomlpp": [ 13456 + "setuptools" 13457 + ], 13458 + "pytomorrowio": [ 13459 + "setuptools" 13460 + ], 13461 + "pytools": [ 13462 + "setuptools" 13463 + ], 13464 + "pytorch": [ 13465 + "setuptools" 13466 + ], 13467 + "pytorch-bin": [ 13468 + "setuptools" 13469 + ], 13470 + "pytorch-lightning": [ 13471 + "setuptools" 13472 + ], 13473 + "pytorch-metric-learning": [ 13474 + "setuptools" 13475 + ], 13476 + "pytorch-pfn-extras": [ 13477 + "setuptools" 13478 + ], 13479 + "pytorchwithcuda": [ 13480 + "setuptools" 13481 + ], 13482 + "pytorchwithoutcuda": [ 13483 + "setuptools" 13484 + ], 13485 + "pytraccar": [ 13486 + "poetry-core", 13487 + "setuptools" 13488 + ], 13489 + "pytradfri": [ 13490 + "setuptools" 13491 + ], 13492 + "pytrafikverket": [ 13493 + "setuptools" 13494 + ], 13495 + "pytransportnsw": [ 13496 + "setuptools" 13497 + ], 13498 + "pytransportnswv2": [ 13499 + "setuptools" 13500 + ], 13501 + "pytrends": [ 13502 + "setuptools" 13503 + ], 13504 + "pytricia": [ 13505 + "setuptools" 13506 + ], 13507 + "pyttsx3": [ 13508 + "setuptools" 13509 + ], 13510 + "pytube": [ 13511 + "setuptools" 13512 + ], 13513 + "pytun": [ 13514 + "setuptools" 13515 + ], 13516 + "pyturbojpeg": [ 13517 + "setuptools" 13518 + ], 13519 + "pytweening": [ 13520 + "setuptools" 13521 + ], 13522 + "pytwitchapi": [ 13523 + "setuptools" 13524 + ], 13525 + "pytz": [ 13526 + "setuptools" 13527 + ], 13528 + "pytz-deprecation-shim": [ 13529 + "setuptools" 13530 + ], 1316 13531 "pytzdata": [ 1317 - "poetry" 13532 + "poetry", 13533 + "setuptools" 13534 + ], 13535 + "pyu2f": [ 13536 + "setuptools" 13537 + ], 13538 + "pyuavcan": [ 13539 + "setuptools" 13540 + ], 13541 + "pyudev": [ 13542 + "setuptools" 13543 + ], 13544 + "pyunifi": [ 13545 + "setuptools" 13546 + ], 13547 + "pyunifiprotect": [ 13548 + "setuptools" 13549 + ], 13550 + "pyupdate": [ 13551 + "setuptools" 13552 + ], 13553 + "pyupgrade": [ 13554 + "setuptools" 13555 + ], 13556 + "pyuptimerobot": [ 13557 + "setuptools" 13558 + ], 13559 + "pyusb": [ 13560 + "setuptools", 13561 + "setuptools-scm" 13562 + ], 13563 + "pyuseragents": [ 13564 + "setuptools" 13565 + ], 13566 + "pyutil": [ 13567 + "setuptools" 13568 + ], 13569 + "pyutilib": [ 13570 + "setuptools" 13571 + ], 13572 + "pyuv": [ 13573 + "setuptools" 13574 + ], 13575 + "pyvcd": [ 13576 + "setuptools", 13577 + "setuptools-scm" 1318 13578 ], 1319 13579 "pyvera": [ 1320 - "poetry-core" 13580 + "poetry-core", 13581 + "setuptools" 13582 + ], 13583 + "pyverilog": [ 13584 + "setuptools" 13585 + ], 13586 + "pyversasense": [ 13587 + "setuptools" 13588 + ], 13589 + "pyvesync": [ 13590 + "setuptools" 13591 + ], 13592 + "pyvex": [ 13593 + "setuptools" 13594 + ], 13595 + "pyvicare": [ 13596 + "setuptools" 13597 + ], 13598 + "pyvips": [ 13599 + "setuptools" 13600 + ], 13601 + "pyvis": [ 13602 + "setuptools" 13603 + ], 13604 + "pyvisa": [ 13605 + "setuptools", 13606 + "setuptools-scm" 13607 + ], 13608 + "pyvisa-py": [ 13609 + "setuptools", 13610 + "setuptools-scm" 13611 + ], 13612 + "pyviz-comms": [ 13613 + "setuptools" 13614 + ], 13615 + "pyvizio": [ 13616 + "setuptools" 13617 + ], 13618 + "pyvlx": [ 13619 + "setuptools" 13620 + ], 13621 + "pyvmomi": [ 13622 + "setuptools" 13623 + ], 13624 + "pyvo": [ 13625 + "setuptools", 13626 + "setuptools-scm" 13627 + ], 13628 + "pyvolumio": [ 13629 + "setuptools" 13630 + ], 13631 + "pyvoro": [ 13632 + "setuptools" 13633 + ], 13634 + "pywal": [ 13635 + "setuptools" 13636 + ], 13637 + "pywatchman": [ 13638 + "setuptools" 1321 13639 ], 1322 13640 "pywavelets": [ 1323 - "cython" 13641 + "cython", 13642 + "setuptools" 13643 + ], 13644 + "pywayland": [ 13645 + "setuptools" 1324 13646 ], 1325 13647 "pywbem": [ 1326 - "pbr" 13648 + "pbr", 13649 + "setuptools" 13650 + ], 13651 + "pyweatherflowrest": [ 13652 + "setuptools" 13653 + ], 13654 + "pywebpush": [ 13655 + "setuptools" 13656 + ], 13657 + "pywebview": [ 13658 + "setuptools" 1327 13659 ], 1328 13660 "pywemo": [ 1329 - "poetry-core" 13661 + "poetry-core", 13662 + "setuptools" 13663 + ], 13664 + "pywerview": [ 13665 + "setuptools" 13666 + ], 13667 + "pywilight": [ 13668 + "setuptools" 13669 + ], 13670 + "pywinrm": [ 13671 + "setuptools" 13672 + ], 13673 + "pywizlight": [ 13674 + "setuptools" 13675 + ], 13676 + "pywlroots": [ 13677 + "setuptools" 1330 13678 ], 1331 13679 "pyworld": [ 1332 - "cython" 13680 + "cython", 13681 + "setuptools" 13682 + ], 13683 + "pyws66i": [ 13684 + "setuptools" 13685 + ], 13686 + "pyx": [ 13687 + "setuptools" 13688 + ], 13689 + "pyxattr": [ 13690 + "setuptools" 13691 + ], 13692 + "pyxb": [ 13693 + "setuptools" 13694 + ], 13695 + "pyxbe": [ 13696 + "setuptools" 13697 + ], 13698 + "pyxdg": [ 13699 + "setuptools" 13700 + ], 13701 + "pyxeoma": [ 13702 + "setuptools" 13703 + ], 13704 + "pyxiaomigateway": [ 13705 + "setuptools" 13706 + ], 13707 + "pyxl3": [ 13708 + "setuptools" 13709 + ], 13710 + "pyxnat": [ 13711 + "setuptools" 1333 13712 ], 1334 13713 "pyyaml": [ 1335 - "cython" 13714 + "cython", 13715 + "setuptools" 1336 13716 ], 1337 13717 "pyyaml-env-tag": [ 1338 - "flit-core" 13718 + "flit-core", 13719 + "setuptools" 13720 + ], 13721 + "pyzbar": [ 13722 + "setuptools" 13723 + ], 13724 + "pyzerproc": [ 13725 + "setuptools" 13726 + ], 13727 + "pyzmq": [ 13728 + "setuptools" 13729 + ], 13730 + "pyzufall": [ 13731 + "setuptools" 13732 + ], 13733 + "qcelemental": [ 13734 + "setuptools" 13735 + ], 13736 + "qcengine": [ 13737 + "setuptools" 1339 13738 ], 1340 13739 "qcs-api-client": [ 1341 - "poetry-core" 13740 + "poetry-core", 13741 + "setuptools" 13742 + ], 13743 + "qdarkstyle": [ 13744 + "setuptools" 13745 + ], 13746 + "qdldl": [ 13747 + "setuptools" 13748 + ], 13749 + "qiling": [ 13750 + "setuptools" 13751 + ], 13752 + "qimage2ndarray": [ 13753 + "setuptools" 13754 + ], 13755 + "qingping-ble": [ 13756 + "poetry-core", 13757 + "setuptools" 13758 + ], 13759 + "qiskit": [ 13760 + "setuptools" 1342 13761 ], 1343 13762 "qiskit-aer": [ 1344 - "cython" 13763 + "cython", 13764 + "setuptools" 13765 + ], 13766 + "qiskit-finance": [ 13767 + "setuptools" 13768 + ], 13769 + "qiskit-ibmq-provider": [ 13770 + "setuptools" 13771 + ], 13772 + "qiskit-ignis": [ 13773 + "setuptools" 13774 + ], 13775 + "qiskit-machine-learning": [ 13776 + "setuptools" 13777 + ], 13778 + "qiskit-nature": [ 13779 + "setuptools" 13780 + ], 13781 + "qiskit-optimization": [ 13782 + "setuptools" 1345 13783 ], 1346 13784 "qiskit-terra": [ 1347 - "cython" 13785 + "cython", 13786 + "setuptools" 13787 + ], 13788 + "qmk-dotty-dict": [ 13789 + "setuptools", 13790 + "setuptools-scm" 13791 + ], 13792 + "qnap-qsw": [ 13793 + "setuptools" 13794 + ], 13795 + "qnapstats": [ 13796 + "setuptools" 13797 + ], 13798 + "qrcode": [ 13799 + "setuptools" 13800 + ], 13801 + "qreactor": [ 13802 + "setuptools" 13803 + ], 13804 + "qscintilla": [ 13805 + "setuptools" 13806 + ], 13807 + "qscintilla-qt4": [ 13808 + "setuptools" 13809 + ], 13810 + "qscintilla-qt5": [ 13811 + "setuptools" 1348 13812 ], 1349 13813 "qstylizer": [ 1350 - "pbr" 13814 + "pbr", 13815 + "setuptools" 13816 + ], 13817 + "qt5reactor": [ 13818 + "setuptools" 13819 + ], 13820 + "qtawesome": [ 13821 + "setuptools" 13822 + ], 13823 + "qtconsole": [ 13824 + "setuptools" 13825 + ], 13826 + "qtpy": [ 13827 + "setuptools" 13828 + ], 13829 + "qualysclient": [ 13830 + "setuptools" 13831 + ], 13832 + "quamash": [ 13833 + "setuptools" 13834 + ], 13835 + "quandl": [ 13836 + "setuptools" 13837 + ], 13838 + "quantities": [ 13839 + "setuptools" 13840 + ], 13841 + "quantum-gateway": [ 13842 + "setuptools" 13843 + ], 13844 + "querystring-parser": [ 13845 + "setuptools" 1351 13846 ], 1352 13847 "questionary": [ 1353 - "poetry-core" 13848 + "poetry-core", 13849 + "setuptools" 13850 + ], 13851 + "queuelib": [ 13852 + "setuptools" 1354 13853 ], 1355 13854 "qutip": [ 1356 - "cython" 13855 + "cython", 13856 + "setuptools" 13857 + ], 13858 + "r2pipe": [ 13859 + "setuptools" 13860 + ], 13861 + "rachiopy": [ 13862 + "setuptools" 13863 + ], 13864 + "radicale-infcloud": [ 13865 + "setuptools" 13866 + ], 13867 + "radio-beam": [ 13868 + "setuptools", 13869 + "setuptools-scm" 1357 13870 ], 1358 13871 "radios": [ 1359 - "poetry-core" 13872 + "poetry-core", 13873 + "setuptools" 13874 + ], 13875 + "radiotherm": [ 13876 + "setuptools" 13877 + ], 13878 + "radish-bdd": [ 13879 + "setuptools" 13880 + ], 13881 + "railroad-diagrams": [ 13882 + "setuptools" 13883 + ], 13884 + "rainbowstream": [ 13885 + "setuptools" 13886 + ], 13887 + "raincloudy": [ 13888 + "setuptools" 13889 + ], 13890 + "ramlfications": [ 13891 + "setuptools" 13892 + ], 13893 + "random2": [ 13894 + "setuptools" 13895 + ], 13896 + "rangehttpserver": [ 13897 + "setuptools" 13898 + ], 13899 + "rapidfuzz": [ 13900 + "setuptools" 13901 + ], 13902 + "rapidfuzz-capi": [ 13903 + "setuptools" 13904 + ], 13905 + "rarfile": [ 13906 + "setuptools" 1360 13907 ], 1361 13908 "rasterio": [ 13909 + "cython", 13910 + "setuptools" 13911 + ], 13912 + "ratelim": [ 13913 + "setuptools" 13914 + ], 13915 + "ratelimit": [ 13916 + "setuptools" 13917 + ], 13918 + "ratelimiter": [ 13919 + "setuptools" 13920 + ], 13921 + "raven": [ 13922 + "setuptools" 13923 + ], 13924 + "rawkit": [ 13925 + "setuptools" 13926 + ], 13927 + "rbtools": [ 13928 + "setuptools" 13929 + ], 13930 + "rcssmin": [ 13931 + "setuptools" 13932 + ], 13933 + "rdflib": [ 13934 + "setuptools" 13935 + ], 13936 + "rdkit": [ 13937 + "setuptools" 13938 + ], 13939 + "re-assert": [ 13940 + "setuptools" 13941 + ], 13942 + "readability-lxml": [ 13943 + "setuptools" 13944 + ], 13945 + "readchar": [ 13946 + "setuptools" 13947 + ], 13948 + "readlike": [ 13949 + "setuptools" 13950 + ], 13951 + "readme": [ 13952 + "setuptools" 13953 + ], 13954 + "readme-renderer": [ 13955 + "setuptools" 13956 + ], 13957 + "readstats": [ 1362 13958 "cython" 1363 13959 ], 13960 + "readthedocs-sphinx-ext": [ 13961 + "setuptools" 13962 + ], 13963 + "rebulk": [ 13964 + "setuptools" 13965 + ], 13966 + "recoll": [ 13967 + "setuptools" 13968 + ], 13969 + "recommonmark": [ 13970 + "setuptools" 13971 + ], 13972 + "recordlinkage": [ 13973 + "setuptools" 13974 + ], 13975 + "redbaron": [ 13976 + "setuptools" 13977 + ], 13978 + "redis": [ 13979 + "setuptools" 13980 + ], 13981 + "rednose": [ 13982 + "setuptools" 13983 + ], 1364 13984 "reedsolo": [ 1365 - "cython" 13985 + "cython", 13986 + "setuptools" 13987 + ], 13988 + "reflink": [ 13989 + "setuptools" 1366 13990 ], 1367 13991 "regenmaschine": [ 1368 - "poetry-core" 13992 + "poetry-core", 13993 + "setuptools" 13994 + ], 13995 + "regex": [ 13996 + "setuptools" 13997 + ], 13998 + "regional": [ 13999 + "setuptools" 14000 + ], 14001 + "reikna": [ 14002 + "setuptools" 14003 + ], 14004 + "related": [ 14005 + "setuptools" 14006 + ], 14007 + "relatorio": [ 14008 + "setuptools" 14009 + ], 14010 + "releases": [ 14011 + "setuptools" 1369 14012 ], 1370 14013 "remarshal": [ 1371 - "poetry-core" 14014 + "poetry-core", 14015 + "setuptools" 14016 + ], 14017 + "remi": [ 14018 + "setuptools" 1372 14019 ], 1373 14020 "renault-api": [ 1374 - "poetry-core" 14021 + "poetry-core", 14022 + "setuptools" 1375 14023 ], 1376 14024 "rencode": [ 1377 - "cython" 14025 + "cython", 14026 + "setuptools" 14027 + ], 14028 + "reolink": [ 14029 + "setuptools" 14030 + ], 14031 + "reorder-python-imports": [ 14032 + "setuptools" 14033 + ], 14034 + "reparser": [ 14035 + "setuptools" 14036 + ], 14037 + "repocheck": [ 14038 + "setuptools" 14039 + ], 14040 + "reportengine": [ 14041 + "flit", 14042 + "setuptools" 14043 + ], 14044 + "reportlab": [ 14045 + "setuptools" 14046 + ], 14047 + "repoze-lru": [ 14048 + "setuptools" 14049 + ], 14050 + "repoze-sphinx-autointerface": [ 14051 + "setuptools" 14052 + ], 14053 + "repoze-who": [ 14054 + "setuptools" 1378 14055 ], 1379 14056 "reproject": [ 1380 - "cython" 14057 + "cython", 14058 + "setuptools", 14059 + "setuptools-scm" 14060 + ], 14061 + "reqif": [ 14062 + "poetry-core", 14063 + "setuptools" 14064 + ], 14065 + "requests": [ 14066 + "setuptools" 14067 + ], 14068 + "requests-aws4auth": [ 14069 + "setuptools" 1381 14070 ], 1382 14071 "requests-cache": [ 1383 - "poetry-core" 14072 + "poetry-core", 14073 + "setuptools" 14074 + ], 14075 + "requests-credssp": [ 14076 + "setuptools" 14077 + ], 14078 + "requests-download": [ 14079 + "setuptools" 14080 + ], 14081 + "requests-file": [ 14082 + "setuptools" 14083 + ], 14084 + "requests-futures": [ 14085 + "setuptools" 14086 + ], 14087 + "requests-hawk": [ 14088 + "setuptools" 14089 + ], 14090 + "requests-http-signature": [ 14091 + "setuptools", 14092 + "setuptools-scm" 14093 + ], 14094 + "requests-kerberos": [ 14095 + "setuptools" 1384 14096 ], 1385 14097 "requests-mock": [ 1386 - "pbr" 14098 + "pbr", 14099 + "setuptools" 14100 + ], 14101 + "requests-ntlm": [ 14102 + "setuptools" 14103 + ], 14104 + "requests-oauthlib": [ 14105 + "setuptools" 14106 + ], 14107 + "requests-pkcs12": [ 14108 + "setuptools" 14109 + ], 14110 + "requests-toolbelt": [ 14111 + "setuptools" 1387 14112 ], 1388 14113 "requests-unixsocket": [ 1389 - "pbr" 14114 + "pbr", 14115 + "setuptools" 1390 14116 ], 1391 14117 "requestsexceptions": [ 1392 - "pbr" 14118 + "pbr", 14119 + "setuptools" 14120 + ], 14121 + "requirements-detector": [ 14122 + "poetry-core", 14123 + "setuptools" 1393 14124 ], 1394 14125 "requirements-parser": [ 1395 - "poetry-core" 14126 + "poetry-core", 14127 + "setuptools" 1396 14128 ], 1397 14129 "resampy": [ 1398 - "cython" 14130 + "cython", 14131 + "setuptools" 14132 + ], 14133 + "resolvelib": [ 14134 + "setuptools" 14135 + ], 14136 + "responses": [ 14137 + "setuptools" 14138 + ], 14139 + "respx": [ 14140 + "setuptools" 14141 + ], 14142 + "restfly": [ 14143 + "setuptools" 14144 + ], 14145 + "restrictedpython": [ 14146 + "setuptools" 14147 + ], 14148 + "restructuredtext-lint": [ 14149 + "setuptools" 14150 + ], 14151 + "restview": [ 14152 + "setuptools" 14153 + ], 14154 + "result": [ 14155 + "setuptools" 14156 + ], 14157 + "rethinkdb": [ 14158 + "setuptools" 1399 14159 ], 1400 14160 "retry": [ 1401 - "pbr" 14161 + "pbr", 14162 + "setuptools" 14163 + ], 14164 + "retry-decorator": [ 14165 + "setuptools" 14166 + ], 14167 + "retrying": [ 14168 + "setuptools" 14169 + ], 14170 + "retworkx": [ 14171 + "setuptools" 14172 + ], 14173 + "rfc3339": [ 14174 + "setuptools" 14175 + ], 14176 + "rfc3339-validator": [ 14177 + "setuptools" 14178 + ], 14179 + "rfc3986": [ 14180 + "setuptools" 14181 + ], 14182 + "rfc3987": [ 14183 + "setuptools" 14184 + ], 14185 + "rfc6555": [ 14186 + "setuptools" 14187 + ], 14188 + "rfc7464": [ 14189 + "setuptools" 14190 + ], 14191 + "rfcat": [ 14192 + "setuptools" 14193 + ], 14194 + "rflink": [ 14195 + "setuptools" 1402 14196 ], 1403 14197 "rich": [ 1404 - "poetry-core" 14198 + "poetry-core", 14199 + "setuptools" 14200 + ], 14201 + "rich-rst": [ 14202 + "setuptools" 14203 + ], 14204 + "ring-doorbell": [ 14205 + "setuptools" 1405 14206 ], 1406 14207 "rio-tiler": [ 1407 14208 "flit-core" 1408 14209 ], 14210 + "ripe-atlas-cousteau": [ 14211 + "setuptools" 14212 + ], 14213 + "ripe-atlas-sagan": [ 14214 + "setuptools" 14215 + ], 14216 + "riprova": [ 14217 + "setuptools" 14218 + ], 1409 14219 "ripser": [ 1410 - "cython" 14220 + "cython", 14221 + "setuptools" 14222 + ], 14223 + "rising": [ 14224 + "setuptools" 14225 + ], 14226 + "ritassist": [ 14227 + "setuptools" 14228 + ], 14229 + "rjpl": [ 14230 + "setuptools" 14231 + ], 14232 + "rjsmin": [ 14233 + "setuptools" 14234 + ], 14235 + "rki-covid-parser": [ 14236 + "setuptools" 14237 + ], 14238 + "rlax": [ 14239 + "setuptools" 14240 + ], 14241 + "rlp": [ 14242 + "setuptools" 1411 14243 ], 1412 14244 "rmcl": [ 1413 - "poetry-core" 14245 + "poetry-core", 14246 + "setuptools" 1414 14247 ], 1415 14248 "rmfuse": [ 1416 14249 "poetry-core" 1417 14250 ], 1418 14251 "rmrl": [ 1419 - "poetry-core" 14252 + "poetry-core", 14253 + "setuptools" 14254 + ], 14255 + "rnc2rng": [ 14256 + "setuptools" 14257 + ], 14258 + "rnginline": [ 14259 + "setuptools" 14260 + ], 14261 + "rns": [ 14262 + "setuptools" 14263 + ], 14264 + "robot-detection": [ 14265 + "setuptools" 14266 + ], 14267 + "robotframework": [ 14268 + "setuptools" 14269 + ], 14270 + "robotframework-databaselibrary": [ 14271 + "setuptools" 14272 + ], 14273 + "robotframework-requests": [ 14274 + "setuptools" 14275 + ], 14276 + "robotframework-selenium2library": [ 14277 + "setuptools" 14278 + ], 14279 + "robotframework-seleniumlibrary": [ 14280 + "setuptools" 14281 + ], 14282 + "robotframework-sshlibrary": [ 14283 + "setuptools" 14284 + ], 14285 + "robotstatuschecker": [ 14286 + "setuptools" 14287 + ], 14288 + "robotsuite": [ 14289 + "setuptools" 14290 + ], 14291 + "rocket-errbot": [ 14292 + "setuptools" 14293 + ], 14294 + "roku": [ 14295 + "setuptools" 1420 14296 ], 1421 14297 "rokuecp": [ 1422 14298 "poetry", 1423 - "poetry-core" 14299 + "poetry-core", 14300 + "setuptools" 14301 + ], 14302 + "rollbar": [ 14303 + "setuptools" 14304 + ], 14305 + "roman": [ 14306 + "setuptools" 14307 + ], 14308 + "ronin": [ 14309 + "setuptools" 1424 14310 ], 1425 14311 "roombapy": [ 1426 - "poetry-core" 14312 + "poetry-core", 14313 + "setuptools" 1427 14314 ], 1428 14315 "roonapi": [ 1429 - "poetry-core" 14316 + "poetry-core", 14317 + "setuptools" 14318 + ], 14319 + "rope": [ 14320 + "setuptools" 14321 + ], 14322 + "ropgadget": [ 14323 + "setuptools" 14324 + ], 14325 + "ropper": [ 14326 + "setuptools" 14327 + ], 14328 + "routes": [ 14329 + "setuptools" 14330 + ], 14331 + "rova": [ 14332 + "setuptools" 14333 + ], 14334 + "rpcq": [ 14335 + "setuptools" 14336 + ], 14337 + "rpdb": [ 14338 + "setuptools" 14339 + ], 14340 + "rpi-bad-power": [ 14341 + "setuptools" 14342 + ], 14343 + "rpi-gpio": [ 14344 + "setuptools" 14345 + ], 14346 + "rpi-gpio2": [ 14347 + "setuptools" 14348 + ], 14349 + "rplcd": [ 14350 + "setuptools" 14351 + ], 14352 + "rply": [ 14353 + "setuptools" 14354 + ], 14355 + "rpmfile": [ 14356 + "setuptools", 14357 + "setuptools-scm" 14358 + ], 14359 + "rpmfluff": [ 14360 + "setuptools" 14361 + ], 14362 + "rpy2": [ 14363 + "setuptools" 14364 + ], 14365 + "rpyc": [ 14366 + "setuptools" 14367 + ], 14368 + "rq": [ 14369 + "setuptools" 1430 14370 ], 1431 14371 "rsa": [ 1432 - "poetry-core" 14372 + "poetry-core", 14373 + "setuptools" 14374 + ], 14375 + "rsskey": [ 14376 + "flitBuildHook", 14377 + "setuptools" 14378 + ], 14379 + "rst2ansi": [ 14380 + "setuptools" 14381 + ], 14382 + "rstcheck": [ 14383 + "poetry-core", 14384 + "setuptools" 14385 + ], 14386 + "rstcheck-core": [ 14387 + "poetry-core", 14388 + "setuptools" 1433 14389 ], 1434 14390 "rtmidi-python": [ 1435 - "cython" 14391 + "cython", 14392 + "setuptools" 1436 14393 ], 1437 14394 "rtmixer": [ 1438 - "cython" 14395 + "cython", 14396 + "setuptools" 14397 + ], 14398 + "rtoml": [ 14399 + "setuptools" 14400 + ], 14401 + "rtree": [ 14402 + "setuptools" 14403 + ], 14404 + "rtslib": [ 14405 + "setuptools" 14406 + ], 14407 + "rtsp-to-webrtc": [ 14408 + "setuptools" 14409 + ], 14410 + "ruamel-base": [ 14411 + "setuptools" 14412 + ], 14413 + "ruamel-yaml": [ 14414 + "setuptools" 14415 + ], 14416 + "ruamel-yaml-clib": [ 14417 + "setuptools" 14418 + ], 14419 + "rubymarshal": [ 14420 + "setuptools" 14421 + ], 14422 + "ruffus": [ 14423 + "setuptools" 14424 + ], 14425 + "runway-python": [ 14426 + "setuptools" 14427 + ], 14428 + "ruyaml": [ 14429 + "setuptools", 14430 + "setuptools-scm" 14431 + ], 14432 + "rx": [ 14433 + "setuptools" 14434 + ], 14435 + "rxv": [ 14436 + "setuptools", 14437 + "setuptools-scm" 14438 + ], 14439 + "rzpipe": [ 14440 + "setuptools" 14441 + ], 14442 + "s2clientprotocol": [ 14443 + "setuptools" 14444 + ], 14445 + "s3-credentials": [ 14446 + "setuptools" 14447 + ], 14448 + "s3fs": [ 14449 + "setuptools" 14450 + ], 14451 + "s3transfer": [ 14452 + "setuptools" 14453 + ], 14454 + "sabyenc": [ 14455 + "setuptools" 14456 + ], 14457 + "sabyenc3": [ 14458 + "setuptools" 14459 + ], 14460 + "sacn": [ 14461 + "setuptools" 14462 + ], 14463 + "sacred": [ 14464 + "setuptools" 14465 + ], 14466 + "sacremoses": [ 14467 + "setuptools" 14468 + ], 14469 + "safe": [ 14470 + "setuptools" 14471 + ], 14472 + "safeeyes": [ 14473 + "setuptools" 14474 + ], 14475 + "safeio": [ 14476 + "setuptools" 14477 + ], 14478 + "safety": [ 14479 + "setuptools" 14480 + ], 14481 + "sagemaker": [ 14482 + "setuptools" 14483 + ], 14484 + "salmon-mail": [ 14485 + "setuptools" 14486 + ], 14487 + "sampledata": [ 14488 + "setuptools" 14489 + ], 14490 + "samplerate": [ 14491 + "setuptools" 14492 + ], 14493 + "samsungctl": [ 14494 + "setuptools" 14495 + ], 14496 + "samsungtvws": [ 14497 + "setuptools" 14498 + ], 14499 + "sane": [ 14500 + "setuptools" 1439 14501 ], 1440 14502 "sane-python": [ 1441 14503 "poetry-core" 1442 14504 ], 14505 + "saneyaml": [ 14506 + "setuptools", 14507 + "setuptools-scm" 14508 + ], 1443 14509 "sanic": [ 1444 - "poetry-core" 14510 + "poetry-core", 14511 + "setuptools" 14512 + ], 14513 + "sanic-auth": [ 14514 + "setuptools" 14515 + ], 14516 + "sanic-routing": [ 14517 + "setuptools" 14518 + ], 14519 + "sanic-testing": [ 14520 + "setuptools" 14521 + ], 14522 + "sansio-multipart": [ 14523 + "setuptools" 14524 + ], 14525 + "sapi-python-client": [ 14526 + "setuptools", 14527 + "setuptools-scm" 14528 + ], 14529 + "sarge": [ 14530 + "setuptools" 1445 14531 ], 1446 14532 "sarif-om": [ 1447 - "pbr" 14533 + "pbr", 14534 + "setuptools" 14535 + ], 14536 + "sasmodels": [ 14537 + "setuptools" 1448 14538 ], 1449 14539 "sat-search": [ 1450 14540 "pytest-runner" 1451 14541 ], 14542 + "scales": [ 14543 + "setuptools" 14544 + ], 14545 + "scancode-toolkit": [ 14546 + "setuptools" 14547 + ], 14548 + "scandir": [ 14549 + "setuptools" 14550 + ], 14551 + "scapy": [ 14552 + "setuptools" 14553 + ], 14554 + "schedule": [ 14555 + "setuptools" 14556 + ], 14557 + "schema": [ 14558 + "setuptools" 14559 + ], 14560 + "schema-salad": [ 14561 + "setuptools" 14562 + ], 14563 + "schiene": [ 14564 + "setuptools" 14565 + ], 14566 + "schwifty": [ 14567 + "setuptools" 14568 + ], 1452 14569 "scikit-bio": [ 1453 - "cython" 14570 + "cython", 14571 + "setuptools" 1454 14572 ], 1455 14573 "scikit-build": [ 1456 - "cython" 14574 + "cython", 14575 + "setuptools", 14576 + "setuptools-scm" 14577 + ], 14578 + "scikit-fmm": [ 14579 + "setuptools" 14580 + ], 14581 + "scikit-fuzzy": [ 14582 + "setuptools" 14583 + ], 14584 + "scikit-hep-testdata": [ 14585 + "setuptools", 14586 + "setuptools-scm" 1457 14587 ], 1458 14588 "scikit-image": [ 1459 14589 "cython" 1460 14590 ], 1461 14591 "scikit-learn": [ 1462 - "cython" 14592 + "cython", 14593 + "setuptools" 1463 14594 ], 1464 14595 "scikit-learn-extra": [ 1465 - "cython" 14596 + "cython", 14597 + "setuptools" 14598 + ], 14599 + "scikit-misc": [ 14600 + "cython", 14601 + "setuptools" 14602 + ], 14603 + "scikit-optimize": [ 14604 + "setuptools" 1466 14605 ], 1467 14606 "scikit-survival": [ 1468 - "cython" 14607 + "cython", 14608 + "setuptools", 14609 + "setuptools-scm" 1469 14610 ], 1470 14611 "scikit-tda": [ 1471 - "cython" 14612 + "cython", 14613 + "setuptools" 1472 14614 ], 1473 14615 "scikitimage": [ 1474 - "cython" 14616 + "cython", 14617 + "setuptools" 1475 14618 ], 1476 14619 "scikitlearn": [ 1477 - "cython" 14620 + "cython", 14621 + "setuptools" 1478 14622 ], 1479 14623 "scikits-odes": [ 1480 - "cython" 14624 + "cython", 14625 + "setuptools" 1481 14626 ], 1482 14627 "scipy": [ 1483 - "cython" 14628 + "cython", 14629 + "setuptools" 14630 + ], 14631 + "scmrepo": [ 14632 + "setuptools" 14633 + ], 14634 + "scour": [ 14635 + "setuptools" 14636 + ], 14637 + "scp": [ 14638 + "setuptools" 14639 + ], 14640 + "scramp": [ 14641 + "setuptools" 14642 + ], 14643 + "scrap-engine": [ 14644 + "setuptools", 14645 + "setuptools-scm" 14646 + ], 14647 + "scrapy": [ 14648 + "setuptools" 14649 + ], 14650 + "scrapy-deltafetch": [ 14651 + "setuptools" 14652 + ], 14653 + "scrapy-fake-useragent": [ 14654 + "setuptools" 14655 + ], 14656 + "scrapy-splash": [ 14657 + "setuptools" 14658 + ], 14659 + "screeninfo": [ 14660 + "poetry-core", 14661 + "setuptools" 14662 + ], 14663 + "screenlogicpy": [ 14664 + "setuptools" 14665 + ], 14666 + "scripttest": [ 14667 + "setuptools" 14668 + ], 14669 + "scs": [ 14670 + "setuptools" 14671 + ], 14672 + "sdds": [ 14673 + "setuptools" 14674 + ], 14675 + "sdnotify": [ 14676 + "setuptools" 14677 + ], 14678 + "seaborn": [ 14679 + "flit-core", 14680 + "setuptools" 1484 14681 ], 1485 14682 "seabreeze": [ 1486 - "cython" 14683 + "cython", 14684 + "setuptools", 14685 + "setuptools-scm" 14686 + ], 14687 + "seatconnect": [ 14688 + "setuptools", 14689 + "setuptools-scm" 1487 14690 ], 1488 14691 "seccomp": [ 1489 - "cython" 14692 + "cython", 14693 + "setuptools" 14694 + ], 14695 + "secp256k1": [ 14696 + "setuptools" 14697 + ], 14698 + "secretstorage": [ 14699 + "setuptools" 14700 + ], 14701 + "secure": [ 14702 + "setuptools" 14703 + ], 14704 + "securetar": [ 14705 + "setuptools" 14706 + ], 14707 + "seekpath": [ 14708 + "setuptools" 14709 + ], 14710 + "segments": [ 14711 + "setuptools" 14712 + ], 14713 + "segno": [ 14714 + "setuptools" 14715 + ], 14716 + "selectors2": [ 14717 + "setuptools" 14718 + ], 14719 + "selenium": [ 14720 + "setuptools" 14721 + ], 14722 + "selinux": [ 14723 + "setuptools" 14724 + ], 14725 + "semantic-version": [ 14726 + "setuptools" 14727 + ], 14728 + "semver": [ 14729 + "setuptools" 14730 + ], 14731 + "send2trash": [ 14732 + "setuptools" 14733 + ], 14734 + "sendgrid": [ 14735 + "setuptools" 14736 + ], 14737 + "sense-energy": [ 14738 + "setuptools" 14739 + ], 14740 + "sensor-state-data": [ 14741 + "poetry-core", 14742 + "setuptools" 14743 + ], 14744 + "sensorpro-ble": [ 14745 + "poetry-core", 14746 + "setuptools" 14747 + ], 14748 + "sensorpush-ble": [ 14749 + "poetry-core", 14750 + "setuptools" 14751 + ], 14752 + "sentencepiece": [ 14753 + "setuptools" 1490 14754 ], 1491 14755 "sentinel": [ 1492 - "poetry-core" 14756 + "poetry-core", 14757 + "setuptools" 14758 + ], 14759 + "sentinels": [ 14760 + "setuptools" 14761 + ], 14762 + "sentry-sdk": [ 14763 + "setuptools" 14764 + ], 14765 + "sepaxml": [ 14766 + "setuptools" 14767 + ], 14768 + "seqdiag": [ 14769 + "setuptools" 14770 + ], 14771 + "seqeval": [ 14772 + "setuptools" 14773 + ], 14774 + "sequoia": [ 14775 + "setuptools" 14776 + ], 14777 + "serpent": [ 14778 + "setuptools" 14779 + ], 14780 + "serpy": [ 14781 + "setuptools" 14782 + ], 14783 + "servefile": [ 14784 + "setuptools" 14785 + ], 14786 + "serverlessrepo": [ 14787 + "setuptools" 14788 + ], 14789 + "service-identity": [ 14790 + "setuptools" 14791 + ], 14792 + "setproctitle": [ 14793 + "setuptools" 14794 + ], 14795 + "setupmeta": [ 14796 + "setuptools", 14797 + "setuptools-scm" 14798 + ], 14799 + "setuptools-declarative-requirements": [ 14800 + "setuptools", 14801 + "setuptools-scm" 14802 + ], 14803 + "setuptools-git": [ 14804 + "setuptools" 14805 + ], 14806 + "setuptools-lint": [ 14807 + "setuptools" 14808 + ], 14809 + "setuptools-rust": [ 14810 + "setuptools", 14811 + "setuptools-scm" 14812 + ], 14813 + "setuptools-scm": [ 14814 + "setuptools" 14815 + ], 14816 + "setuptools-scm-git-archive": [ 14817 + "setuptools", 14818 + "setuptools-scm" 14819 + ], 14820 + "setuptoolsbuildhook": [ 14821 + "setuptools" 14822 + ], 14823 + "setuptoolscheckhook": [ 14824 + "setuptools" 14825 + ], 14826 + "setuptoolstrial": [ 14827 + "setuptools" 1493 14828 ], 1494 14829 "seventeentrack": [ 1495 - "poetry-core" 14830 + "poetry-core", 14831 + "setuptools" 14832 + ], 14833 + "sexpdata": [ 14834 + "setuptools" 1496 14835 ], 1497 14836 "sfepy": [ 1498 - "cython" 14837 + "cython", 14838 + "setuptools" 14839 + ], 14840 + "sgmllib3k": [ 14841 + "setuptools" 14842 + ], 14843 + "sgp4": [ 14844 + "setuptools" 14845 + ], 14846 + "sh": [ 14847 + "setuptools" 14848 + ], 14849 + "shamir-mnemonic": [ 14850 + "setuptools" 1499 14851 ], 1500 14852 "shapely": [ 1501 - "cython" 14853 + "cython", 14854 + "setuptools" 14855 + ], 14856 + "sharedmem": [ 14857 + "setuptools" 14858 + ], 14859 + "sharkiq": [ 14860 + "setuptools" 14861 + ], 14862 + "sharkiqpy": [ 14863 + "setuptools" 14864 + ], 14865 + "shellescape": [ 14866 + "setuptools" 14867 + ], 14868 + "shellingham": [ 14869 + "setuptools" 1502 14870 ], 1503 14871 "shexjsg": [ 1504 14872 "pbr" 1505 14873 ], 14874 + "shiboken2": [ 14875 + "setuptools" 14876 + ], 14877 + "shippai": [ 14878 + "setuptools" 14879 + ], 14880 + "shiv": [ 14881 + "setuptools" 14882 + ], 14883 + "shodan": [ 14884 + "setuptools" 14885 + ], 14886 + "shortuuid": [ 14887 + "poetry", 14888 + "setuptools" 14889 + ], 14890 + "should-dsl": [ 14891 + "setuptools" 14892 + ], 14893 + "showit": [ 14894 + "setuptools" 14895 + ], 14896 + "shtab": [ 14897 + "setuptools", 14898 + "setuptools-scm" 14899 + ], 14900 + "shutilwhich": [ 14901 + "setuptools" 14902 + ], 14903 + "sievelib": [ 14904 + "setuptools", 14905 + "setuptools-scm" 14906 + ], 14907 + "signedjson": [ 14908 + "setuptools", 14909 + "setuptools-scm" 14910 + ], 14911 + "signify": [ 14912 + "setuptools" 14913 + ], 14914 + "sigrok": [ 14915 + "setuptools" 14916 + ], 14917 + "sigtools": [ 14918 + "setuptools", 14919 + "setuptools-scm" 14920 + ], 14921 + "simanneal": [ 14922 + "setuptools" 14923 + ], 14924 + "simber": [ 14925 + "setuptools" 14926 + ], 14927 + "simple-di": [ 14928 + "setuptools" 14929 + ], 14930 + "simple-rest-client": [ 14931 + "setuptools" 14932 + ], 14933 + "simple-rlp": [ 14934 + "setuptools" 14935 + ], 14936 + "simple-salesforce": [ 14937 + "setuptools" 14938 + ], 14939 + "simple-websocket-server": [ 14940 + "setuptools" 14941 + ], 14942 + "simpleaudio": [ 14943 + "setuptools" 14944 + ], 14945 + "simplebayes": [ 14946 + "setuptools" 14947 + ], 14948 + "simpleeval": [ 14949 + "setuptools" 14950 + ], 14951 + "simplefix": [ 14952 + "setuptools" 14953 + ], 14954 + "simplegeneric": [ 14955 + "setuptools" 14956 + ], 14957 + "simplehound": [ 14958 + "setuptools" 14959 + ], 14960 + "simplejson": [ 14961 + "setuptools" 14962 + ], 14963 + "simplekml": [ 14964 + "setuptools" 14965 + ], 14966 + "simplenote": [ 14967 + "setuptools" 14968 + ], 1506 14969 "simplisafe-python": [ 1507 - "poetry-core" 14970 + "poetry-core", 14971 + "setuptools" 14972 + ], 14973 + "simpy": [ 14974 + "setuptools", 14975 + "setuptools-scm" 1508 14976 ], 1509 14977 "single-source": [ 1510 14978 "poetry-core" 1511 14979 ], 1512 14980 "single-version": [ 1513 - "poetry-core" 14981 + "poetry-core", 14982 + "setuptools" 14983 + ], 14984 + "siobrultech-protocols": [ 14985 + "setuptools" 14986 + ], 14987 + "siosocks": [ 14988 + "setuptools" 14989 + ], 14990 + "sip": [ 14991 + "setuptools" 14992 + ], 14993 + "sip-4": [ 14994 + "setuptools" 14995 + ], 14996 + "six": [ 14997 + "setuptools" 14998 + ], 14999 + "sjcl": [ 15000 + "setuptools" 15001 + ], 15002 + "skein": [ 15003 + "setuptools" 1514 15004 ], 1515 15005 "skia-pathops": [ 1516 - "cython" 15006 + "cython", 15007 + "setuptools", 15008 + "setuptools-scm" 15009 + ], 15010 + "skidl": [ 15011 + "setuptools" 15012 + ], 15013 + "skodaconnect": [ 15014 + "setuptools", 15015 + "setuptools-scm" 15016 + ], 15017 + "skybellpy": [ 15018 + "setuptools" 15019 + ], 15020 + "skyfield": [ 15021 + "setuptools" 15022 + ], 15023 + "skytemple-dtef": [ 15024 + "setuptools" 15025 + ], 15026 + "skytemple-eventserver": [ 15027 + "setuptools" 15028 + ], 15029 + "skytemple-files": [ 15030 + "setuptools" 15031 + ], 15032 + "skytemple-icons": [ 15033 + "setuptools" 15034 + ], 15035 + "skytemple-rust": [ 15036 + "setuptools" 15037 + ], 15038 + "skytemple-ssb-debugger": [ 15039 + "setuptools" 15040 + ], 15041 + "slack-sdk": [ 15042 + "setuptools" 15043 + ], 15044 + "slackclient": [ 15045 + "setuptools" 15046 + ], 15047 + "sleepyq": [ 15048 + "setuptools" 15049 + ], 15050 + "slicedimage": [ 15051 + "setuptools" 15052 + ], 15053 + "slicer": [ 15054 + "setuptools" 15055 + ], 15056 + "slicerator": [ 15057 + "setuptools" 15058 + ], 15059 + "slither-analyzer": [ 15060 + "setuptools" 15061 + ], 15062 + "slixmpp": [ 15063 + "setuptools" 15064 + ], 15065 + "slob": [ 15066 + "setuptools" 1517 15067 ], 1518 15068 "slowapi": [ 1519 - "poetry-core" 15069 + "poetry-core", 15070 + "setuptools" 15071 + ], 15072 + "slugid": [ 15073 + "setuptools" 15074 + ], 15075 + "sly": [ 15076 + "setuptools" 15077 + ], 15078 + "smart-meter-texas": [ 15079 + "setuptools" 15080 + ], 15081 + "smart-open": [ 15082 + "setuptools" 15083 + ], 15084 + "smarthab": [ 15085 + "setuptools" 15086 + ], 15087 + "smartypants": [ 15088 + "setuptools" 15089 + ], 15090 + "smbprotocol": [ 15091 + "setuptools" 15092 + ], 15093 + "smbus-cffi": [ 15094 + "setuptools" 15095 + ], 15096 + "smbus2": [ 15097 + "setuptools" 15098 + ], 15099 + "smdebug-rulesconfig": [ 15100 + "setuptools" 15101 + ], 15102 + "smhi-pkg": [ 15103 + "setuptools" 15104 + ], 15105 + "smmap": [ 15106 + "setuptools" 15107 + ], 15108 + "smpplib": [ 15109 + "setuptools" 15110 + ], 15111 + "snakebite": [ 15112 + "setuptools" 15113 + ], 15114 + "snakeviz": [ 15115 + "setuptools" 15116 + ], 15117 + "snapcast": [ 15118 + "setuptools" 15119 + ], 15120 + "snapshottest": [ 15121 + "setuptools" 15122 + ], 15123 + "sniffio": [ 15124 + "setuptools" 15125 + ], 15126 + "snitun": [ 15127 + "setuptools" 15128 + ], 15129 + "snowballstemmer": [ 15130 + "setuptools" 15131 + ], 15132 + "snowflake-connector-python": [ 15133 + "setuptools" 15134 + ], 15135 + "snowflake-sqlalchemy": [ 15136 + "setuptools" 15137 + ], 15138 + "snscrape": [ 15139 + "setuptools", 15140 + "setuptools-scm" 15141 + ], 15142 + "snuggs": [ 15143 + "setuptools" 15144 + ], 15145 + "social-auth-app-django": [ 15146 + "setuptools" 15147 + ], 15148 + "social-auth-core": [ 15149 + "setuptools" 15150 + ], 15151 + "socialscan": [ 15152 + "setuptools" 15153 + ], 15154 + "socid-extractor": [ 15155 + "setuptools" 15156 + ], 15157 + "socketio-client": [ 15158 + "setuptools" 15159 + ], 15160 + "sockjs": [ 15161 + "setuptools" 15162 + ], 15163 + "sockjs-tornado": [ 15164 + "setuptools" 1520 15165 ], 1521 15166 "socksio": [ 1522 - "flit-core" 15167 + "flit-core", 15168 + "setuptools" 15169 + ], 15170 + "socksipy-branch": [ 15171 + "setuptools" 15172 + ], 15173 + "soco": [ 15174 + "setuptools" 15175 + ], 15176 + "softlayer": [ 15177 + "setuptools" 15178 + ], 15179 + "solaredge": [ 15180 + "setuptools" 15181 + ], 15182 + "solax": [ 15183 + "setuptools", 15184 + "setuptools-scm" 15185 + ], 15186 + "solc-select": [ 15187 + "setuptools" 1523 15188 ], 1524 15189 "solo-python": [ 1525 - "flitBuildHook" 15190 + "flitBuildHook", 15191 + "setuptools" 15192 + ], 15193 + "somajo": [ 15194 + "setuptools" 15195 + ], 15196 + "somecomfort": [ 15197 + "setuptools" 15198 + ], 15199 + "somfy-mylink-synergy": [ 15200 + "setuptools" 15201 + ], 15202 + "sonarr": [ 15203 + "setuptools" 15204 + ], 15205 + "sopel": [ 15206 + "setuptools" 15207 + ], 15208 + "sorl-thumbnail": [ 15209 + "setuptools", 15210 + "setuptools-scm" 15211 + ], 15212 + "sortedcollections": [ 15213 + "setuptools" 15214 + ], 15215 + "sortedcontainers": [ 15216 + "setuptools" 15217 + ], 15218 + "soundcloud-v2": [ 15219 + "setuptools" 15220 + ], 15221 + "sounddevice": [ 15222 + "setuptools" 15223 + ], 15224 + "soundfile": [ 15225 + "setuptools" 1526 15226 ], 1527 15227 "soupsieve": [ 1528 - "hatchling" 15228 + "hatchling", 15229 + "setuptools" 15230 + ], 15231 + "spacy": [ 15232 + "setuptools" 15233 + ], 15234 + "spacy-alignments": [ 15235 + "setuptools" 15236 + ], 15237 + "spacy-legacy": [ 15238 + "setuptools" 15239 + ], 15240 + "spacy-loggers": [ 15241 + "setuptools" 1529 15242 ], 1530 15243 "spacy-pkuseg": [ 1531 - "cython" 15244 + "cython", 15245 + "setuptools" 15246 + ], 15247 + "spacy-transformers": [ 15248 + "setuptools" 15249 + ], 15250 + "spake2": [ 15251 + "setuptools" 15252 + ], 15253 + "spark-parser": [ 15254 + "setuptools" 15255 + ], 15256 + "sparklines": [ 15257 + "setuptools" 1532 15258 ], 1533 15259 "sparqlslurper": [ 1534 15260 "pbr" 1535 15261 ], 15262 + "sparse": [ 15263 + "setuptools" 15264 + ], 15265 + "spdx-tools": [ 15266 + "setuptools" 15267 + ], 15268 + "speaklater": [ 15269 + "setuptools" 15270 + ], 15271 + "speaklater3": [ 15272 + "setuptools" 15273 + ], 15274 + "spectral-cube": [ 15275 + "setuptools", 15276 + "setuptools-scm" 15277 + ], 15278 + "speedtest-cli": [ 15279 + "setuptools" 15280 + ], 15281 + "spglib": [ 15282 + "setuptools" 15283 + ], 15284 + "sphfile": [ 15285 + "setuptools" 15286 + ], 15287 + "sphinx": [ 15288 + "cython", 15289 + "setuptools" 15290 + ], 15291 + "sphinx-argparse": [ 15292 + "setuptools" 15293 + ], 15294 + "sphinx-autobuild": [ 15295 + "setuptools" 15296 + ], 15297 + "sphinx-autodoc-typehints": [ 15298 + "setuptools" 15299 + ], 15300 + "sphinx-basic-ng": [ 15301 + "setuptools" 15302 + ], 15303 + "sphinx-better-theme": [ 15304 + "setuptools" 15305 + ], 15306 + "sphinx-book-theme": [ 15307 + "setuptools" 15308 + ], 15309 + "sphinx-comments": [ 15310 + "setuptools" 15311 + ], 15312 + "sphinx-copybutton": [ 15313 + "setuptools" 15314 + ], 15315 + "sphinx-design": [ 15316 + "flit-core", 15317 + "flitBuildHook", 15318 + "setuptools" 15319 + ], 15320 + "sphinx-external-toc": [ 15321 + "flit-core", 15322 + "flitBuildHook", 15323 + "setuptools" 15324 + ], 15325 + "sphinx-fortran": [ 15326 + "setuptools" 15327 + ], 1536 15328 "sphinx-inline-tabs": [ 1537 - "flitBuildHook" 15329 + "flitBuildHook", 15330 + "setuptools" 1538 15331 ], 1539 15332 "sphinx-jinja": [ 1540 - "pbr" 15333 + "pbr", 15334 + "setuptools" 15335 + ], 15336 + "sphinx-jupyterbook-latex": [ 15337 + "setuptools" 15338 + ], 15339 + "sphinx-markdown-parser": [ 15340 + "setuptools" 15341 + ], 15342 + "sphinx-material": [ 15343 + "setuptools" 15344 + ], 15345 + "sphinx-mdinclude": [ 15346 + "flit-core", 15347 + "flitBuildHook", 15348 + "setuptools" 15349 + ], 15350 + "sphinx-multitoc-numbering": [ 15351 + "setuptools" 15352 + ], 15353 + "sphinx-pypi-upload": [ 15354 + "setuptools" 15355 + ], 15356 + "sphinx-pytest": [ 15357 + "flit-core", 15358 + "flitBuildHook", 15359 + "setuptools" 15360 + ], 15361 + "sphinx-rtd-theme": [ 15362 + "setuptools" 15363 + ], 15364 + "sphinx-serve": [ 15365 + "setuptools" 15366 + ], 15367 + "sphinx-testing": [ 15368 + "setuptools" 15369 + ], 15370 + "sphinx-thebe": [ 15371 + "setuptools" 15372 + ], 15373 + "sphinx-togglebutton": [ 15374 + "setuptools" 15375 + ], 15376 + "sphinxcontrib-actdiag": [ 15377 + "setuptools" 1541 15378 ], 1542 15379 "sphinxcontrib-apidoc": [ 1543 - "pbr" 15380 + "pbr", 15381 + "setuptools" 15382 + ], 15383 + "sphinxcontrib-applehelp": [ 15384 + "setuptools" 15385 + ], 15386 + "sphinxcontrib-autoapi": [ 15387 + "setuptools" 15388 + ], 15389 + "sphinxcontrib-bibtex": [ 15390 + "setuptools" 15391 + ], 15392 + "sphinxcontrib-blockdiag": [ 15393 + "setuptools" 15394 + ], 15395 + "sphinxcontrib-confluencebuilder": [ 15396 + "setuptools" 15397 + ], 15398 + "sphinxcontrib-devhelp": [ 15399 + "setuptools" 15400 + ], 15401 + "sphinxcontrib-excel-table": [ 15402 + "setuptools" 1544 15403 ], 1545 15404 "sphinxcontrib-fulltoc": [ 1546 - "pbr" 15405 + "pbr", 15406 + "setuptools" 15407 + ], 15408 + "sphinxcontrib-htmlhelp": [ 15409 + "setuptools" 15410 + ], 15411 + "sphinxcontrib-httpdomain": [ 15412 + "setuptools" 15413 + ], 15414 + "sphinxcontrib-jsmath": [ 15415 + "setuptools" 15416 + ], 15417 + "sphinxcontrib-katex": [ 15418 + "setuptools" 15419 + ], 15420 + "sphinxcontrib-newsfeed": [ 15421 + "setuptools" 15422 + ], 15423 + "sphinxcontrib-nwdiag": [ 15424 + "setuptools" 15425 + ], 15426 + "sphinxcontrib-openapi": [ 15427 + "setuptools", 15428 + "setuptools-scm" 15429 + ], 15430 + "sphinxcontrib-plantuml": [ 15431 + "setuptools" 15432 + ], 15433 + "sphinxcontrib-programoutput": [ 15434 + "setuptools" 15435 + ], 15436 + "sphinxcontrib-qthelp": [ 15437 + "setuptools" 15438 + ], 15439 + "sphinxcontrib-seqdiag": [ 15440 + "setuptools" 15441 + ], 15442 + "sphinxcontrib-serializinghtml": [ 15443 + "setuptools" 1547 15444 ], 1548 15445 "sphinxcontrib-spelling": [ 1549 - "pbr" 15446 + "pbr", 15447 + "setuptools" 15448 + ], 15449 + "sphinxcontrib-tikz": [ 15450 + "setuptools" 15451 + ], 15452 + "sphinxcontrib-websupport": [ 15453 + "setuptools" 15454 + ], 15455 + "sphinxext-opengraph": [ 15456 + "setuptools" 1550 15457 ], 1551 15458 "spiderpy": [ 1552 - "poetry-core" 15459 + "poetry-core", 15460 + "setuptools" 15461 + ], 15462 + "spidev": [ 15463 + "setuptools" 15464 + ], 15465 + "spinners": [ 15466 + "setuptools" 15467 + ], 15468 + "splinter": [ 15469 + "setuptools" 15470 + ], 15471 + "spotipy": [ 15472 + "setuptools" 15473 + ], 15474 + "spsdk": [ 15475 + "setuptools" 15476 + ], 15477 + "spur": [ 15478 + "setuptools" 15479 + ], 15480 + "spyder": [ 15481 + "setuptools" 15482 + ], 15483 + "spyder-kernels": [ 15484 + "setuptools" 15485 + ], 15486 + "spyse-python": [ 15487 + "setuptools" 15488 + ], 15489 + "sqlalchemy": [ 15490 + "cython", 15491 + "setuptools" 15492 + ], 15493 + "sqlalchemy-citext": [ 15494 + "setuptools" 15495 + ], 15496 + "sqlalchemy-continuum": [ 15497 + "setuptools" 15498 + ], 15499 + "sqlalchemy-i18n": [ 15500 + "setuptools" 15501 + ], 15502 + "sqlalchemy-jsonfield": [ 15503 + "setuptools", 15504 + "setuptools-scm" 1553 15505 ], 1554 15506 "sqlalchemy-migrate": [ 1555 - "pbr" 15507 + "pbr", 15508 + "setuptools" 15509 + ], 15510 + "sqlalchemy-mixins": [ 15511 + "setuptools" 1556 15512 ], 1557 - "sqlalchemy_migrate": [ 1558 - "pbr" 15513 + "sqlalchemy-utils": [ 15514 + "setuptools" 15515 + ], 15516 + "sqlglot": [ 15517 + "setuptools" 15518 + ], 15519 + "sqlite-fts4": [ 15520 + "setuptools" 15521 + ], 15522 + "sqlite-utils": [ 15523 + "setuptools" 15524 + ], 15525 + "sqlitedict": [ 15526 + "setuptools" 15527 + ], 15528 + "sqlmap": [ 15529 + "setuptools" 15530 + ], 15531 + "sqlobject": [ 15532 + "setuptools" 15533 + ], 15534 + "sqlparse": [ 15535 + "setuptools" 15536 + ], 15537 + "srp": [ 15538 + "setuptools" 15539 + ], 15540 + "srpenergy": [ 15541 + "setuptools" 15542 + ], 15543 + "srptools": [ 15544 + "setuptools" 1559 15545 ], 1560 15546 "srsly": [ 1561 - "cython" 15547 + "cython", 15548 + "setuptools" 15549 + ], 15550 + "srt": [ 15551 + "setuptools" 15552 + ], 15553 + "srvlookup": [ 15554 + "setuptools" 15555 + ], 15556 + "ssdeep": [ 15557 + "setuptools" 1562 15558 ], 1563 15559 "ssdp": [ 1564 - "pbr" 15560 + "pbr", 15561 + "setuptools", 15562 + "setuptools-scm" 15563 + ], 15564 + "sseclient": [ 15565 + "setuptools" 15566 + ], 15567 + "sseclient-py": [ 15568 + "setuptools" 15569 + ], 15570 + "ssh-mitm": [ 15571 + "setuptools" 15572 + ], 15573 + "sshpubkeys": [ 15574 + "setuptools" 15575 + ], 15576 + "sshtunnel": [ 15577 + "setuptools" 15578 + ], 15579 + "sslib": [ 15580 + "setuptools" 1565 15581 ], 1566 15582 "stack-data": [ 1567 - "cython" 15583 + "cython", 15584 + "setuptools", 15585 + "setuptools-scm" 15586 + ], 15587 + "stanza": [ 15588 + "setuptools" 15589 + ], 15590 + "starkbank-ecdsa": [ 15591 + "setuptools" 15592 + ], 15593 + "starlette": [ 15594 + "setuptools" 15595 + ], 15596 + "starline": [ 15597 + "setuptools" 15598 + ], 15599 + "stashy": [ 15600 + "setuptools" 1568 15601 ], 1569 15602 "staticjinja": [ 1570 - "poetry-core" 15603 + "poetry-core", 15604 + "setuptools" 15605 + ], 15606 + "statistics": [ 15607 + "setuptools" 1571 15608 ], 1572 15609 "statmake": [ 1573 - "poetry-core" 15610 + "poetry-core", 15611 + "setuptools" 15612 + ], 15613 + "statsd": [ 15614 + "setuptools" 1574 15615 ], 1575 15616 "statsmodels": [ 1576 - "cython" 15617 + "cython", 15618 + "setuptools" 15619 + ], 15620 + "stdiomask": [ 15621 + "setuptools" 15622 + ], 15623 + "stdlib-list": [ 15624 + "setuptools" 15625 + ], 15626 + "steamodd": [ 15627 + "setuptools" 15628 + ], 15629 + "stem": [ 15630 + "setuptools" 1577 15631 ], 1578 15632 "stestr": [ 1579 - "pbr" 15633 + "pbr", 15634 + "setuptools" 1580 15635 ], 1581 15636 "stevedore": [ 1582 - "pbr" 15637 + "pbr", 15638 + "setuptools" 15639 + ], 15640 + "stickytape": [ 15641 + "setuptools" 15642 + ], 15643 + "stim": [ 15644 + "setuptools" 15645 + ], 15646 + "stm32loader": [ 15647 + "setuptools" 15648 + ], 15649 + "stone": [ 15650 + "setuptools" 15651 + ], 15652 + "stookalert": [ 15653 + "setuptools" 15654 + ], 15655 + "stopit": [ 15656 + "setuptools" 15657 + ], 15658 + "strategies": [ 15659 + "setuptools" 15660 + ], 15661 + "stravalib": [ 15662 + "setuptools" 1583 15663 ], 1584 15664 "strawberry-graphql": [ 1585 - "poetry" 15665 + "poetry", 15666 + "setuptools" 15667 + ], 15668 + "streamdeck": [ 15669 + "setuptools" 1586 15670 ], 1587 15671 "streaming-form-data": [ 1588 - "cython" 15672 + "cython", 15673 + "setuptools" 15674 + ], 15675 + "streamlabswater": [ 15676 + "setuptools" 15677 + ], 15678 + "streamz": [ 15679 + "setuptools" 15680 + ], 15681 + "strenum": [ 15682 + "setuptools" 15683 + ], 15684 + "strict-rfc3339": [ 15685 + "setuptools" 15686 + ], 15687 + "strictyaml": [ 15688 + "setuptools" 15689 + ], 15690 + "stringcase": [ 15691 + "setuptools" 15692 + ], 15693 + "stringly": [ 15694 + "setuptools" 15695 + ], 15696 + "stripe": [ 15697 + "setuptools" 15698 + ], 15699 + "striprtf": [ 15700 + "setuptools" 1589 15701 ], 1590 15702 "structlog": [ 1591 - "flitBuildHook" 15703 + "flitBuildHook", 15704 + "setuptools" 1592 15705 ], 1593 15706 "structlog-sentry": [ 1594 15707 "poetry-core" 1595 15708 ], 15709 + "stumpy": [ 15710 + "setuptools" 15711 + ], 15712 + "stups-cli-support": [ 15713 + "setuptools" 15714 + ], 15715 + "stups-fullstop": [ 15716 + "setuptools" 15717 + ], 15718 + "stups-pierone": [ 15719 + "setuptools" 15720 + ], 15721 + "stups-tokens": [ 15722 + "setuptools" 15723 + ], 15724 + "stups-zign": [ 15725 + "setuptools" 15726 + ], 15727 + "stytra": [ 15728 + "setuptools" 15729 + ], 15730 + "subarulink": [ 15731 + "setuptools" 15732 + ], 15733 + "subliminal": [ 15734 + "setuptools" 15735 + ], 15736 + "subprocess-tee": [ 15737 + "setuptools", 15738 + "setuptools-scm" 15739 + ], 15740 + "subprocess32": [ 15741 + "setuptools", 15742 + "setuptools-scm" 15743 + ], 15744 + "subunit": [ 15745 + "setuptools" 15746 + ], 1596 15747 "subunit2sql": [ 1597 - "pbr" 15748 + "pbr", 15749 + "setuptools" 15750 + ], 15751 + "subzerod": [ 15752 + "setuptools" 1598 15753 ], 1599 15754 "sumo": [ 1600 - "cython" 15755 + "cython", 15756 + "setuptools" 15757 + ], 15758 + "sumtypes": [ 15759 + "setuptools" 15760 + ], 15761 + "sunpy": [ 15762 + "setuptools", 15763 + "setuptools-scm" 15764 + ], 15765 + "sunwatcher": [ 15766 + "setuptools" 15767 + ], 15768 + "superqt": [ 15769 + "setuptools", 15770 + "setuptools-scm" 15771 + ], 15772 + "supervise-api": [ 15773 + "setuptools" 15774 + ], 15775 + "supervisor": [ 15776 + "setuptools" 15777 + ], 15778 + "sure": [ 15779 + "setuptools" 1601 15780 ], 1602 15781 "surepy": [ 1603 - "poetry-core" 15782 + "poetry-core", 15783 + "setuptools" 15784 + ], 15785 + "surt": [ 15786 + "setuptools" 15787 + ], 15788 + "survey": [ 15789 + "setuptools" 15790 + ], 15791 + "svg-path": [ 15792 + "setuptools" 15793 + ], 15794 + "svglib": [ 15795 + "setuptools" 15796 + ], 15797 + "svgwrite": [ 15798 + "setuptools" 15799 + ], 15800 + "swagger-spec-validator": [ 15801 + "setuptools" 15802 + ], 15803 + "swagger-ui-bundle": [ 15804 + "setuptools" 1604 15805 ], 1605 15806 "swift": [ 1606 - "pbr" 15807 + "pbr", 15808 + "setuptools" 15809 + ], 15810 + "swisshydrodata": [ 15811 + "setuptools" 1607 15812 ], 1608 15813 "swspotify": [ 1609 - "poetry-core" 15814 + "poetry-core", 15815 + "setuptools" 15816 + ], 15817 + "sybil": [ 15818 + "setuptools" 1610 15819 ], 1611 15820 "symengine": [ 1612 - "cython" 15821 + "cython", 15822 + "setuptools" 15823 + ], 15824 + "sympy": [ 15825 + "setuptools" 15826 + ], 15827 + "syncer": [ 15828 + "setuptools" 15829 + ], 15830 + "synergy": [ 15831 + "setuptools" 1613 15832 ], 1614 15833 "synologydsm-api": [ 1615 - "poetry-core" 15834 + "poetry-core", 15835 + "setuptools" 15836 + ], 15837 + "syslog-rfc5424-formatter": [ 15838 + "setuptools" 15839 + ], 15840 + "systembridge": [ 15841 + "setuptools" 15842 + ], 15843 + "systemd": [ 15844 + "setuptools" 15845 + ], 15846 + "sysv-ipc": [ 15847 + "setuptools" 15848 + ], 15849 + "tableaudocumentapi": [ 15850 + "setuptools" 1616 15851 ], 1617 15852 "tables": [ 1618 - "cython" 15853 + "cython", 15854 + "setuptools" 15855 + ], 15856 + "tablib": [ 15857 + "setuptools", 15858 + "setuptools-scm" 15859 + ], 15860 + "tabula-py": [ 15861 + "setuptools", 15862 + "setuptools-scm" 15863 + ], 15864 + "tabulate": [ 15865 + "setuptools" 15866 + ], 15867 + "tabview": [ 15868 + "setuptools" 15869 + ], 15870 + "tadasets": [ 15871 + "setuptools" 15872 + ], 15873 + "tag-expressions": [ 15874 + "setuptools" 15875 + ], 15876 + "tago": [ 15877 + "setuptools" 15878 + ], 15879 + "tahoma-api": [ 15880 + "setuptools" 15881 + ], 15882 + "tailer": [ 15883 + "setuptools" 1619 15884 ], 1620 15885 "tailscale": [ 1621 - "poetry-core" 15886 + "poetry-core", 15887 + "setuptools" 15888 + ], 15889 + "tank-utility": [ 15890 + "setuptools" 15891 + ], 15892 + "tappy": [ 15893 + "setuptools" 1622 15894 ], 1623 15895 "tarsafe": [ 1624 15896 "poetry" 1625 15897 ], 15898 + "tasklib": [ 15899 + "setuptools" 15900 + ], 15901 + "taskw": [ 15902 + "setuptools" 15903 + ], 15904 + "tatsu": [ 15905 + "setuptools" 15906 + ], 15907 + "taxi": [ 15908 + "setuptools" 15909 + ], 15910 + "tblib": [ 15911 + "setuptools" 15912 + ], 15913 + "tbm-utils": [ 15914 + "setuptools" 15915 + ], 15916 + "tcxparser": [ 15917 + "setuptools" 15918 + ], 15919 + "tcxreader": [ 15920 + "setuptools" 15921 + ], 15922 + "teamcity-messages": [ 15923 + "setuptools" 15924 + ], 15925 + "telegram": [ 15926 + "setuptools" 15927 + ], 15928 + "telegraph": [ 15929 + "setuptools" 15930 + ], 15931 + "telethon": [ 15932 + "setuptools" 15933 + ], 15934 + "telethon-session-sqlalchemy": [ 15935 + "setuptools" 15936 + ], 15937 + "teletype": [ 15938 + "setuptools" 15939 + ], 15940 + "telfhash": [ 15941 + "setuptools" 15942 + ], 15943 + "tellduslive": [ 15944 + "setuptools" 15945 + ], 15946 + "temescal": [ 15947 + "setuptools" 15948 + ], 1626 15949 "tempest": [ 1627 - "pbr" 15950 + "pbr", 15951 + "setuptools" 15952 + ], 15953 + "tempita": [ 15954 + "setuptools" 15955 + ], 15956 + "tempora": [ 15957 + "setuptools", 15958 + "setuptools-scm" 1628 15959 ], 1629 15960 "tenacity": [ 1630 - "pbr" 15961 + "pbr", 15962 + "setuptools", 15963 + "setuptools-scm" 15964 + ], 15965 + "tensorboard": [ 15966 + "setuptools" 15967 + ], 15968 + "tensorboard-data-server": [ 15969 + "setuptools" 15970 + ], 15971 + "tensorboard-plugin-profile": [ 15972 + "setuptools" 15973 + ], 15974 + "tensorboard-plugin-wit": [ 15975 + "setuptools" 15976 + ], 15977 + "tensorboardx": [ 15978 + "setuptools" 15979 + ], 15980 + "tensorflow": [ 15981 + "setuptools" 15982 + ], 15983 + "tensorflow-bin": [ 15984 + "setuptools" 15985 + ], 15986 + "tensorflow-bin-2": [ 15987 + "setuptools" 15988 + ], 15989 + "tensorflow-build": [ 15990 + "setuptools" 15991 + ], 15992 + "tensorflow-build-2": [ 15993 + "setuptools" 15994 + ], 15995 + "tensorflow-datasets": [ 15996 + "setuptools" 15997 + ], 15998 + "tensorflow-estimator": [ 15999 + "setuptools" 16000 + ], 16001 + "tensorflow-estimator-2": [ 16002 + "setuptools" 16003 + ], 16004 + "tensorflow-metadata": [ 16005 + "setuptools" 16006 + ], 16007 + "tensorflow-probability": [ 16008 + "setuptools" 16009 + ], 16010 + "tensorflow-tensorboard": [ 16011 + "setuptools" 16012 + ], 16013 + "tensorflow-tensorboard-2": [ 16014 + "setuptools" 16015 + ], 16016 + "tensorflowwithcuda": [ 16017 + "setuptools" 16018 + ], 16019 + "tensorflowwithoutcuda": [ 16020 + "setuptools" 16021 + ], 16022 + "tensorly": [ 16023 + "setuptools" 16024 + ], 16025 + "tensorrt": [ 16026 + "setuptools" 16027 + ], 16028 + "termcolor": [ 16029 + "hatch-vcs", 16030 + "hatchling", 16031 + "setuptools" 16032 + ], 16033 + "terminado": [ 16034 + "hatchling", 16035 + "setuptools" 1631 16036 ], 1632 16037 "terminaltables": [ 1633 - "poetry" 16038 + "poetry", 16039 + "setuptools" 1634 16040 ], 1635 - "terminado": [ 1636 - "hatchling" 16041 + "termplotlib": [ 16042 + "setuptools" 16043 + ], 16044 + "termstyle": [ 16045 + "setuptools" 1637 16046 ], 1638 16047 "tern": [ 1639 - "pbr" 16048 + "pbr", 16049 + "setuptools" 16050 + ], 16051 + "tesla-powerwall": [ 16052 + "setuptools" 1640 16053 ], 1641 16054 "tesla-wall-connector": [ 1642 - "poetry-core" 16055 + "poetry-core", 16056 + "setuptools" 1643 16057 ], 1644 16058 "teslajsonpy": [ 1645 - "poetry-core" 16059 + "poetry-core", 16060 + "setuptools" 1646 16061 ], 1647 16062 "tess": [ 1648 - "cython" 16063 + "cython", 16064 + "setuptools" 1649 16065 ], 1650 16066 "tesserocr": [ 1651 - "cython" 16067 + "cython", 16068 + "setuptools" 16069 + ], 16070 + "test-tube": [ 16071 + "setuptools" 16072 + ], 16073 + "testcontainers": [ 16074 + "setuptools" 16075 + ], 16076 + "testfixtures": [ 16077 + "setuptools" 16078 + ], 16079 + "testing-common-database": [ 16080 + "setuptools" 16081 + ], 16082 + "testing-postgresql": [ 16083 + "setuptools" 1652 16084 ], 1653 16085 "testpath": [ 1654 16086 "flit", 1655 - "flit-core" 16087 + "flit-core", 16088 + "setuptools" 1656 16089 ], 1657 16090 "testrepository": [ 1658 - "pbr" 16091 + "pbr", 16092 + "setuptools" 1659 16093 ], 1660 16094 "testresources": [ 1661 - "pbr" 16095 + "pbr", 16096 + "setuptools" 16097 + ], 16098 + "testscenarios": [ 16099 + "setuptools" 1662 16100 ], 1663 16101 "testtools": [ 1664 - "pbr" 16102 + "pbr", 16103 + "setuptools" 16104 + ], 16105 + "text-unidecode": [ 16106 + "setuptools" 16107 + ], 16108 + "textacy": [ 16109 + "setuptools" 16110 + ], 16111 + "textdistance": [ 16112 + "setuptools" 16113 + ], 16114 + "textfsm": [ 16115 + "setuptools" 16116 + ], 16117 + "textile": [ 16118 + "setuptools" 16119 + ], 16120 + "texttable": [ 16121 + "setuptools" 1665 16122 ], 1666 16123 "textual": [ 1667 - "poetry-core" 16124 + "poetry-core", 16125 + "setuptools" 16126 + ], 16127 + "textwrap3": [ 16128 + "setuptools" 16129 + ], 16130 + "textx": [ 16131 + "setuptools" 16132 + ], 16133 + "tflearn": [ 16134 + "setuptools" 16135 + ], 16136 + "tgcrypto": [ 16137 + "setuptools" 16138 + ], 16139 + "theano": [ 16140 + "setuptools" 16141 + ], 16142 + "theano-pymc": [ 16143 + "setuptools" 16144 + ], 16145 + "theanowithcuda": [ 16146 + "setuptools" 16147 + ], 16148 + "theanowithoutcuda": [ 16149 + "setuptools" 16150 + ], 16151 + "thermobeacon-ble": [ 16152 + "poetry-core", 16153 + "setuptools" 16154 + ], 16155 + "thermopro-ble": [ 16156 + "poetry-core", 16157 + "setuptools" 16158 + ], 16159 + "thespian": [ 16160 + "setuptools" 1668 16161 ], 1669 16162 "thinc": [ 1670 - "cython" 16163 + "cython", 16164 + "setuptools" 16165 + ], 16166 + "threadloop": [ 16167 + "setuptools" 16168 + ], 16169 + "threadpool": [ 16170 + "setuptools" 1671 16171 ], 1672 16172 "threadpoolctl": [ 1673 - "flitBuildHook" 16173 + "flitBuildHook", 16174 + "setuptools" 16175 + ], 16176 + "threat9-test-bed": [ 16177 + "setuptools", 16178 + "setuptools-scm" 16179 + ], 16180 + "three-merge": [ 16181 + "setuptools" 16182 + ], 16183 + "thrift": [ 16184 + "setuptools" 16185 + ], 16186 + "thrift-sasl": [ 16187 + "setuptools" 1674 16188 ], 1675 16189 "thriftpy2": [ 1676 - "cython" 16190 + "cython", 16191 + "setuptools" 16192 + ], 16193 + "tidylib": [ 16194 + "setuptools" 16195 + ], 16196 + "tifffile": [ 16197 + "setuptools" 16198 + ], 16199 + "tika": [ 16200 + "setuptools" 1677 16201 ], 1678 16202 "tikzplotlib": [ 1679 - "flit-core" 16203 + "flit-core", 16204 + "setuptools" 16205 + ], 16206 + "tilequant": [ 16207 + "setuptools" 16208 + ], 16209 + "tiler": [ 16210 + "setuptools" 16211 + ], 16212 + "tilt-ble": [ 16213 + "poetry-core", 16214 + "setuptools" 16215 + ], 16216 + "time-machine": [ 16217 + "setuptools" 16218 + ], 16219 + "timeago": [ 16220 + "setuptools" 16221 + ], 16222 + "timecop": [ 16223 + "setuptools" 16224 + ], 16225 + "timelib": [ 16226 + "setuptools" 16227 + ], 16228 + "timeout-decorator": [ 16229 + "setuptools" 16230 + ], 16231 + "timetagger": [ 16232 + "setuptools" 16233 + ], 16234 + "timezonefinder": [ 16235 + "poetry-core", 16236 + "setuptools" 1680 16237 ], 1681 16238 "tinycss": [ 1682 - "cython" 16239 + "cython", 16240 + "setuptools" 1683 16241 ], 1684 16242 "tinycss2": [ 1685 - "flitBuildHook" 16243 + "flit-core", 16244 + "flitBuildHook", 16245 + "setuptools" 1686 16246 ], 1687 16247 "tinydb": [ 1688 - "poetry-core" 16248 + "poetry-core", 16249 + "setuptools" 16250 + ], 16251 + "tinyobjloader-py": [ 16252 + "setuptools" 16253 + ], 16254 + "tissue": [ 16255 + "setuptools" 16256 + ], 16257 + "titlecase": [ 16258 + "setuptools", 16259 + "setuptools-scm" 16260 + ], 16261 + "tkinter": [ 16262 + "setuptools" 16263 + ], 16264 + "tld": [ 16265 + "setuptools" 16266 + ], 16267 + "tldextract": [ 16268 + "setuptools", 16269 + "setuptools-scm" 16270 + ], 16271 + "tls-parser": [ 16272 + "setuptools" 16273 + ], 16274 + "tlsh": [ 16275 + "setuptools" 16276 + ], 16277 + "tlslite-ng": [ 16278 + "setuptools" 16279 + ], 16280 + "tmb": [ 16281 + "setuptools" 16282 + ], 16283 + "todoist": [ 16284 + "setuptools" 1689 16285 ], 1690 16286 "toggl-cli": [ 1691 - "pbr" 16287 + "pbr", 16288 + "setuptools" 16289 + ], 16290 + "token-bucket": [ 16291 + "setuptools" 16292 + ], 16293 + "tokenize-rt": [ 16294 + "setuptools" 16295 + ], 16296 + "tokenizers": [ 16297 + "setuptools" 16298 + ], 16299 + "tokenlib": [ 16300 + "setuptools" 16301 + ], 16302 + "tololib": [ 16303 + "setuptools", 16304 + "setuptools-scm" 16305 + ], 16306 + "toml": [ 16307 + "setuptools" 16308 + ], 16309 + "toml-adapt": [ 16310 + "poetry-core", 16311 + "setuptools" 1692 16312 ], 1693 16313 "toml-cli": [ 1694 16314 "poetry" ··· 1697 16317 "poetry" 1698 16318 ], 1699 16319 "tomli": [ 1700 - "flit-core" 16320 + "flit-core", 16321 + "setuptools" 1701 16322 ], 1702 16323 "tomli-w": [ 1703 - "flit-core" 16324 + "flit-core", 16325 + "setuptools" 1704 16326 ], 1705 16327 "tomlkit": [ 1706 - "poetry-core" 16328 + "poetry-core", 16329 + "setuptools" 16330 + ], 16331 + "toolz": [ 16332 + "setuptools" 16333 + ], 16334 + "toonapi": [ 16335 + "setuptools" 16336 + ], 16337 + "toposort": [ 16338 + "setuptools" 16339 + ], 16340 + "torch": [ 16341 + "setuptools" 16342 + ], 16343 + "torch-bin": [ 16344 + "setuptools" 16345 + ], 16346 + "torch-tb-profiler": [ 16347 + "setuptools" 16348 + ], 16349 + "torchaudio-bin": [ 16350 + "setuptools" 16351 + ], 16352 + "torchgpipe": [ 16353 + "setuptools" 16354 + ], 16355 + "torchinfo": [ 16356 + "setuptools" 16357 + ], 16358 + "torchmetrics": [ 16359 + "setuptools" 16360 + ], 16361 + "torchvision": [ 16362 + "setuptools" 16363 + ], 16364 + "torchvision-bin": [ 16365 + "setuptools" 16366 + ], 16367 + "torchwithcuda": [ 16368 + "setuptools" 16369 + ], 16370 + "torchwithoutcuda": [ 16371 + "setuptools" 16372 + ], 16373 + "tornado": [ 16374 + "setuptools" 16375 + ], 16376 + "torpy": [ 16377 + "setuptools" 16378 + ], 16379 + "torrequest": [ 16380 + "setuptools" 1707 16381 ], 1708 16382 "tortoise-orm": [ 1709 16383 "poetry-core" 1710 16384 ], 16385 + "total-connect-client": [ 16386 + "setuptools" 16387 + ], 16388 + "towncrier": [ 16389 + "setuptools" 16390 + ], 16391 + "tox": [ 16392 + "setuptools", 16393 + "setuptools-scm" 16394 + ], 16395 + "tpm2-pytss": [ 16396 + "setuptools", 16397 + "setuptools-scm" 16398 + ], 16399 + "tqdm": [ 16400 + "setuptools", 16401 + "setuptools-scm" 16402 + ], 1711 16403 "traceback2": [ 1712 - "pbr" 16404 + "pbr", 16405 + "setuptools" 16406 + ], 16407 + "tracing": [ 16408 + "setuptools" 16409 + ], 16410 + "trackpy": [ 16411 + "setuptools" 1713 16412 ], 1714 16413 "traitlets": [ 1715 - { "buildSystem": "flit-core", "until": "5.2.1" }, 1716 - { "buildSystem": "hatchling", "from": "5.2.1" } 16414 + { 16415 + "buildSystem": "flit-core", 16416 + "until": "5.2.1" 16417 + }, 16418 + { 16419 + "buildSystem": "hatchling", 16420 + "from": "5.2.1" 16421 + }, 16422 + "setuptools" 16423 + ], 16424 + "traits": [ 16425 + "setuptools" 16426 + ], 16427 + "traitsui": [ 16428 + "setuptools" 16429 + ], 16430 + "traittypes": [ 16431 + "setuptools" 16432 + ], 16433 + "transaction": [ 16434 + "setuptools" 16435 + ], 16436 + "transformers": [ 16437 + "setuptools" 16438 + ], 16439 + "transforms3d": [ 16440 + "setuptools" 16441 + ], 16442 + "transitions": [ 16443 + "setuptools" 16444 + ], 16445 + "translatepy": [ 16446 + "setuptools" 16447 + ], 16448 + "translationstring": [ 16449 + "setuptools" 16450 + ], 16451 + "transliterate": [ 16452 + "setuptools" 1717 16453 ], 1718 16454 "transmission-rpc": [ 1719 - "poetry-core" 16455 + "poetry-core", 16456 + "setuptools" 16457 + ], 16458 + "transmissionrpc": [ 16459 + "setuptools" 16460 + ], 16461 + "trectools": [ 16462 + "setuptools" 16463 + ], 16464 + "treelog": [ 16465 + "setuptools" 1720 16466 ], 1721 16467 "treeo": [ 1722 - "poetry-core" 16468 + "poetry-core", 16469 + "setuptools" 1723 16470 ], 1724 16471 "treex": [ 1725 - "poetry-core" 16472 + "poetry-core", 16473 + "setuptools" 16474 + ], 16475 + "treq": [ 16476 + "setuptools" 16477 + ], 16478 + "trezor": [ 16479 + "setuptools" 16480 + ], 16481 + "trezor-agent": [ 16482 + "setuptools" 16483 + ], 16484 + "trfl": [ 16485 + "setuptools" 16486 + ], 16487 + "trimesh": [ 16488 + "setuptools" 16489 + ], 16490 + "trio": [ 16491 + "setuptools" 16492 + ], 16493 + "trio-asyncio": [ 16494 + "setuptools" 16495 + ], 16496 + "trio-websocket": [ 16497 + "setuptools" 16498 + ], 16499 + "trueskill": [ 16500 + "setuptools" 16501 + ], 16502 + "trustme": [ 16503 + "setuptools" 16504 + ], 16505 + "trytond": [ 16506 + "setuptools" 1726 16507 ], 1727 16508 "ttls": [ 1728 - "poetry-core" 16509 + "poetry-core", 16510 + "setuptools" 16511 + ], 16512 + "ttp": [ 16513 + "poetry-core", 16514 + "setuptools" 16515 + ], 16516 + "ttp-templates": [ 16517 + "poetry-core", 16518 + "setuptools" 16519 + ], 16520 + "tubes": [ 16521 + "setuptools" 16522 + ], 16523 + "tubeup": [ 16524 + "setuptools" 16525 + ], 16526 + "tumpa": [ 16527 + "setuptools" 16528 + ], 16529 + "tunigo": [ 16530 + "setuptools" 16531 + ], 16532 + "turnt": [ 16533 + "flitBuildHook", 16534 + "setuptools" 16535 + ], 16536 + "tuya-iot-py-sdk": [ 16537 + "setuptools" 16538 + ], 16539 + "tuyaha": [ 16540 + "setuptools" 16541 + ], 16542 + "tweedledum": [ 16543 + "setuptools" 16544 + ], 16545 + "tweepy": [ 16546 + "setuptools" 1729 16547 ], 1730 16548 "twentemilieu": [ 1731 - "poetry-core" 16549 + "poetry-core", 16550 + "setuptools" 16551 + ], 16552 + "twiggy": [ 16553 + "setuptools" 16554 + ], 16555 + "twilio": [ 16556 + "setuptools" 16557 + ], 16558 + "twill": [ 16559 + "setuptools" 16560 + ], 16561 + "twine": [ 16562 + "setuptools", 16563 + "setuptools-scm" 16564 + ], 16565 + "twinkly-client": [ 16566 + "setuptools" 16567 + ], 16568 + "twisted": [ 16569 + "setuptools" 16570 + ], 16571 + "twitch-python": [ 16572 + "setuptools" 16573 + ], 16574 + "twitchapi": [ 16575 + "setuptools" 16576 + ], 16577 + "twitter": [ 16578 + "setuptools", 16579 + "setuptools-scm" 16580 + ], 16581 + "twitter-common-collections": [ 16582 + "setuptools" 16583 + ], 16584 + "twitter-common-confluence": [ 16585 + "setuptools" 16586 + ], 16587 + "twitter-common-dirutil": [ 16588 + "setuptools" 16589 + ], 16590 + "twitter-common-lang": [ 16591 + "setuptools" 16592 + ], 16593 + "twitter-common-log": [ 16594 + "setuptools" 16595 + ], 16596 + "twitter-common-options": [ 16597 + "setuptools" 16598 + ], 16599 + "twitterapi": [ 16600 + "setuptools" 16601 + ], 16602 + "twofish": [ 16603 + "setuptools" 16604 + ], 16605 + "txaio": [ 16606 + "setuptools" 16607 + ], 16608 + "txamqp": [ 16609 + "setuptools" 16610 + ], 16611 + "txdbus": [ 16612 + "setuptools" 16613 + ], 16614 + "txgithub": [ 16615 + "setuptools" 16616 + ], 16617 + "txredisapi": [ 16618 + "setuptools" 16619 + ], 16620 + "txrequests": [ 16621 + "setuptools" 16622 + ], 16623 + "txtorcon": [ 16624 + "setuptools" 16625 + ], 16626 + "txzmq": [ 16627 + "setuptools" 16628 + ], 16629 + "typecode": [ 16630 + "setuptools", 16631 + "setuptools-scm" 16632 + ], 16633 + "typecode-libmagic": [ 16634 + "setuptools" 16635 + ], 16636 + "typed-ast": [ 16637 + "setuptools" 16638 + ], 16639 + "typed-settings": [ 16640 + "setuptools" 16641 + ], 16642 + "typeguard": [ 16643 + "setuptools", 16644 + "setuptools-scm" 1732 16645 ], 1733 16646 "typer": [ 1734 - "flit-core" 16647 + "flit-core", 16648 + "setuptools" 16649 + ], 16650 + "types-awscrt": [ 16651 + "poetry-core" 16652 + ], 16653 + "types-colorama": [ 16654 + "setuptools" 16655 + ], 16656 + "types-dateutil": [ 16657 + "setuptools" 16658 + ], 16659 + "types-decorator": [ 16660 + "setuptools" 16661 + ], 16662 + "types-docutils": [ 16663 + "setuptools" 16664 + ], 16665 + "types-enum34": [ 16666 + "setuptools" 16667 + ], 16668 + "types-freezegun": [ 16669 + "setuptools" 16670 + ], 16671 + "types-futures": [ 16672 + "setuptools" 16673 + ], 16674 + "types-html5lib": [ 16675 + "setuptools" 16676 + ], 16677 + "types-ipaddress": [ 16678 + "setuptools" 16679 + ], 16680 + "types-jsonschema": [ 16681 + "setuptools" 16682 + ], 16683 + "types-protobuf": [ 16684 + "setuptools" 16685 + ], 16686 + "types-pytz": [ 16687 + "setuptools" 16688 + ], 16689 + "types-pyyaml": [ 16690 + "setuptools" 16691 + ], 16692 + "types-redis": [ 16693 + "setuptools" 16694 + ], 16695 + "types-requests": [ 16696 + "setuptools" 16697 + ], 16698 + "types-s3transfer": [ 16699 + "poetry-core" 16700 + ], 16701 + "types-setuptools": [ 16702 + "setuptools" 16703 + ], 16704 + "types-tabulate": [ 16705 + "setuptools" 16706 + ], 16707 + "types-toml": [ 16708 + "setuptools" 16709 + ], 16710 + "types-typed-ast": [ 16711 + "setuptools" 16712 + ], 16713 + "types-urllib3": [ 16714 + "setuptools" 16715 + ], 16716 + "typesentry": [ 16717 + "setuptools" 16718 + ], 16719 + "typesystem": [ 16720 + "setuptools" 1735 16721 ], 1736 16722 "typical": [ 1737 - "poetry-core" 16723 + "poetry-core", 16724 + "setuptools" 16725 + ], 16726 + "typing": [ 16727 + "setuptools" 1738 16728 ], 1739 16729 "typing-extensions": [ 1740 - "flit-core" 16730 + "flit-core", 16731 + "setuptools" 16732 + ], 16733 + "typing-inspect": [ 16734 + "setuptools" 16735 + ], 16736 + "typish": [ 16737 + "setuptools" 16738 + ], 16739 + "typogrify": [ 16740 + "setuptools" 16741 + ], 16742 + "tzdata": [ 16743 + "setuptools" 16744 + ], 16745 + "tzlocal": [ 16746 + "setuptools" 16747 + ], 16748 + "u-msgpack-python": [ 16749 + "setuptools" 16750 + ], 16751 + "ua-parser": [ 16752 + "setuptools" 16753 + ], 16754 + "uamqp": [ 16755 + "setuptools" 16756 + ], 16757 + "uarray": [ 16758 + "setuptools" 16759 + ], 16760 + "uasiren": [ 16761 + "setuptools", 16762 + "setuptools-scm" 16763 + ], 16764 + "uc-micro-py": [ 16765 + "setuptools" 16766 + ], 16767 + "udatetime": [ 16768 + "setuptools" 16769 + ], 16770 + "ueagle": [ 16771 + "setuptools" 16772 + ], 16773 + "ueberzug": [ 16774 + "setuptools" 16775 + ], 16776 + "ufo2ft": [ 16777 + "setuptools", 16778 + "setuptools-scm" 16779 + ], 16780 + "ufolib2": [ 16781 + "setuptools", 16782 + "setuptools-scm" 16783 + ], 16784 + "ufonormalizer": [ 16785 + "setuptools", 16786 + "setuptools-scm" 16787 + ], 16788 + "ufoprocessor": [ 16789 + "setuptools", 16790 + "setuptools-scm" 1741 16791 ], 1742 16792 "uharfbuzz": [ 1743 - "cython" 16793 + "cython", 16794 + "setuptools", 16795 + "setuptools-scm" 16796 + ], 16797 + "ujson": [ 16798 + "setuptools", 16799 + "setuptools-scm" 16800 + ], 16801 + "ukkonen": [ 16802 + "setuptools" 16803 + ], 16804 + "ukpostcodeparser": [ 16805 + "setuptools" 16806 + ], 16807 + "ukrainealarm": [ 16808 + "setuptools", 16809 + "setuptools-scm" 16810 + ], 16811 + "ultraheat-api": [ 16812 + "setuptools" 16813 + ], 16814 + "umalqurra": [ 16815 + "setuptools" 16816 + ], 16817 + "umap-learn": [ 16818 + "setuptools" 16819 + ], 16820 + "unasync": [ 16821 + "setuptools" 16822 + ], 16823 + "uncertainties": [ 16824 + "setuptools" 16825 + ], 16826 + "unicode-slugify": [ 16827 + "setuptools" 16828 + ], 16829 + "unicodecsv": [ 16830 + "setuptools" 16831 + ], 16832 + "unicodedata2": [ 16833 + "setuptools" 16834 + ], 16835 + "unicorn": [ 16836 + "setuptools" 16837 + ], 16838 + "unicrypto": [ 16839 + "setuptools" 16840 + ], 16841 + "unidecode": [ 16842 + "setuptools" 16843 + ], 16844 + "unidic-lite": [ 16845 + "setuptools" 16846 + ], 16847 + "unidiff": [ 16848 + "setuptools" 16849 + ], 16850 + "unifi": [ 16851 + "setuptools" 16852 + ], 16853 + "unifi-discovery": [ 16854 + "poetry-core", 16855 + "setuptools" 16856 + ], 16857 + "unifiled": [ 16858 + "setuptools" 16859 + ], 16860 + "unify": [ 16861 + "setuptools" 16862 + ], 16863 + "units": [ 16864 + "setuptools" 16865 + ], 16866 + "unittest-data-provider": [ 16867 + "setuptools" 16868 + ], 16869 + "unittest-xml-reporting": [ 16870 + "setuptools" 16871 + ], 16872 + "unittest2": [ 16873 + "setuptools" 16874 + ], 16875 + "univers": [ 16876 + "setuptools", 16877 + "setuptools-scm" 1744 16878 ], 1745 16879 "unpaddedbase64": [ 1746 - "poetry-core" 16880 + "poetry-core", 16881 + "setuptools" 16882 + ], 16883 + "unrardll": [ 16884 + "setuptools" 16885 + ], 16886 + "untangle": [ 16887 + "setuptools" 16888 + ], 16889 + "untokenize": [ 16890 + "setuptools" 16891 + ], 16892 + "uonet-request-signer-hebe": [ 16893 + "setuptools" 16894 + ], 16895 + "upass": [ 16896 + "setuptools" 16897 + ], 16898 + "upb-lib": [ 16899 + "setuptools" 16900 + ], 16901 + "upcloud-api": [ 16902 + "setuptools" 16903 + ], 16904 + "update-checker": [ 16905 + "setuptools" 16906 + ], 16907 + "update-copyright": [ 16908 + "setuptools" 16909 + ], 16910 + "update-dotdee": [ 16911 + "setuptools" 16912 + ], 16913 + "upnpy": [ 16914 + "setuptools" 16915 + ], 16916 + "uproot": [ 16917 + "setuptools" 16918 + ], 16919 + "uproot3": [ 16920 + "setuptools" 16921 + ], 16922 + "uproot3-methods": [ 16923 + "setuptools" 16924 + ], 16925 + "uptime": [ 16926 + "setuptools" 16927 + ], 16928 + "uptime-kuma-monitor": [ 16929 + "setuptools" 16930 + ], 16931 + "uranium": [ 16932 + "setuptools" 16933 + ], 16934 + "uri-template": [ 16935 + "setuptools" 16936 + ], 16937 + "uritemplate": [ 16938 + "setuptools" 16939 + ], 16940 + "uritools": [ 16941 + "setuptools" 1747 16942 ], 1748 16943 "url-normalize": [ 1749 - "poetry-core" 16944 + "poetry-core", 16945 + "setuptools" 16946 + ], 16947 + "urlextract": [ 16948 + "setuptools" 16949 + ], 16950 + "urlgrabber": [ 16951 + "setuptools" 16952 + ], 16953 + "urllib3": [ 16954 + "setuptools" 16955 + ], 16956 + "urlpy": [ 16957 + "setuptools" 16958 + ], 16959 + "urwid": [ 16960 + "setuptools" 16961 + ], 16962 + "urwid-readline": [ 16963 + "setuptools" 16964 + ], 16965 + "urwidtrees": [ 16966 + "setuptools" 16967 + ], 16968 + "us": [ 16969 + "setuptools" 16970 + ], 16971 + "usbrelay-py": [ 16972 + "setuptools" 16973 + ], 16974 + "usbtmc": [ 16975 + "setuptools" 16976 + ], 16977 + "user-agents": [ 16978 + "setuptools" 16979 + ], 16980 + "userpath": [ 16981 + "setuptools" 16982 + ], 16983 + "ush": [ 16984 + "setuptools" 16985 + ], 16986 + "utils": [ 16987 + "setuptools" 16988 + ], 16989 + "uuid": [ 16990 + "setuptools" 16991 + ], 16992 + "uvcclient": [ 16993 + "setuptools" 16994 + ], 16995 + "uvicorn": [ 16996 + "hatchling", 16997 + "setuptools" 16998 + ], 16999 + "uvloop": [ 17000 + "cython", 17001 + "setuptools" 17002 + ], 17003 + "vaa": [ 17004 + "flit-core", 17005 + "setuptools" 17006 + ], 17007 + "validate-email": [ 17008 + "setuptools" 17009 + ], 17010 + "validators": [ 17011 + "setuptools" 17012 + ], 17013 + "validobj": [ 17014 + "flit", 17015 + "setuptools" 17016 + ], 17017 + "validphys2": [ 17018 + "setuptools" 17019 + ], 17020 + "vallox-websocket-api": [ 17021 + "setuptools" 17022 + ], 17023 + "vapoursynth": [ 17024 + "cython", 17025 + "setuptools" 17026 + ], 17027 + "variants": [ 17028 + "setuptools", 17029 + "setuptools-scm" 17030 + ], 17031 + "varint": [ 17032 + "setuptools" 17033 + ], 17034 + "vcrpy": [ 17035 + "setuptools" 17036 + ], 17037 + "vcver": [ 17038 + "setuptools" 17039 + ], 17040 + "vcversioner": [ 17041 + "setuptools" 17042 + ], 17043 + "vdf": [ 17044 + "setuptools" 17045 + ], 17046 + "vdirsyncer": [ 17047 + "setuptools", 17048 + "setuptools-scm" 17049 + ], 17050 + "vector": [ 17051 + "hatchling" 17052 + ], 17053 + "vega": [ 17054 + "setuptools" 17055 + ], 17056 + "vega-datasets": [ 17057 + "setuptools" 1750 17058 ], 1751 17059 "vehicle": [ 1752 - "poetry-core" 17060 + "poetry-core", 17061 + "setuptools" 17062 + ], 17063 + "velbus-aio": [ 17064 + "setuptools" 17065 + ], 17066 + "venstarcolortouch": [ 17067 + "setuptools" 17068 + ], 17069 + "venusian": [ 17070 + "setuptools" 17071 + ], 17072 + "verboselogs": [ 17073 + "setuptools" 17074 + ], 17075 + "versioneer": [ 17076 + "setuptools" 17077 + ], 17078 + "versionfinder": [ 17079 + "setuptools" 17080 + ], 17081 + "versioningit": [ 17082 + "setuptools" 17083 + ], 17084 + "versiontag": [ 17085 + "setuptools" 17086 + ], 17087 + "versiontools": [ 17088 + "setuptools" 17089 + ], 17090 + "vertica-python": [ 17091 + "setuptools" 17092 + ], 17093 + "veryprettytable": [ 17094 + "setuptools" 17095 + ], 17096 + "videocr": [ 17097 + "setuptools" 17098 + ], 17099 + "vidstab": [ 17100 + "setuptools" 17101 + ], 17102 + "viewstate": [ 17103 + "setuptools" 17104 + ], 17105 + "vilfo-api-client": [ 17106 + "setuptools", 17107 + "setuptools-scm" 17108 + ], 17109 + "vincenty": [ 17110 + "setuptools" 17111 + ], 17112 + "vine": [ 17113 + "setuptools" 17114 + ], 17115 + "virtkey": [ 17116 + "setuptools" 17117 + ], 17118 + "virtual-display": [ 17119 + "setuptools" 1753 17120 ], 1754 17121 "virtualenv": [ 1755 - "cython" 17122 + "cython", 17123 + "setuptools", 17124 + "setuptools-scm" 17125 + ], 17126 + "virtualenv-clone": [ 17127 + "setuptools" 1756 17128 ], 1757 17129 "virtualenvwrapper": [ 1758 - "pbr" 17130 + "pbr", 17131 + "setuptools" 17132 + ], 17133 + "visitor": [ 17134 + "setuptools" 1759 17135 ], 1760 17136 "vispy": [ 1761 - "cython" 17137 + "cython", 17138 + "setuptools", 17139 + "setuptools-scm" 17140 + ], 17141 + "viv-utils": [ 17142 + "setuptools" 17143 + ], 17144 + "vivisect": [ 17145 + "setuptools" 17146 + ], 17147 + "vmprof": [ 17148 + "setuptools" 17149 + ], 17150 + "vncdo": [ 17151 + "setuptools" 17152 + ], 17153 + "vobject": [ 17154 + "setuptools" 17155 + ], 17156 + "volkszaehler": [ 17157 + "setuptools" 17158 + ], 17159 + "voluptuous": [ 17160 + "setuptools" 17161 + ], 17162 + "voluptuous-serialize": [ 17163 + "setuptools" 17164 + ], 17165 + "volvooncall": [ 17166 + "setuptools" 17167 + ], 17168 + "vowpalwabbit": [ 17169 + "setuptools" 17170 + ], 17171 + "vpk": [ 17172 + "setuptools" 17173 + ], 17174 + "vqgan-jax": [ 17175 + "setuptools" 17176 + ], 17177 + "vsts": [ 17178 + "setuptools" 17179 + ], 17180 + "vsts-cd-manager": [ 17181 + "setuptools" 17182 + ], 17183 + "vsure": [ 17184 + "setuptools" 17185 + ], 17186 + "vt-py": [ 17187 + "setuptools" 17188 + ], 17189 + "vulcan-api": [ 17190 + "setuptools" 17191 + ], 17192 + "vultr": [ 17193 + "setuptools" 17194 + ], 17195 + "vulture": [ 17196 + "setuptools" 17197 + ], 17198 + "vxi11": [ 17199 + "setuptools" 17200 + ], 17201 + "vyper": [ 17202 + "setuptools", 17203 + "setuptools-scm" 17204 + ], 17205 + "w3lib": [ 17206 + "setuptools" 17207 + ], 17208 + "wadllib": [ 17209 + "setuptools" 17210 + ], 17211 + "waitress": [ 17212 + "setuptools" 17213 + ], 17214 + "waitress-django": [ 17215 + "setuptools" 1762 17216 ], 1763 17217 "wakeonlan": [ 1764 - "poetry-core" 17218 + "poetry-core", 17219 + "setuptools" 17220 + ], 17221 + "wallbox": [ 17222 + "setuptools" 17223 + ], 17224 + "wand": [ 17225 + "setuptools" 17226 + ], 17227 + "wandb": [ 17228 + "setuptools" 17229 + ], 17230 + "waqiasync": [ 17231 + "setuptools" 17232 + ], 17233 + "warcio": [ 17234 + "setuptools" 17235 + ], 17236 + "warlock": [ 17237 + "poetry-core", 17238 + "setuptools" 17239 + ], 17240 + "warrant": [ 17241 + "setuptools" 17242 + ], 17243 + "warrant-lite": [ 17244 + "setuptools" 17245 + ], 17246 + "wasabi": [ 17247 + "setuptools" 17248 + ], 17249 + "wasmer": [ 17250 + "setuptools" 17251 + ], 17252 + "wasmer-compiler-cranelift": [ 17253 + "setuptools" 17254 + ], 17255 + "wasmer-compiler-llvm": [ 17256 + "setuptools" 17257 + ], 17258 + "wasmer-compiler-singlepass": [ 17259 + "setuptools" 17260 + ], 17261 + "wasmerpackages-wasmer": [ 17262 + "setuptools" 17263 + ], 17264 + "wasmerpackages-wasmer-compiler-cranelift": [ 17265 + "setuptools" 17266 + ], 17267 + "wasmerpackages-wasmer-compiler-llvm": [ 17268 + "setuptools" 17269 + ], 17270 + "wasmerpackages-wasmer-compiler-singlepass": [ 17271 + "setuptools" 17272 + ], 17273 + "watchdog": [ 17274 + "setuptools" 17275 + ], 17276 + "watchfiles": [ 17277 + "setuptools" 17278 + ], 17279 + "watchgod": [ 17280 + "setuptools" 17281 + ], 17282 + "waterfurnace": [ 17283 + "setuptools" 17284 + ], 17285 + "watermark": [ 17286 + "setuptools" 17287 + ], 17288 + "wavedrom": [ 17289 + "setuptools", 17290 + "setuptools-scm" 17291 + ], 17292 + "wavefile": [ 17293 + "setuptools" 17294 + ], 17295 + "wavinsentio": [ 17296 + "setuptools" 17297 + ], 17298 + "wazeroutecalculator": [ 17299 + "setuptools" 17300 + ], 17301 + "wcag-contrast-ratio": [ 17302 + "setuptools" 1765 17303 ], 1766 17304 "wcmatch": [ 1767 - "hatchling" 17305 + "hatchling", 17306 + "setuptools" 17307 + ], 17308 + "wcwidth": [ 17309 + "setuptools" 1768 17310 ], 1769 17311 "weasyprint": [ 1770 - "flit-core" 17312 + "flit-core", 17313 + "setuptools" 17314 + ], 17315 + "web": [ 17316 + "setuptools" 17317 + ], 17318 + "web-cache": [ 17319 + "setuptools" 17320 + ], 17321 + "web3": [ 17322 + "setuptools" 17323 + ], 17324 + "webargs": [ 17325 + "setuptools" 17326 + ], 17327 + "webassets": [ 17328 + "setuptools" 17329 + ], 17330 + "webauthn": [ 17331 + "setuptools" 17332 + ], 17333 + "webcolors": [ 17334 + "setuptools" 17335 + ], 17336 + "webdav4": [ 17337 + "setuptools", 17338 + "setuptools-scm" 17339 + ], 17340 + "webdavclient3": [ 17341 + "setuptools" 17342 + ], 17343 + "webencodings": [ 17344 + "setuptools" 17345 + ], 17346 + "webexteamssdk": [ 17347 + "setuptools" 17348 + ], 17349 + "webhelpers": [ 17350 + "setuptools" 17351 + ], 17352 + "webob": [ 17353 + "setuptools" 17354 + ], 17355 + "weboob": [ 17356 + "setuptools" 17357 + ], 17358 + "webrtcvad": [ 17359 + "setuptools" 17360 + ], 17361 + "websocket-client": [ 17362 + "setuptools" 17363 + ], 17364 + "websockets": [ 17365 + "setuptools" 17366 + ], 17367 + "websockify": [ 17368 + "setuptools" 17369 + ], 17370 + "webssh": [ 17371 + "setuptools" 17372 + ], 17373 + "webtest": [ 17374 + "setuptools" 17375 + ], 17376 + "webtest-aiohttp": [ 17377 + "setuptools" 17378 + ], 17379 + "webthing": [ 17380 + "setuptools" 17381 + ], 17382 + "weconnect": [ 17383 + "setuptools" 17384 + ], 17385 + "weconnect-mqtt": [ 17386 + "setuptools" 17387 + ], 17388 + "werkzeug": [ 17389 + "setuptools" 17390 + ], 17391 + "west": [ 17392 + "setuptools" 17393 + ], 17394 + "wfuzz": [ 17395 + "setuptools" 17396 + ], 17397 + "wget": [ 17398 + "setuptools" 17399 + ], 17400 + "whatthepatch": [ 17401 + "setuptools" 17402 + ], 17403 + "wheel": [ 17404 + "setuptools" 17405 + ], 17406 + "wheel-filename": [ 17407 + "setuptools" 17408 + ], 17409 + "wheel-inspect": [ 17410 + "setuptools" 17411 + ], 17412 + "whichcraft": [ 17413 + "setuptools" 17414 + ], 17415 + "whirlpool-sixth-sense": [ 17416 + "setuptools" 17417 + ], 17418 + "whisper": [ 17419 + "setuptools" 17420 + ], 17421 + "whispers": [ 17422 + "setuptools" 17423 + ], 17424 + "whitenoise": [ 17425 + "setuptools" 17426 + ], 17427 + "whodap": [ 17428 + "setuptools" 17429 + ], 17430 + "whois": [ 17431 + "setuptools" 17432 + ], 17433 + "whoosh": [ 17434 + "setuptools" 17435 + ], 17436 + "widgetsnbextension": [ 17437 + "jupyter-packaging", 17438 + "setuptools" 17439 + ], 17440 + "widlparser": [ 17441 + "setuptools" 17442 + ], 17443 + "wiffi": [ 17444 + "setuptools" 17445 + ], 17446 + "wifi": [ 17447 + "setuptools" 17448 + ], 17449 + "willow": [ 17450 + "setuptools" 17451 + ], 17452 + "winacl": [ 17453 + "setuptools" 17454 + ], 17455 + "winsspi": [ 17456 + "setuptools" 17457 + ], 17458 + "wktutils": [ 17459 + "setuptools" 1771 17460 ], 1772 17461 "wled": [ 1773 - "poetry-core" 17462 + "poetry-core", 17463 + "setuptools" 17464 + ], 17465 + "woob": [ 17466 + "setuptools" 17467 + ], 17468 + "woodblock": [ 17469 + "setuptools" 1774 17470 ], 1775 17471 "word2vec": [ 1776 - "cython" 17472 + "cython", 17473 + "setuptools", 17474 + "setuptools-scm" 1777 17475 ], 1778 17476 "wordcloud": [ 1779 - "cython" 17477 + "cython", 17478 + "setuptools" 17479 + ], 17480 + "wordfreq": [ 17481 + "setuptools" 17482 + ], 17483 + "wrapio": [ 17484 + "setuptools" 17485 + ], 17486 + "wrapt": [ 17487 + "setuptools" 17488 + ], 17489 + "wrf-python": [ 17490 + "setuptools" 17491 + ], 17492 + "ws4py": [ 17493 + "setuptools" 17494 + ], 17495 + "wsdiscovery": [ 17496 + "setuptools" 17497 + ], 17498 + "wsgi-intercept": [ 17499 + "setuptools" 17500 + ], 17501 + "wsgidav": [ 17502 + "setuptools" 17503 + ], 17504 + "wsgiprox": [ 17505 + "setuptools" 17506 + ], 17507 + "wsgiproxy2": [ 17508 + "setuptools" 17509 + ], 17510 + "wsgitools": [ 17511 + "setuptools" 17512 + ], 17513 + "wsnsimpy": [ 17514 + "setuptools" 17515 + ], 17516 + "wsproto": [ 17517 + "setuptools" 17518 + ], 17519 + "wtf-peewee": [ 17520 + "setuptools" 17521 + ], 17522 + "wtforms": [ 17523 + "setuptools" 17524 + ], 17525 + "wurlitzer": [ 17526 + "setuptools" 17527 + ], 17528 + "wxpython-4-0": [ 17529 + "setuptools" 17530 + ], 17531 + "wxpython-4-1": [ 17532 + "setuptools" 17533 + ], 17534 + "x11-hash": [ 17535 + "setuptools" 17536 + ], 17537 + "x256": [ 17538 + "setuptools" 17539 + ], 17540 + "xapian": [ 17541 + "setuptools" 17542 + ], 17543 + "xapp": [ 17544 + "setuptools" 17545 + ], 17546 + "xarray": [ 17547 + "setuptools", 17548 + "setuptools-scm" 17549 + ], 17550 + "xarray-einstats": [ 17551 + "flit-core", 17552 + "setuptools" 17553 + ], 17554 + "xattr": [ 17555 + "setuptools" 17556 + ], 17557 + "xbox-webapi": [ 17558 + "setuptools" 17559 + ], 17560 + "xboxapi": [ 17561 + "setuptools" 17562 + ], 17563 + "xcffib": [ 17564 + "setuptools" 1780 17565 ], 1781 17566 "xdg": [ 1782 - "poetry-core" 17567 + "poetry-core", 17568 + "setuptools" 17569 + ], 17570 + "xdis": [ 17571 + "setuptools" 17572 + ], 17573 + "xdot": [ 17574 + "setuptools" 17575 + ], 17576 + "xhtml2pdf": [ 17577 + "setuptools" 17578 + ], 17579 + "xiaomi-ble": [ 17580 + "poetry-core", 17581 + "setuptools" 17582 + ], 17583 + "xkbcommon": [ 17584 + "setuptools" 17585 + ], 17586 + "xkcdpass": [ 17587 + "setuptools" 17588 + ], 17589 + "xknx": [ 17590 + "setuptools" 17591 + ], 17592 + "xlib": [ 17593 + "setuptools", 17594 + "setuptools-scm" 17595 + ], 17596 + "xlrd": [ 17597 + "setuptools" 17598 + ], 17599 + "xlsx2csv": [ 17600 + "setuptools" 17601 + ], 17602 + "xlsxwriter": [ 17603 + "setuptools" 17604 + ], 17605 + "xlwt": [ 17606 + "setuptools" 17607 + ], 17608 + "xmind": [ 17609 + "setuptools" 17610 + ], 17611 + "xml-marshaller": [ 17612 + "setuptools" 17613 + ], 17614 + "xml2rfc": [ 17615 + "setuptools" 17616 + ], 17617 + "xmldiff": [ 17618 + "setuptools" 17619 + ], 17620 + "xmljson": [ 17621 + "setuptools" 17622 + ], 17623 + "xmlschema": [ 17624 + "setuptools" 17625 + ], 17626 + "xmlsec": [ 17627 + "setuptools", 17628 + "setuptools-scm" 17629 + ], 17630 + "xmltodict": [ 17631 + "setuptools" 17632 + ], 17633 + "xmodem": [ 17634 + "setuptools" 17635 + ], 17636 + "xnd": [ 17637 + "setuptools" 1783 17638 ], 1784 17639 "xpath-expressions": [ 1785 - "poetry-core" 17640 + "poetry-core", 17641 + "setuptools" 17642 + ], 17643 + "xpybutil": [ 17644 + "setuptools" 17645 + ], 17646 + "xsdata": [ 17647 + "setuptools" 17648 + ], 17649 + "xstatic": [ 17650 + "setuptools" 17651 + ], 17652 + "xstatic-bootbox": [ 17653 + "setuptools" 17654 + ], 17655 + "xstatic-bootstrap": [ 17656 + "setuptools" 17657 + ], 17658 + "xstatic-jquery": [ 17659 + "setuptools" 17660 + ], 17661 + "xstatic-jquery-file-upload": [ 17662 + "setuptools" 17663 + ], 17664 + "xstatic-jquery-ui": [ 17665 + "setuptools" 17666 + ], 17667 + "xstatic-pygments": [ 17668 + "setuptools" 17669 + ], 17670 + "xtensor-python": [ 17671 + "setuptools" 17672 + ], 17673 + "xvfbwrapper": [ 17674 + "setuptools" 17675 + ], 17676 + "xxh": [ 17677 + "setuptools" 17678 + ], 17679 + "xxhash": [ 17680 + "setuptools", 17681 + "setuptools-scm" 17682 + ], 17683 + "yabadaba": [ 17684 + "setuptools" 17685 + ], 17686 + "yacs": [ 17687 + "setuptools" 17688 + ], 17689 + "yahooweather": [ 17690 + "setuptools" 17691 + ], 17692 + "yalesmartalarmclient": [ 17693 + "setuptools" 17694 + ], 17695 + "yalexs": [ 17696 + "setuptools" 17697 + ], 17698 + "yalexs-ble": [ 17699 + "poetry-core", 17700 + "setuptools" 17701 + ], 17702 + "yamale": [ 17703 + "setuptools" 17704 + ], 17705 + "yamlfix": [ 17706 + "setuptools" 17707 + ], 17708 + "yamllint": [ 17709 + "setuptools" 17710 + ], 17711 + "yamlloader": [ 17712 + "setuptools" 17713 + ], 17714 + "yamlordereddictloader": [ 17715 + "setuptools" 17716 + ], 17717 + "yanc": [ 17718 + "setuptools" 17719 + ], 17720 + "yangson": [ 17721 + "setuptools", 17722 + "setuptools-scm" 17723 + ], 17724 + "yapf": [ 17725 + "setuptools" 17726 + ], 17727 + "yappi": [ 17728 + "setuptools" 17729 + ], 17730 + "yapsy": [ 17731 + "setuptools" 17732 + ], 17733 + "yara-python": [ 17734 + "setuptools" 17735 + ], 17736 + "yarg": [ 17737 + "setuptools" 17738 + ], 17739 + "yarl": [ 17740 + "setuptools" 1786 17741 ], 1787 17742 "yaspin": [ 1788 - "poetry-core" 17743 + "poetry-core", 17744 + "setuptools" 17745 + ], 17746 + "yaswfp": [ 17747 + "setuptools" 17748 + ], 17749 + "yattag": [ 17750 + "setuptools" 17751 + ], 17752 + "ydiff": [ 17753 + "setuptools" 17754 + ], 17755 + "yeelight": [ 17756 + "setuptools" 17757 + ], 17758 + "yfinance": [ 17759 + "setuptools" 1789 17760 ], 1790 17761 "yoda": [ 1791 17762 "cython" 17763 + ], 17764 + "yolink-api": [ 17765 + "setuptools" 17766 + ], 17767 + "youless-api": [ 17768 + "setuptools" 17769 + ], 17770 + "youtube-dl": [ 17771 + "setuptools" 17772 + ], 17773 + "youtube-dl-light": [ 17774 + "setuptools" 17775 + ], 17776 + "youtube-search": [ 17777 + "setuptools" 17778 + ], 17779 + "youtube-search-python": [ 17780 + "setuptools" 17781 + ], 17782 + "youtube-transcript-api": [ 17783 + "setuptools" 17784 + ], 17785 + "yowsup": [ 17786 + "setuptools" 17787 + ], 17788 + "yoyo-migrations": [ 17789 + "setuptools" 17790 + ], 17791 + "yq": [ 17792 + "setuptools", 17793 + "setuptools-scm" 17794 + ], 17795 + "yt-dlp": [ 17796 + "setuptools" 17797 + ], 17798 + "yt-dlp-light": [ 17799 + "setuptools" 1792 17800 ], 1793 17801 "yte": [ 1794 - "poetry-core" 17802 + "poetry-core", 17803 + "setuptools" 17804 + ], 17805 + "ytmusicapi": [ 17806 + "setuptools" 17807 + ], 17808 + "yubico-client": [ 17809 + "setuptools" 17810 + ], 17811 + "yutto": [ 17812 + "poetry-core", 17813 + "setuptools" 17814 + ], 17815 + "z3": [ 17816 + "setuptools" 17817 + ], 17818 + "z3c-checkversions": [ 17819 + "setuptools" 17820 + ], 17821 + "zadnegoale": [ 17822 + "setuptools" 17823 + ], 17824 + "zarr": [ 17825 + "setuptools", 17826 + "setuptools-scm" 17827 + ], 17828 + "zc-buildout": [ 17829 + "setuptools" 17830 + ], 17831 + "zc-buildout221": [ 17832 + "setuptools" 17833 + ], 17834 + "zc-lockfile": [ 17835 + "setuptools" 17836 + ], 17837 + "zconfig": [ 17838 + "setuptools" 17839 + ], 17840 + "zcs": [ 17841 + "setuptools" 17842 + ], 17843 + "zdaemon": [ 17844 + "setuptools" 17845 + ], 17846 + "zeep": [ 17847 + "setuptools" 17848 + ], 17849 + "zeroc-ice": [ 17850 + "setuptools" 17851 + ], 17852 + "zeroconf": [ 17853 + "setuptools" 17854 + ], 17855 + "zerorpc": [ 17856 + "setuptools" 1795 17857 ], 1796 17858 "zeversolarlocal": [ 1797 17859 "flit-core", 1798 - "flitBuildHook" 17860 + "flitBuildHook", 17861 + "setuptools" 17862 + ], 17863 + "zfec": [ 17864 + "setuptools" 17865 + ], 17866 + "zha-quirks": [ 17867 + "setuptools" 17868 + ], 17869 + "zict": [ 17870 + "setuptools" 17871 + ], 17872 + "zigpy": [ 17873 + "setuptools" 17874 + ], 17875 + "zigpy-cc": [ 17876 + "setuptools" 17877 + ], 17878 + "zigpy-deconz": [ 17879 + "setuptools" 17880 + ], 17881 + "zigpy-xbee": [ 17882 + "setuptools" 17883 + ], 17884 + "zigpy-zigate": [ 17885 + "setuptools" 17886 + ], 17887 + "zigpy-znp": [ 17888 + "setuptools" 17889 + ], 17890 + "zimports": [ 17891 + "setuptools" 17892 + ], 17893 + "zipp": [ 17894 + "setuptools", 17895 + "setuptools-scm" 17896 + ], 17897 + "zipstream": [ 17898 + "setuptools" 17899 + ], 17900 + "zipstream-new": [ 17901 + "setuptools" 17902 + ], 17903 + "zipstream-ng": [ 17904 + "setuptools" 17905 + ], 17906 + "zm-py": [ 17907 + "setuptools" 17908 + ], 17909 + "zodb": [ 17910 + "setuptools" 17911 + ], 17912 + "zodbpickle": [ 17913 + "setuptools" 17914 + ], 17915 + "zope-broken": [ 17916 + "setuptools" 17917 + ], 17918 + "zope-cachedescriptors": [ 17919 + "setuptools" 17920 + ], 17921 + "zope-component": [ 17922 + "setuptools" 17923 + ], 17924 + "zope-configuration": [ 17925 + "setuptools" 17926 + ], 17927 + "zope-contenttype": [ 17928 + "setuptools" 17929 + ], 17930 + "zope-copy": [ 17931 + "setuptools" 17932 + ], 17933 + "zope-deferredimport": [ 17934 + "setuptools" 17935 + ], 17936 + "zope-deprecation": [ 17937 + "setuptools" 17938 + ], 17939 + "zope-dottedname": [ 17940 + "setuptools" 17941 + ], 17942 + "zope-event": [ 17943 + "setuptools" 17944 + ], 17945 + "zope-exceptions": [ 17946 + "setuptools" 17947 + ], 17948 + "zope-filerepresentation": [ 17949 + "setuptools" 17950 + ], 17951 + "zope-hookable": [ 17952 + "setuptools" 17953 + ], 17954 + "zope-i18nmessageid": [ 17955 + "setuptools" 17956 + ], 17957 + "zope-interface": [ 17958 + "setuptools" 17959 + ], 17960 + "zope-lifecycleevent": [ 17961 + "setuptools" 17962 + ], 17963 + "zope-location": [ 17964 + "setuptools" 17965 + ], 17966 + "zope-proxy": [ 17967 + "setuptools" 17968 + ], 17969 + "zope-schema": [ 17970 + "setuptools" 17971 + ], 17972 + "zope-size": [ 17973 + "setuptools" 17974 + ], 17975 + "zope-testbrowser": [ 17976 + "setuptools" 17977 + ], 17978 + "zope-testing": [ 17979 + "setuptools" 17980 + ], 17981 + "zope-testrunner": [ 17982 + "setuptools" 17983 + ], 17984 + "zopfli": [ 17985 + "setuptools", 17986 + "setuptools-scm" 17987 + ], 17988 + "zstandard": [ 17989 + "setuptools" 17990 + ], 17991 + "zstd": [ 17992 + "setuptools" 17993 + ], 17994 + "zulip": [ 17995 + "setuptools" 17996 + ], 17997 + "zwave-js-server-python": [ 17998 + "setuptools" 1799 17999 ], 1800 18000 "zwave-me-ws": [ 1801 - "poetry-core" 18001 + "poetry-core", 18002 + "setuptools" 18003 + ], 18004 + "zxcvbn": [ 18005 + "setuptools" 1802 18006 ] 1803 18007 }
+147 -49
pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix
··· 1 1 { pkgs ? import <nixpkgs> { } 2 2 , lib ? pkgs.lib 3 3 , stdenv ? pkgs.stdenv 4 + , poetryLib 4 5 }: 5 6 6 7 let ··· 37 38 ( 38 39 # Flit only works on Python3 39 40 if (attr == "flit-core" || attr == "flit" || attr == "hatchling") && !self.isPy3k then drv 41 + else if drv == null then null 42 + else if drv ? overridePythonAttrs == false then drv 40 43 else 41 44 drv.overridePythonAttrs ( 42 45 old: ··· 56 59 57 60 in 58 61 lib.composeManyExtensions [ 62 + # normalize all the names 63 + (self: super: poetryLib.normalizePackageSet super) 59 64 60 65 # NixOps 61 66 (self: super: ··· 80 85 systems) 81 86 buildSystems) 82 87 83 - # Build systems with conditionals 84 - (self: super: { 85 - 86 - platformdirs = 87 - if lib.versionAtLeast super.platformdirs.version "2.5.2" 88 - then addBuildSystem { inherit self; drv = super.platformdirs; attr = "hatchling"; extraAttrs = [ "hatch-vcs" ]; } 89 - else super.platformdirs; 90 - 91 - }) 92 - 93 88 # Build fixes 94 89 (self: super: 95 90 let 96 91 inherit (self.python) stdenv; 97 92 inherit (pkgs.buildPackages) pkg-config; 98 - inherit (pkgs) buildPackages; 99 93 pyBuildPackages = self.python.pythonForBuild.pkgs; 100 94 101 95 selectQt5 = version: ··· 108 102 109 103 { 110 104 automat = super.automat.overridePythonAttrs ( 111 - old: rec { 105 + old: { 112 106 propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.m2r ]; 113 107 } 114 108 ); ··· 152 146 ); 153 147 154 148 argcomplete = super.argcomplete.overridePythonAttrs ( 155 - old: rec { 149 + old: { 156 150 buildInputs = (old.buildInputs or [ ]) ++ [ self.importlib-metadata ]; 157 151 } 158 152 ); ··· 164 158 ); 165 159 166 160 astroid = super.astroid.overridePythonAttrs ( 167 - old: rec { 161 + old: { 168 162 buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ]; 169 163 } 170 164 ); ··· 193 187 dontUseCmakeConfigure = true; 194 188 } 195 189 ); 196 - 197 - bcrypt = super.bcrypt.overridePythonAttrs ( 198 - old: { 199 - buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libffi ]; 200 - } 201 - ); 202 - 190 + bcrypt = 191 + let 192 + getCargoHash = version: { 193 + "4.0.0" = "sha256-HvfRLyUhlXVuvxWrtSDKx3rMKJbjvuiMcDY6g+pYFS0="; 194 + }.${version} or ( 195 + lib.warn "Unknown bcrypt version: '${version}'. Please update getCargoHash." lib.fakeHash 196 + ); 197 + sha256 = getCargoHash super.bcrypt.version; 198 + in 199 + super.bcrypt.overridePythonAttrs ( 200 + old: { 201 + buildInputs = (old.buildInputs or [ ]) 202 + ++ [ pkgs.libffi ] 203 + ++ lib.optionals (lib.versionAtLeast old.version "4" && stdenv.isDarwin) 204 + [ pkgs.darwin.apple_sdk.frameworks.Security pkgs.libiconv ]; 205 + nativeBuildInputs = with pkgs; 206 + (old.nativeBuildInputs or [ ]) 207 + ++ lib.optionals (lib.versionAtLeast old.version "4") 208 + (with pkgs.rustPlatform; [ rust.rustc rust.cargo cargoSetupHook self.setuptools-rust ]); 209 + } // lib.optionalAttrs (lib.versionAtLeast old.version "4") rec { 210 + cargoDeps = 211 + pkgs.rustPlatform.fetchCargoTarball 212 + { 213 + src = old.src; 214 + sourceRoot = "${old.pname}-${old.version}/src/_bcrypt"; 215 + name = "${old.pname}-${old.version}"; 216 + sha256 = getCargoHash old.version; 217 + }; 218 + cargoRoot = "src/_bcrypt"; 219 + } 220 + ); 203 221 bjoern = super.bjoern.overridePythonAttrs ( 204 222 old: { 205 223 buildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.libev ]; ··· 276 294 ) 277 295 ); 278 296 297 + contourpy = super.contourpy.overridePythonAttrs ( 298 + old: { 299 + buildInputs = (old.buildInputs or [ ]) ++ [ self.pybind11 ]; 300 + } 301 + ); 302 + 279 303 cloudflare = super.cloudflare.overridePythonAttrs ( 280 304 old: { 281 305 postPatch = '' ··· 326 350 "36.0.2" = "1a0ni1a3dbv2dvh6gx2i54z8v5j9m6asqg97kkv7gqb1ivihsbp8"; 327 351 "37.0.2" = "sha256-qvrxvneoBXjP96AnUPyrtfmCnZo+IriHR5HbtWQ5Gk8="; 328 352 "37.0.4" = "sha256-f8r6QclTwkgK20CNe9i65ZOqvSUeDc4Emv6BFBhh1hI"; 353 + "38.0.1" = "sha256-o8l13fnfEUvUdDasq3LxSPArozRHKVsZfQg9DNR6M6Q="; 329 354 }.${version} or ( 330 355 lib.warn "Unknown cryptography version: '${version}'. Please update getCargoHash." lib.fakeHash 331 356 ); ··· 344 369 ++ lib.optional (!self.isPyPy) pyBuildPackages.cffi 345 370 ++ lib.optional (lib.versionAtLeast old.version "3.5") 346 371 (with pkgs.rustPlatform; [ cargoSetupHook rust.cargo rust.rustc ]); 347 - buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.openssl ] 372 + buildInputs = (old.buildInputs or [ ]) 373 + ++ [ (if lib.versionAtLeast old.version "37" then pkgs.openssl_3 else pkgs.openssl_1_1) ] 348 374 ++ lib.optionals stdenv.isDarwin [ pkgs.darwin.apple_sdk.frameworks.Security pkgs.libiconv ]; 349 375 propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ self.cffi ]; 350 376 } // lib.optionalAttrs (lib.versionAtLeast old.version "3.4" && lib.versionOlder old.version "3.5") { ··· 624 650 outputs = [ "out" "dev" ]; 625 651 }); 626 652 653 + gunicorn = super.gunicorn.overridePythonAttrs (old: { 654 + # actually needs setuptools as a runtime dependency 655 + propagatedBuildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ]; 656 + }); 657 + 627 658 h3 = super.h3.overridePythonAttrs ( 628 659 old: { 629 660 preBuild = (old.preBuild or "") + '' ··· 834 865 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.yajl ]; 835 866 }); 836 867 868 + jsonschema = 869 + if lib.versionAtLeast super.jsonschema.version "4.0.0" 870 + then 871 + super.jsonschema.overridePythonAttrs 872 + (old: { 873 + propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.importlib-resources ]; 874 + }) 875 + else super.jsonschema; 876 + 837 877 jupyter = super.jupyter.overridePythonAttrs ( 838 - old: rec { 878 + old: { 839 879 # jupyter is a meta-package. Everything relevant comes from the 840 880 # dependencies. It does however have a jupyter.py file that conflicts 841 881 # with jupyter-core so this meta solves this conflict. ··· 848 888 }); 849 889 850 890 jupyterlab-widgets = super.jupyterlab-widgets.overridePythonAttrs ( 851 - old: rec { 891 + old: { 852 892 buildInputs = (old.buildInputs or [ ]) ++ [ self.jupyter-packaging ]; 853 893 } 854 894 ); ··· 1089 1129 excludes = [ "pyproject.toml" ]; 1090 1130 }) 1091 1131 ]; 1092 - buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools-scm-git-archive ]; 1132 + buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools self.setuptools-scm self.setuptools-scm-git-archive ]; 1093 1133 } 1094 1134 )) else 1095 1135 super.molecule.overridePythonAttrs (old: { 1096 - buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools-scm-git-archive ]; 1136 + buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools self.setuptools-scm self.setuptools-scm-git-archive ]; 1097 1137 }); 1098 1138 1099 1139 mpi4py = super.mpi4py.overridePythonAttrs ( ··· 1153 1193 url = "https://github.com/python/mypy/commit/e7869f05751561958b946b562093397027f6d5fa.patch"; 1154 1194 sha256 = "sha256-waIZ+m3tfvYE4HJ8kL6rN/C4fMjvLEe9UoPbt9mHWIM="; 1155 1195 }) 1156 - ] ++ lib.optionals (lib.strings.versionAtLeast old.version "0.960") [ 1196 + ] ++ lib.optionals ((lib.strings.versionAtLeast old.version "0.960") && (lib.strings.versionOlder old.version "0.971")) [ 1157 1197 (pkgs.fetchpatch { 1158 1198 url = "https://github.com/python/mypy/commit/2004ae023b9d3628d9f09886cbbc20868aee8554.patch"; 1159 1199 sha256 = "sha256-y+tXvgyiECO5+66YLvaje8Bz5iPvfWNIBJcsnZ2nOdI="; ··· 1224 1264 } 1225 1265 ); 1226 1266 1267 + omegaconf = super.omegaconf.overridePythonAttrs ( 1268 + old: { 1269 + nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.jdk ]; 1270 + } 1271 + ); 1272 + 1227 1273 open3d = super.open3d.overridePythonAttrs (old: { 1228 1274 buildInputs = (old.buildInputs or [ ]) ++ (with pkgs; [ 1229 1275 udev ··· 1232 1278 autoPatchelfIgnoreMissingDeps = true; 1233 1279 }); 1234 1280 1235 - opencv-python = super.opencv-python.overridePythonAttrs ( 1281 + _opencv-python-override = 1236 1282 old: { 1237 1283 nativeBuildInputs = [ pkgs.cmake ] ++ old.nativeBuildInputs; 1238 1284 buildInputs = [ self.scikit-build ] ++ (old.buildInputs or [ ]); 1239 1285 dontUseCmakeConfigure = true; 1240 - } 1241 - ); 1286 + }; 1287 + 1288 + opencv-python = super.opencv-python.overridePythonAttrs self._opencv-python-override; 1289 + 1290 + opencv-python-headless = super.opencv-python.overridePythonAttrs self._opencv-python-override; 1242 1291 1243 1292 opencv-contrib-python = super.opencv-contrib-python.overridePythonAttrs ( 1244 1293 old: { ··· 1249 1298 ); 1250 1299 1251 1300 openexr = super.openexr.overridePythonAttrs ( 1252 - old: rec { 1301 + old: { 1253 1302 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.openexr pkgs.ilmbase ]; 1254 1303 NIX_CFLAGS_COMPILE = [ "-I${pkgs.openexr.dev}/include/OpenEXR" "-I${pkgs.ilmbase.dev}/include/OpenEXR" ]; 1304 + } 1305 + ); 1306 + 1307 + openvino = super.openvino.overridePythonAttrs ( 1308 + old: { 1309 + buildInputs = [ 1310 + pkgs.ocl-icd 1311 + pkgs.hwloc 1312 + pkgs.tbb 1313 + pkgs.numactl 1314 + pkgs.libxml2 1315 + ] ++ (old.buildInputs or [ ]); 1255 1316 } 1256 1317 ); 1257 1318 ··· 1261 1322 "3.6.7" = "sha256-sz2k9podPB6QSptkyOu7+BoVTrKhefizRtYU+MICPt4="; 1262 1323 "3.6.8" = "sha256-vpfceVtYkU09xszNIihY1xbqGWieqDquxwsAmDH8jd4="; 1263 1324 "3.7.2" = "sha256-2U37IhftNYjH7sV7Nh51YpR/WjmPmmzX/aGuHsFgwf4="; 1264 - }.${version} or null; 1325 + "3.7.9" = "sha256-QHzAhjHgm4XLxY2zUdnIsd/WWMI7dJLQQAvTXC+2asQ="; 1326 + "3.8.0" = "sha256-8k0DetamwLqkdcg8V/D2J5ja6IJSLi50CE+ZjFa7Hdc="; 1327 + }.${version} or ( 1328 + lib.warn "Unknown orjson version: '${version}'. Please update getCargoHash." lib.fakeHash 1329 + ); 1265 1330 in 1266 1331 super.orjson.overridePythonAttrs (old: { 1267 1332 cargoDeps = pkgs.rustPlatform.fetchCargoTarball { ··· 1318 1383 }); 1319 1384 1320 1385 parsel = super.parsel.overridePythonAttrs ( 1321 - old: rec { 1386 + old: { 1322 1387 nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.pytest-runner ]; 1323 1388 } 1324 1389 ); ··· 1351 1416 ); 1352 1417 1353 1418 pillow = super.pillow.overridePythonAttrs ( 1354 - old: { 1419 + old: 1420 + let 1421 + preConfigure = (old.preConfigure or "") + pkgs.python3.pkgs.pillow.preConfigure; 1422 + in 1423 + { 1355 1424 nativeBuildInputs = (old.nativeBuildInputs or [ ]) 1356 1425 ++ [ pkg-config self.pytest-runner ]; 1357 1426 buildInputs = with pkgs; (old.buildInputs or [ ]) 1358 1427 ++ [ freetype libjpeg zlib libtiff libwebp tcl lcms2 ] 1359 1428 ++ lib.optionals (lib.versionAtLeast old.version "7.1.0") [ xorg.libxcb ] 1360 1429 ++ lib.optionals (self.isPyPy) [ tk xorg.libX11 ]; 1430 + preConfigure = lib.optional (old.format != "wheel") preConfigure; 1361 1431 } 1362 1432 ); 1363 1433 1364 - poetry-core = super.poetry-core.overridePythonAttrs (old: { 1365 - # "Vendor" dependencies (for build-system support) 1366 - postPatch = '' 1367 - echo "import sys" >> poetry/__init__.py 1368 - for path in $propagatedBuildInputs; do 1369 - echo "sys.path.insert(0, \"$path\")" >> poetry/__init__.py 1370 - done 1371 - ''; 1434 + poetry-core = super.poetry-core.overridePythonAttrs (old: 1435 + let 1436 + initFile = 1437 + if lib.versionOlder super.poetry-core.version "1.1" 1438 + then "poetry/__init__.py" 1439 + else "./src/poetry/core/__init__.py"; 1440 + in 1441 + { 1442 + # "Vendor" dependencies (for build-system support) 1443 + postPatch = '' 1444 + find . 1372 1445 1373 - # Propagating dependencies leads to issues downstream 1374 - # We've already patched poetry to prefer "vendored" dependencies 1375 - postFixup = '' 1376 - rm $out/nix-support/propagated-build-inputs 1377 - ''; 1446 + echo "import sys" >> ${initFile} 1447 + for path in $propagatedBuildInputs; do 1448 + echo "sys.path.insert(0, \"$path\")" >> ${initFile} 1449 + done 1450 + ''; 1451 + 1452 + # Propagating dependencies leads to issues downstream 1453 + # We've already patched poetry to prefer "vendored" dependencies 1454 + postFixup = '' 1455 + rm $out/nix-support/propagated-build-inputs 1456 + ''; 1457 + }); 1458 + 1459 + # Requires poetry which isn't available during bootstrap 1460 + poetry-plugin-export = super.poetry-plugin-export.overridePythonAttrs (old: { 1461 + dontUsePythonImportsCheck = true; 1462 + pipInstallFlags = [ 1463 + "--no-deps" 1464 + ]; 1378 1465 }); 1379 1466 1380 1467 portend = super.portend.overridePythonAttrs ( ··· 1666 1753 in 1667 1754 super.pyqt5.overridePythonAttrs ( 1668 1755 old: { 1756 + postPatch = '' 1757 + # Confirm license 1758 + sed -i s/"if tool == 'pep517':"/"if True:"/ project.py 1759 + ''; 1760 + 1669 1761 dontConfigure = true; 1670 1762 dontWrapQtApps = true; 1671 1763 nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ ··· 1840 1932 ); 1841 1933 1842 1934 rockset = super.rockset.overridePythonAttrs ( 1843 - old: rec { 1935 + old: { 1844 1936 postPatch = '' 1845 1937 cp ./setup_rockset.py ./setup.py 1846 1938 ''; ··· 1994 2086 ''; 1995 2087 }); 1996 2088 2089 + suds = super.suds.overridePythonAttrs (old: { 2090 + # Fix naming convention shenanigans. 2091 + # https://github.com/suds-community/suds/blob/a616d96b070ca119a532ff395d4a2a2ba42b257c/setup.py#L648 2092 + SUDS_PACKAGE = "suds"; 2093 + }); 2094 + 1997 2095 systemd-python = super.systemd-python.overridePythonAttrs (old: { 1998 2096 buildInputs = old.buildInputs ++ [ pkgs.systemd ]; 1999 2097 nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkg-config ]; ··· 2287 2385 # For some reason the toml dependency of tqdm declared here: 2288 2386 # https://github.com/tqdm/tqdm/blob/67130a23646ae672836b971e1086b6ae4c77d930/pyproject.toml#L2 2289 2387 # is not translated correctly to a nix dependency. 2290 - tqdm = super.tqdm.overrideAttrs ( 2388 + tqdm = super.tqdm.overridePythonAttrs ( 2291 2389 old: { 2292 2390 buildInputs = [ super.toml ] ++ (old.buildInputs or [ ]); 2293 2391 }
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/pep425.nix
··· 99 99 filtered = builtins.filter filterWheel filesWithoutSources; 100 100 choose = files: 101 101 let 102 - osxMatches = [ "12_0" "11_0" "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ]; 102 + osxMatches = [ "12_0" "11_0" "10_15" "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ]; 103 103 linuxMatches = [ "manylinux1_" "manylinux2010_" "manylinux2014_" "manylinux_" "any" ]; 104 104 chooseLinux = x: lib.take 1 (findBestMatches linuxMatches x); 105 105 chooseOSX = x: lib.take 1 (findBestMatches osxMatches x);
+8 -6
pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix
··· 18 18 19 19 # "Vendor" dependencies (for build-system support) 20 20 postPatch = '' 21 - echo "import sys" >> poetry/__init__.py 21 + # Figure out the location of poetry.core 22 + # As poetry.core is using the same root import name as the poetry package and the python module system wont look for the root 23 + # in the separate second location we need to link poetry.core to poetry 24 + POETRY_CORE=$(python -c 'import poetry.core; import os.path; print(os.path.dirname(poetry.core.__file__))') 25 + 26 + echo "import sys" >> src/poetry/__init__.py 22 27 for path in $propagatedBuildInputs; do 23 - echo "sys.path.insert(0, \"$path\")" >> poetry/__init__.py 28 + echo "sys.path.insert(0, \"$path\")" >> src/poetry/__init__.py 24 29 done 25 30 ''; 26 31 27 32 postInstall = '' 28 - # Figure out the location of poetry.core 29 - # As poetry.core is using the same root import name as the poetry package and the python module system wont look for the root 30 - # in the separate second location we need to link poetry.core to poetry 31 - ln -s $(python -c 'import poetry.core; import os.path; print(os.path.dirname(poetry.core.__file__))') $out/${python.sitePackages}/poetry/core 33 + ln -s $POETRY_CORE $out/${python.sitePackages}/poetry/core 32 34 33 35 mkdir -p "$out/share/bash-completion/completions" 34 36 "$out/bin/poetry" completions bash > "$out/share/bash-completion/completions/poetry"
+835 -444
pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock
··· 1 - [[package]] 2 - name = "atomicwrites" 3 - version = "1.4.0" 4 - description = "Atomic file writes." 5 - category = "dev" 6 - optional = false 7 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 8 - 9 1 [[package]] 10 2 name = "attrs" 11 - version = "21.4.0" 3 + version = "22.1.0" 12 4 description = "Classes Without Boilerplate" 13 - category = "dev" 5 + category = "main" 14 6 optional = false 15 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 7 + python-versions = ">=3.5" 16 8 17 9 [package.extras] 18 - 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"] 19 - docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] 20 - tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] 21 - tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"] 10 + 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"] 11 + docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] 12 + tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] 13 + tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] 22 14 23 15 [[package]] 24 - name = "cachecontrol" 25 - version = "0.12.6" 26 - description = "httplib2 caching for requests" 16 + name = "backports.cached-property" 17 + version = "1.0.2" 18 + description = "cached_property() - computed once per instance, cached as attribute" 27 19 category = "main" 28 20 optional = false 29 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 30 - 31 - [package.dependencies] 32 - lockfile = {version = ">=0.9", optional = true, markers = "extra == \"filecache\""} 33 - msgpack = ">=0.5.2" 34 - requests = "*" 35 - 36 - [package.extras] 37 - filecache = ["lockfile (>=0.9)"] 38 - redis = ["redis (>=2.10.5)"] 21 + python-versions = ">=3.6.0" 39 22 40 23 [[package]] 41 - name = "cachecontrol" 24 + name = "CacheControl" 42 25 version = "0.12.11" 43 26 description = "httplib2 caching for requests" 44 27 category = "main" ··· 63 46 python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 64 47 65 48 [package.extras] 66 - redis = ["redis (>=3.3.6,<4.0.0)"] 67 49 memcached = ["python-memcached (>=1.59,<2.0)"] 68 50 msgpack = ["msgpack-python (>=0.5,<0.6)"] 51 + redis = ["redis (>=3.3.6,<4.0.0)"] 69 52 70 53 [[package]] 71 54 name = "certifi" 72 - version = "2021.10.8" 55 + version = "2022.9.24" 73 56 description = "Python package for providing Mozilla's CA Bundle." 74 57 category = "main" 75 58 optional = false 76 - python-versions = "*" 59 + python-versions = ">=3.6" 77 60 78 61 [[package]] 79 62 name = "cffi" ··· 95 78 python-versions = ">=3.6.1" 96 79 97 80 [[package]] 98 - name = "chardet" 99 - version = "4.0.0" 100 - description = "Universal encoding detector for Python 2 and 3" 81 + name = "charset-normalizer" 82 + version = "2.1.1" 83 + description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." 101 84 category = "main" 102 85 optional = false 103 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 86 + python-versions = ">=3.6.0" 87 + 88 + [package.extras] 89 + unicode_backport = ["unicodedata2"] 104 90 105 91 [[package]] 106 92 name = "cleo" 107 - version = "0.8.1" 93 + version = "1.0.0a5" 108 94 description = "Cleo allows you to create beautiful and testable command-line interfaces." 109 95 category = "main" 110 96 optional = false 111 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 112 - 113 - [package.dependencies] 114 - clikit = ">=0.6.0,<0.7.0" 115 - 116 - [[package]] 117 - name = "clikit" 118 - version = "0.6.2" 119 - description = "CliKit is a group of utilities to build beautiful and testable command line interfaces." 120 - category = "main" 121 - optional = false 122 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 97 + python-versions = ">=3.7,<4.0" 123 98 124 99 [package.dependencies] 125 - crashtest = {version = ">=0.3.0,<0.4.0", markers = "python_version >= \"3.6\" and python_version < \"4.0\""} 126 - pastel = ">=0.2.0,<0.3.0" 127 - pylev = ">=1.3,<2.0" 128 - typing-extensions = {version = ">=3.6,<4.0", markers = "python_version >= \"3.5\" and python_full_version < \"3.5.4\""} 100 + crashtest = ">=0.3.1,<0.4.0" 101 + pylev = ">=1.3.0,<2.0.0" 129 102 130 103 [[package]] 131 104 name = "colorama" ··· 137 110 138 111 [[package]] 139 112 name = "coverage" 140 - version = "5.5" 113 + version = "6.5.0" 141 114 description = "Code coverage measurement for Python" 142 115 category = "dev" 143 116 optional = false 144 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" 117 + python-versions = ">=3.7" 118 + 119 + [package.dependencies] 120 + tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} 145 121 146 122 [package.extras] 147 - toml = ["toml"] 123 + toml = ["tomli"] 148 124 149 125 [[package]] 150 126 name = "crashtest" ··· 156 132 157 133 [[package]] 158 134 name = "cryptography" 159 - version = "3.2.1" 135 + version = "38.0.1" 160 136 description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." 161 137 category = "main" 162 138 optional = false 163 - python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" 139 + python-versions = ">=3.6" 164 140 165 141 [package.dependencies] 166 - cffi = ">=1.8,<1.11.3 || >1.11.3" 167 - six = ">=1.4.1" 142 + cffi = ">=1.12" 168 143 169 144 [package.extras] 170 145 docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] 171 - docstest = ["doc8", "pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] 146 + docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] 172 147 pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] 148 + sdist = ["setuptools-rust (>=0.11.4)"] 173 149 ssh = ["bcrypt (>=3.1.5)"] 174 - test = ["pytest (>=3.6.0,!=3.9.0,!=3.9.1,!=3.9.2)", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] 150 + test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"] 175 151 176 152 [[package]] 177 - name = "cryptography" 178 - version = "37.0.4" 179 - description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." 180 - category = "main" 153 + name = "deepdiff" 154 + version = "5.8.1" 155 + description = "Deep Difference and Search of any Python object/data." 156 + category = "dev" 181 157 optional = false 182 158 python-versions = ">=3.6" 183 159 184 160 [package.dependencies] 185 - cffi = ">=1.12" 161 + ordered-set = ">=4.1.0,<4.2.0" 186 162 187 163 [package.extras] 188 - docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] 189 - docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] 190 - pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] 191 - sdist = ["setuptools_rust (>=0.11.4)"] 192 - ssh = ["bcrypt (>=3.1.5)"] 193 - test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] 164 + cli = ["clevercsv (==0.7.1)", "click (==8.0.3)", "pyyaml (==5.4.1)", "toml (==0.10.2)"] 194 165 195 166 [[package]] 196 167 name = "distlib" 197 - version = "0.3.4" 168 + version = "0.3.6" 198 169 description = "Distribution utilities" 199 170 category = "main" 200 171 optional = false 201 172 python-versions = "*" 202 173 203 174 [[package]] 175 + name = "dulwich" 176 + version = "0.20.46" 177 + description = "Python Git Library" 178 + category = "main" 179 + optional = false 180 + python-versions = ">=3.6" 181 + 182 + [package.dependencies] 183 + urllib3 = ">=1.25" 184 + 185 + [package.extras] 186 + fastimport = ["fastimport"] 187 + https = ["urllib3 (>=1.24.1)"] 188 + paramiko = ["paramiko"] 189 + pgp = ["gpg"] 190 + 191 + [[package]] 192 + name = "execnet" 193 + version = "1.9.0" 194 + description = "execnet: rapid multi-Python deployment" 195 + category = "dev" 196 + optional = false 197 + python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 198 + 199 + [package.extras] 200 + testing = ["pre-commit"] 201 + 202 + [[package]] 204 203 name = "filelock" 205 - version = "3.2.1" 204 + version = "3.8.0" 206 205 description = "A platform independent file lock." 207 206 category = "main" 208 207 optional = false 209 - python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" 208 + python-versions = ">=3.7" 210 209 211 210 [package.extras] 212 - docs = ["furo (>=2021.8.17b43)", "sphinx (>=4.1)", "sphinx-autodoc-typehints (>=1.12)"] 213 - testing = ["coverage (>=4)", "pytest (>=4)", "pytest-cov", "pytest-timeout (>=1.4.2)"] 211 + docs = ["furo (>=2022.6.21)", "sphinx (>=5.1.1)", "sphinx-autodoc-typehints (>=1.19.1)"] 212 + testing = ["covdefaults (>=2.2)", "coverage (>=6.4.2)", "pytest (>=7.1.2)", "pytest-cov (>=3)", "pytest-timeout (>=2.1)"] 213 + 214 + [[package]] 215 + name = "flatdict" 216 + version = "4.0.1" 217 + description = "Python module for interacting with nested dicts as a single level dict with delimited keys." 218 + category = "dev" 219 + optional = false 220 + python-versions = "*" 214 221 215 222 [[package]] 216 223 name = "html5lib" ··· 225 232 webencodings = "*" 226 233 227 234 [package.extras] 228 - all = ["genshi", "chardet (>=2.2)", "lxml"] 235 + all = ["chardet (>=2.2)", "genshi", "lxml"] 229 236 chardet = ["chardet (>=2.2)"] 230 237 genshi = ["genshi"] 231 238 lxml = ["lxml"] ··· 240 247 241 248 [[package]] 242 249 name = "identify" 243 - version = "2.4.4" 250 + version = "2.5.6" 244 251 description = "File identification library for Python" 245 252 category = "dev" 246 253 optional = false 247 - python-versions = ">=3.6.1" 254 + python-versions = ">=3.7" 248 255 249 256 [package.extras] 250 257 license = ["ukkonen"] 251 258 252 259 [[package]] 253 260 name = "idna" 254 - version = "2.10" 261 + version = "3.4" 255 262 description = "Internationalized Domain Names in Applications (IDNA)" 256 263 category = "main" 257 264 optional = false 258 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 265 + python-versions = ">=3.5" 259 266 260 267 [[package]] 261 268 name = "importlib-metadata" 262 - version = "1.7.0" 269 + version = "4.13.0" 263 270 description = "Read metadata from Python packages" 264 271 category = "main" 265 272 optional = false 266 - python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" 273 + python-versions = ">=3.7" 267 274 268 275 [package.dependencies] 276 + typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""} 269 277 zipp = ">=0.5" 270 278 271 279 [package.extras] 272 - docs = ["sphinx", "rst.linker"] 273 - testing = ["packaging", "pep517", "importlib-resources (>=1.3)"] 280 + docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)"] 281 + perf = ["ipython"] 282 + 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)"] 274 283 275 284 [[package]] 276 285 name = "importlib-resources" 277 - version = "3.2.1" 286 + version = "5.9.0" 278 287 description = "Read resources from Python packages" 279 288 category = "main" 280 289 optional = false 281 - python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" 290 + python-versions = ">=3.7" 282 291 283 292 [package.dependencies] 284 - zipp = {version = ">=0.4", markers = "python_version < \"3.8\""} 293 + zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} 285 294 286 295 [package.extras] 287 - docs = ["sphinx", "rst.linker", "jaraco.packaging"] 296 + docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] 297 + 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)"] 288 298 289 299 [[package]] 290 300 name = "iniconfig" ··· 295 305 python-versions = "*" 296 306 297 307 [[package]] 298 - name = "jeepney" 299 - version = "0.4.3" 300 - description = "Low-level, pure Python DBus protocol wrapper." 308 + name = "jaraco.classes" 309 + version = "3.2.3" 310 + description = "Utility functions for Python class constructs" 301 311 category = "main" 302 312 optional = false 303 - python-versions = ">=3.5" 313 + python-versions = ">=3.7" 314 + 315 + [package.dependencies] 316 + more-itertools = "*" 304 317 305 318 [package.extras] 306 - dev = ["testpath"] 319 + docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)"] 320 + 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)"] 307 321 308 322 [[package]] 309 323 name = "jeepney" 310 - version = "0.7.1" 324 + version = "0.8.0" 311 325 description = "Low-level, pure Python DBus protocol wrapper." 312 326 category = "main" 313 327 optional = false 314 - python-versions = ">=3.6" 328 + python-versions = ">=3.7" 315 329 316 330 [package.extras] 317 - test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio", "async-timeout"] 318 - trio = ["trio", "async-generator"] 331 + test = ["async-timeout", "pytest", "pytest-asyncio (>=0.17)", "pytest-trio", "testpath", "trio"] 332 + trio = ["async_generator", "trio"] 319 333 320 334 [[package]] 321 - name = "keyring" 322 - version = "20.0.1" 323 - description = "Store and access your passwords safely." 335 + name = "jsonschema" 336 + version = "4.16.0" 337 + description = "An implementation of JSON Schema validation for Python" 324 338 category = "main" 325 339 optional = false 326 - python-versions = ">=3.5" 340 + python-versions = ">=3.7" 327 341 328 342 [package.dependencies] 343 + attrs = ">=17.4.0" 329 344 importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} 330 - pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""} 331 - secretstorage = {version = "*", markers = "sys_platform == \"linux\""} 345 + importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} 346 + pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} 347 + pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" 348 + typing-extensions = {version = "*", markers = "python_version < \"3.8\""} 332 349 333 350 [package.extras] 334 - docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] 335 - testing = ["pytest (>=3.5,!=3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-black-multipy", "pytest-cov"] 351 + format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] 352 + format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] 336 353 337 354 [[package]] 338 355 name = "keyring" 339 - version = "22.3.0" 356 + version = "23.9.3" 340 357 description = "Store and access your passwords safely." 341 358 category = "main" 342 359 optional = false 343 - python-versions = ">=3.6" 360 + python-versions = ">=3.7" 344 361 345 362 [package.dependencies] 346 - importlib-metadata = {version = ">=1", markers = "python_version < \"3.8\""} 363 + importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} 364 + "jaraco.classes" = "*" 347 365 jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""} 348 366 pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""} 349 367 SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""} 350 368 351 369 [package.extras] 352 - docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] 353 - testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "pytest-black (>=0.3.7)", "pytest-mypy"] 370 + docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] 371 + 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)"] 354 372 355 373 [[package]] 356 374 name = "lockfile" ··· 362 380 363 381 [[package]] 364 382 name = "more-itertools" 365 - version = "8.13.0" 383 + version = "8.14.0" 366 384 description = "More routines for operating on iterables, beyond itertools" 367 - category = "dev" 385 + category = "main" 368 386 optional = false 369 387 python-versions = ">=3.5" 370 388 ··· 377 395 python-versions = "*" 378 396 379 397 [[package]] 380 - name = "nodeenv" 381 - version = "1.6.0" 382 - description = "Node.js virtual environment builder" 398 + name = "mypy" 399 + version = "0.982" 400 + description = "Optional static typing for Python" 401 + category = "dev" 402 + optional = false 403 + python-versions = ">=3.7" 404 + 405 + [package.dependencies] 406 + mypy-extensions = ">=0.4.3" 407 + tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} 408 + typed-ast = {version = ">=1.4.0,<2", markers = "python_version < \"3.8\""} 409 + typing-extensions = ">=3.10" 410 + 411 + [package.extras] 412 + dmypy = ["psutil (>=4.0)"] 413 + python2 = ["typed-ast (>=1.4.0,<2)"] 414 + reports = ["lxml"] 415 + 416 + [[package]] 417 + name = "mypy-extensions" 418 + version = "0.4.3" 419 + description = "Experimental type system extensions for programs checked with the mypy typechecker." 383 420 category = "dev" 384 421 optional = false 385 422 python-versions = "*" 386 423 387 424 [[package]] 388 - name = "packaging" 389 - version = "20.9" 390 - description = "Core utilities for Python packages" 391 - category = "main" 425 + name = "nodeenv" 426 + version = "1.7.0" 427 + description = "Node.js virtual environment builder" 428 + category = "dev" 392 429 optional = false 393 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 430 + python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" 394 431 395 432 [package.dependencies] 396 - pyparsing = ">=2.0.2" 433 + setuptools = "*" 397 434 398 435 [[package]] 399 - name = "pastel" 400 - version = "0.2.1" 401 - description = "Bring colors to your terminal." 402 - category = "main" 436 + name = "ordered-set" 437 + version = "4.1.0" 438 + description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" 439 + category = "dev" 403 440 optional = false 404 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 441 + python-versions = ">=3.7" 442 + 443 + [package.extras] 444 + dev = ["black", "mypy", "pytest"] 405 445 406 446 [[package]] 407 - name = "pathlib2" 408 - version = "2.3.7.post1" 409 - description = "Object-oriented filesystem paths" 447 + name = "packaging" 448 + version = "21.3" 449 + description = "Core utilities for Python packages" 410 450 category = "main" 411 451 optional = false 412 - python-versions = "*" 452 + python-versions = ">=3.6" 413 453 414 454 [package.dependencies] 415 - six = "*" 455 + pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" 416 456 417 457 [[package]] 418 458 name = "pexpect" ··· 427 467 428 468 [[package]] 429 469 name = "pkginfo" 430 - version = "1.8.2" 470 + version = "1.8.3" 431 471 description = "Query metadatdata from sdists / bdists / installed packages." 432 472 category = "main" 433 473 optional = false 434 - python-versions = "*" 474 + python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" 435 475 436 476 [package.extras] 437 477 testing = ["coverage", "nose"] 478 + 479 + [[package]] 480 + name = "pkgutil_resolve_name" 481 + version = "1.3.10" 482 + description = "Resolve a name to an object." 483 + category = "main" 484 + optional = false 485 + python-versions = ">=3.6" 438 486 439 487 [[package]] 440 488 name = "platformdirs" 441 - version = "2.0.2" 489 + version = "2.5.2" 442 490 description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." 443 491 category = "main" 444 492 optional = false 445 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 493 + python-versions = ">=3.7" 494 + 495 + [package.extras] 496 + docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] 497 + test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] 446 498 447 499 [[package]] 448 500 name = "pluggy" 449 - version = "0.13.1" 501 + version = "1.0.0" 450 502 description = "plugin and hook calling mechanisms for python" 451 503 category = "dev" 452 504 optional = false 453 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 505 + python-versions = ">=3.6" 454 506 455 507 [package.dependencies] 456 508 importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} 457 509 458 510 [package.extras] 459 511 dev = ["pre-commit", "tox"] 512 + testing = ["pytest", "pytest-benchmark"] 460 513 461 514 [[package]] 462 515 name = "poetry-core" 463 - version = "1.0.8" 516 + version = "1.2.0" 464 517 description = "Poetry PEP 517 Build Backend" 465 518 category = "main" 466 519 optional = false 467 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 520 + python-versions = ">=3.7,<4.0" 468 521 469 522 [package.dependencies] 470 - 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\""} 523 + importlib-metadata = {version = ">=1.7.0", markers = "python_version < \"3.8\""} 524 + 525 + [[package]] 526 + name = "poetry-plugin-export" 527 + version = "1.1.1" 528 + description = "Poetry plugin to export the dependencies to various formats" 529 + category = "main" 530 + optional = false 531 + python-versions = ">=3.7,<4.0" 532 + 533 + [package.dependencies] 534 + poetry = ">=1.2.0,<2.0.0" 535 + poetry-core = ">=1.1.0,<2.0.0" 471 536 472 537 [[package]] 473 538 name = "pre-commit" 474 - version = "2.17.0" 539 + version = "2.20.0" 475 540 description = "A framework for managing and maintaining multi-language pre-commit hooks." 476 541 category = "dev" 477 542 optional = false 478 - python-versions = ">=3.6.1" 543 + python-versions = ">=3.7" 479 544 480 545 [package.dependencies] 481 546 cfgv = ">=2.0.0" 482 547 identify = ">=1.0.0" 483 548 importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} 484 - importlib-resources = {version = "<5.3", markers = "python_version < \"3.7\""} 485 549 nodeenv = ">=0.11.1" 486 550 pyyaml = ">=5.1" 487 551 toml = "*" 488 552 virtualenv = ">=20.0.8" 489 553 490 554 [[package]] 555 + name = "psutil" 556 + version = "5.9.2" 557 + description = "Cross-platform lib for process and system monitoring in Python." 558 + category = "dev" 559 + optional = false 560 + python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 561 + 562 + [package.extras] 563 + test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] 564 + 565 + [[package]] 491 566 name = "ptyprocess" 492 567 version = "0.7.0" 493 568 description = "Run a subprocess in a pseudo terminal" ··· 521 596 522 597 [[package]] 523 598 name = "pyparsing" 524 - version = "2.4.7" 525 - description = "Python parsing module" 599 + version = "3.0.9" 600 + description = "pyparsing module - Classes and methods to define and execute parsing grammars" 526 601 category = "main" 527 602 optional = false 528 - python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" 603 + python-versions = ">=3.6.8" 604 + 605 + [package.extras] 606 + diagrams = ["jinja2", "railroad-diagrams"] 529 607 530 608 [[package]] 531 - name = "pytest" 532 - version = "5.4.3" 533 - description = "pytest: simple powerful testing with Python" 534 - category = "dev" 609 + name = "pyrsistent" 610 + version = "0.18.1" 611 + description = "Persistent/Functional/Immutable data structures" 612 + category = "main" 535 613 optional = false 536 - python-versions = ">=3.5" 537 - 538 - [package.dependencies] 539 - atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} 540 - attrs = ">=17.4.0" 541 - colorama = {version = "*", markers = "sys_platform == \"win32\""} 542 - importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} 543 - more-itertools = ">=4.0.0" 544 - packaging = "*" 545 - pathlib2 = {version = ">=2.2.0", markers = "python_version < \"3.6\""} 546 - pluggy = ">=0.12,<1.0" 547 - py = ">=1.5.0" 548 - wcwidth = "*" 549 - 550 - [package.extras] 551 - checkqa-mypy = ["mypy (==v0.761)"] 552 - testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] 614 + python-versions = ">=3.7" 553 615 554 616 [[package]] 555 617 name = "pytest" 556 - version = "6.2.5" 618 + version = "7.1.3" 557 619 description = "pytest: simple powerful testing with Python" 558 620 category = "dev" 559 621 optional = false 560 - python-versions = ">=3.6" 622 + python-versions = ">=3.7" 561 623 562 624 [package.dependencies] 563 - atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} 564 625 attrs = ">=19.2.0" 565 626 colorama = {version = "*", markers = "sys_platform == \"win32\""} 566 627 importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} ··· 568 629 packaging = "*" 569 630 pluggy = ">=0.12,<2.0" 570 631 py = ">=1.8.2" 571 - toml = "*" 632 + tomli = ">=1.0.0" 572 633 573 634 [package.extras] 574 - testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] 635 + testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] 575 636 576 637 [[package]] 577 638 name = "pytest-cov" 578 - version = "2.12.1" 639 + version = "3.0.0" 579 640 description = "Pytest plugin for measuring coverage." 580 641 category = "dev" 581 642 optional = false 582 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 643 + python-versions = ">=3.6" 583 644 584 645 [package.dependencies] 585 - coverage = ">=5.2.1" 646 + coverage = {version = ">=5.2.1", extras = ["toml"]} 586 647 pytest = ">=4.6" 587 - toml = "*" 588 648 589 649 [package.extras] 590 - testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"] 650 + testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] 651 + 652 + [[package]] 653 + name = "pytest-forked" 654 + version = "1.4.0" 655 + description = "run tests in isolated forked subprocesses" 656 + category = "dev" 657 + optional = false 658 + python-versions = ">=3.6" 659 + 660 + [package.dependencies] 661 + py = "*" 662 + pytest = ">=3.10" 591 663 592 664 [[package]] 593 665 name = "pytest-mock" 594 - version = "1.13.0" 595 - description = "Thin-wrapper around the mock package for easier use with py.test" 666 + version = "3.10.0" 667 + description = "Thin-wrapper around the mock package for easier use with pytest" 596 668 category = "dev" 597 669 optional = false 598 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" 670 + python-versions = ">=3.7" 599 671 600 672 [package.dependencies] 601 - pytest = ">=2.7" 673 + pytest = ">=5.0" 602 674 603 675 [package.extras] 604 - dev = ["pre-commit", "tox"] 676 + dev = ["pre-commit", "pytest-asyncio", "tox"] 677 + 678 + [[package]] 679 + name = "pytest-randomly" 680 + version = "3.12.0" 681 + description = "Pytest plugin to randomly order tests and control random.seed." 682 + category = "dev" 683 + optional = false 684 + python-versions = ">=3.7" 685 + 686 + [package.dependencies] 687 + importlib-metadata = {version = ">=3.6.0", markers = "python_version < \"3.10\""} 688 + pytest = "*" 605 689 606 690 [[package]] 607 691 name = "pytest-sugar" 608 - version = "0.9.4" 692 + version = "0.9.5" 609 693 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)." 610 694 category = "dev" 611 695 optional = false ··· 617 701 termcolor = ">=1.1.0" 618 702 619 703 [[package]] 704 + name = "pytest-xdist" 705 + version = "2.5.0" 706 + description = "pytest xdist plugin for distributed testing and loop-on-failing modes" 707 + category = "dev" 708 + optional = false 709 + python-versions = ">=3.6" 710 + 711 + [package.dependencies] 712 + execnet = ">=1.1" 713 + psutil = {version = ">=3.0", optional = true, markers = "extra == \"psutil\""} 714 + pytest = ">=6.2.0" 715 + pytest-forked = "*" 716 + 717 + [package.extras] 718 + psutil = ["psutil (>=3.0)"] 719 + setproctitle = ["setproctitle"] 720 + testing = ["filelock"] 721 + 722 + [[package]] 620 723 name = "pywin32-ctypes" 621 724 version = "0.2.0" 622 725 description = "" ··· 625 728 python-versions = "*" 626 729 627 730 [[package]] 628 - name = "pyyaml" 731 + name = "PyYAML" 629 732 version = "6.0" 630 733 description = "YAML parser and emitter for Python" 631 734 category = "dev" ··· 634 737 635 738 [[package]] 636 739 name = "requests" 637 - version = "2.25.1" 740 + version = "2.28.1" 638 741 description = "Python HTTP for Humans." 639 742 category = "main" 640 743 optional = false 641 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 744 + python-versions = ">=3.7, <4" 642 745 643 746 [package.dependencies] 644 747 certifi = ">=2017.4.17" 645 - chardet = ">=3.0.2,<5" 646 - idna = ">=2.5,<3" 748 + charset-normalizer = ">=2,<3" 749 + idna = ">=2.5,<4" 647 750 urllib3 = ">=1.21.1,<1.27" 648 751 649 752 [package.extras] 650 - security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"] 651 - socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] 753 + socks = ["PySocks (>=1.5.6,!=1.5.7)"] 754 + use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"] 652 755 653 756 [[package]] 654 757 name = "requests-toolbelt" ··· 662 765 requests = ">=2.0.1,<3.0.0" 663 766 664 767 [[package]] 665 - name = "secretstorage" 666 - version = "3.2.0" 768 + name = "SecretStorage" 769 + version = "3.3.3" 667 770 description = "Python bindings to FreeDesktop.org Secret Service API" 668 771 category = "main" 669 772 optional = false 670 - python-versions = ">=3.5" 773 + python-versions = ">=3.6" 671 774 672 775 [package.dependencies] 673 776 cryptography = ">=2.0" 674 - jeepney = ">=0.4.2" 777 + jeepney = ">=0.6" 675 778 676 779 [[package]] 677 - name = "secretstorage" 678 - version = "3.3.2" 679 - description = "Python bindings to FreeDesktop.org Secret Service API" 680 - category = "main" 780 + name = "setuptools" 781 + version = "65.4.1" 782 + description = "Easily download, build, install, upgrade, and uninstall Python packages" 783 + category = "dev" 681 784 optional = false 682 - python-versions = ">=3.6" 785 + python-versions = ">=3.7" 683 786 684 - [package.dependencies] 685 - cryptography = ">=2.0" 686 - jeepney = ">=0.6" 787 + [package.extras] 788 + 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"] 789 + 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"] 790 + 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"] 687 791 688 792 [[package]] 689 793 name = "shellingham" 690 - version = "1.4.0" 794 + version = "1.5.0" 691 795 description = "Tool to Detect Surrounding Shell" 692 796 category = "main" 693 797 optional = false 694 - python-versions = "!=3.0,!=3.1,!=3.2,!=3.3,>=2.6" 798 + python-versions = ">=3.4" 695 799 696 800 [[package]] 697 801 name = "six" ··· 703 807 704 808 [[package]] 705 809 name = "termcolor" 706 - version = "1.1.0" 707 - description = "ANSII Color formatting for output in terminal." 810 + version = "2.0.1" 811 + description = "ANSI color formatting for output in terminal" 708 812 category = "dev" 709 813 optional = false 710 - python-versions = "*" 814 + python-versions = ">=3.7" 815 + 816 + [package.extras] 817 + tests = ["pytest", "pytest-cov"] 711 818 712 819 [[package]] 713 820 name = "toml" ··· 718 825 python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" 719 826 720 827 [[package]] 828 + name = "tomli" 829 + version = "2.0.1" 830 + description = "A lil' TOML parser" 831 + category = "dev" 832 + optional = false 833 + python-versions = ">=3.7" 834 + 835 + [[package]] 721 836 name = "tomlkit" 722 - version = "0.7.2" 837 + version = "0.11.5" 723 838 description = "Style preserving TOML library" 724 839 category = "main" 725 840 optional = false 726 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" 841 + python-versions = ">=3.6,<4.0" 727 842 728 843 [[package]] 729 844 name = "tox" 730 - version = "3.25.1" 845 + version = "3.26.0" 731 846 description = "tox is a generic virtualenv management and test command line tool" 732 847 category = "dev" 733 848 optional = false ··· 741 856 pluggy = ">=0.12.0" 742 857 py = ">=1.4.17" 743 858 six = ">=1.14.0" 744 - toml = ">=0.9.4" 859 + tomli = {version = ">=2.0.1", markers = "python_version >= \"3.7\" and python_version < \"3.11\""} 745 860 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" 746 861 747 862 [package.extras] 748 863 docs = ["pygments-github-lexers (>=0.0.5)", "sphinx (>=2.0.0)", "sphinxcontrib-autoprogram (>=0.1.5)", "towncrier (>=18.5.0)"] 749 - 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)"] 864 + 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)"] 865 + 866 + [[package]] 867 + name = "typed-ast" 868 + version = "1.5.4" 869 + description = "a fork of Python 2 and 3 ast modules with type comment support" 870 + category = "dev" 871 + optional = false 872 + python-versions = ">=3.6" 873 + 874 + [[package]] 875 + name = "types-html5lib" 876 + version = "1.1.11" 877 + description = "Typing stubs for html5lib" 878 + category = "dev" 879 + optional = false 880 + python-versions = "*" 881 + 882 + [[package]] 883 + name = "types-jsonschema" 884 + version = "4.16.1" 885 + description = "Typing stubs for jsonschema" 886 + category = "dev" 887 + optional = false 888 + python-versions = "*" 889 + 890 + [[package]] 891 + name = "types-requests" 892 + version = "2.28.11.2" 893 + description = "Typing stubs for requests" 894 + category = "dev" 895 + optional = false 896 + python-versions = "*" 897 + 898 + [package.dependencies] 899 + types-urllib3 = "<1.27" 900 + 901 + [[package]] 902 + name = "types-urllib3" 903 + version = "1.26.25" 904 + description = "Typing stubs for urllib3" 905 + category = "dev" 906 + optional = false 907 + python-versions = "*" 750 908 751 909 [[package]] 752 910 name = "typing-extensions" 753 - version = "3.10.0.2" 754 - description = "Backported and Experimental Type Hints for Python 3.5+" 911 + version = "4.4.0" 912 + description = "Backported and Experimental Type Hints for Python 3.7+" 755 913 category = "main" 756 914 optional = false 757 - python-versions = "*" 915 + python-versions = ">=3.7" 758 916 759 917 [[package]] 760 918 name = "urllib3" 761 - version = "1.26.9" 919 + version = "1.26.12" 762 920 description = "HTTP library with thread-safe connection pooling, file post, and more." 763 921 category = "main" 764 922 optional = false 765 - python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" 923 + python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" 766 924 767 925 [package.extras] 768 - brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"] 769 - secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] 926 + brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] 927 + secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] 770 928 socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] 771 929 772 930 [[package]] 773 931 name = "virtualenv" 774 - version = "20.15.1" 932 + version = "20.16.5" 775 933 description = "Virtual Python Environment builder" 776 934 category = "main" 777 935 optional = false 778 - python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" 936 + python-versions = ">=3.6" 779 937 780 938 [package.dependencies] 781 - distlib = ">=0.3.1,<1" 782 - filelock = ">=3.2,<4" 783 - importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} 784 - importlib-resources = {version = ">=1.0", markers = "python_version < \"3.7\""} 785 - platformdirs = ">=2,<3" 786 - six = ">=1.9.0,<2" 939 + distlib = ">=0.3.5,<1" 940 + filelock = ">=3.4.1,<4" 941 + importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.8\""} 942 + platformdirs = ">=2.4,<3" 787 943 788 944 [package.extras] 789 - docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"] 790 - 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)"] 945 + docs = ["proselint (>=0.13)", "sphinx (>=5.1.1)", "sphinx-argparse (>=0.3.1)", "sphinx-rtd-theme (>=1)", "towncrier (>=21.9)"] 946 + 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)"] 791 947 792 948 [[package]] 793 - name = "wcwidth" 794 - version = "0.2.5" 795 - description = "Measures the displayed width of unicode strings in a terminal" 796 - category = "dev" 949 + name = "webencodings" 950 + version = "0.5.1" 951 + description = "Character encoding aliases for legacy web content" 952 + category = "main" 797 953 optional = false 798 954 python-versions = "*" 799 955 800 956 [[package]] 801 - name = "webencodings" 802 - version = "0.5.1" 803 - description = "Character encoding aliases for legacy web content" 957 + name = "xattr" 958 + version = "0.9.9" 959 + description = "Python wrapper for extended filesystem attributes" 804 960 category = "main" 805 961 optional = false 806 962 python-versions = "*" 807 963 964 + [package.dependencies] 965 + cffi = ">=1.0" 966 + 808 967 [[package]] 809 968 name = "zipp" 810 - version = "1.2.0" 969 + version = "3.8.1" 811 970 description = "Backport of pathlib-compatible object wrapper for zip files" 812 971 category = "main" 813 972 optional = false 814 - python-versions = ">=2.7" 973 + python-versions = ">=3.7" 815 974 816 975 [package.extras] 817 - docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"] 818 - testing = ["pathlib2", "unittest2", "jaraco.itertools", "func-timeout"] 976 + docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] 977 + 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)"] 819 978 820 979 [metadata] 821 980 lock-version = "1.1" 822 - python-versions = "^3.5" 823 - content-hash = "9ef4eff67412cb5b3e575b88a4424e26f4f8a519ee503046ec435c9c10786d00" 981 + python-versions = "^3.7" 982 + content-hash = "a3480636766bb3c5c00e1ed48b6b70136726754001837ef7515c6b355fa35812" 824 983 825 984 [metadata.files] 826 - atomicwrites = [ 827 - {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, 828 - {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, 985 + attrs = [ 986 + {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"}, 987 + {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, 829 988 ] 830 - attrs = [ 831 - {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, 832 - {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, 989 + "backports.cached-property" = [ 990 + {file = "backports.cached-property-1.0.2.tar.gz", hash = "sha256:9306f9eed6ec55fd156ace6bc1094e2c86fae5fb2bf07b6a9c00745c656e75dd"}, 991 + {file = "backports.cached_property-1.0.2-py3-none-any.whl", hash = "sha256:baeb28e1cd619a3c9ab8941431fe34e8490861fb998c6c4590693d50171db0cc"}, 833 992 ] 834 - cachecontrol = [ 835 - {file = "CacheControl-0.12.6-py2.py3-none-any.whl", hash = "sha256:10d056fa27f8563a271b345207402a6dcce8efab7e5b377e270329c62471b10d"}, 836 - {file = "CacheControl-0.12.6.tar.gz", hash = "sha256:be9aa45477a134aee56c8fac518627e1154df063e85f67d4f83ce0ccc23688e8"}, 993 + CacheControl = [ 837 994 {file = "CacheControl-0.12.11-py2.py3-none-any.whl", hash = "sha256:2c75d6a8938cb1933c75c50184549ad42728a27e9f6b92fd677c3151aa72555b"}, 838 995 {file = "CacheControl-0.12.11.tar.gz", hash = "sha256:a5b9fcc986b184db101aa280b42ecdcdfc524892596f606858e0b7a8b4d9e144"}, 839 996 ] ··· 842 999 {file = "cachy-0.3.0.tar.gz", hash = "sha256:186581f4ceb42a0bbe040c407da73c14092379b1e4c0e327fdb72ae4a9b269b1"}, 843 1000 ] 844 1001 certifi = [ 845 - {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, 846 - {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, 1002 + {file = "certifi-2022.9.24-py3-none-any.whl", hash = "sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382"}, 1003 + {file = "certifi-2022.9.24.tar.gz", hash = "sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14"}, 847 1004 ] 848 1005 cffi = [ 849 1006 {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, ··· 915 1072 {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, 916 1073 {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, 917 1074 ] 918 - chardet = [ 919 - {file = "chardet-4.0.0-py2.py3-none-any.whl", hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5"}, 920 - {file = "chardet-4.0.0.tar.gz", hash = "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa"}, 1075 + charset-normalizer = [ 1076 + {file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"}, 1077 + {file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"}, 921 1078 ] 922 1079 cleo = [ 923 - {file = "cleo-0.8.1-py2.py3-none-any.whl", hash = "sha256:141cda6dc94a92343be626bb87a0b6c86ae291dfc732a57bf04310d4b4201753"}, 924 - {file = "cleo-0.8.1.tar.gz", hash = "sha256:3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f"}, 925 - ] 926 - clikit = [ 927 - {file = "clikit-0.6.2-py2.py3-none-any.whl", hash = "sha256:71268e074e68082306e23d7369a7b99f824a0ef926e55ba2665e911f7208489e"}, 928 - {file = "clikit-0.6.2.tar.gz", hash = "sha256:442ee5db9a14120635c5990bcdbfe7c03ada5898291f0c802f77be71569ded59"}, 1080 + {file = "cleo-1.0.0a5-py3-none-any.whl", hash = "sha256:ff53056589300976e960f75afb792dfbfc9c78dcbb5a448e207a17b643826360"}, 1081 + {file = "cleo-1.0.0a5.tar.gz", hash = "sha256:097c9d0e0332fd53cc89fc11eb0a6ba0309e6a3933c08f7b38558555486925d3"}, 929 1082 ] 930 1083 colorama = [ 931 1084 {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, 932 1085 {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, 933 1086 ] 934 1087 coverage = [ 935 - {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"}, 936 - {file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b"}, 937 - {file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669"}, 938 - {file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90"}, 939 - {file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c"}, 940 - {file = "coverage-5.5-cp27-cp27m-win32.whl", hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a"}, 941 - {file = "coverage-5.5-cp27-cp27m-win_amd64.whl", hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82"}, 942 - {file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905"}, 943 - {file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083"}, 944 - {file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5"}, 945 - {file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81"}, 946 - {file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6"}, 947 - {file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0"}, 948 - {file = "coverage-5.5-cp310-cp310-win_amd64.whl", hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae"}, 949 - {file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb"}, 950 - {file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160"}, 951 - {file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6"}, 952 - {file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701"}, 953 - {file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793"}, 954 - {file = "coverage-5.5-cp35-cp35m-win32.whl", hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e"}, 955 - {file = "coverage-5.5-cp35-cp35m-win_amd64.whl", hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3"}, 956 - {file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066"}, 957 - {file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a"}, 958 - {file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465"}, 959 - {file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb"}, 960 - {file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821"}, 961 - {file = "coverage-5.5-cp36-cp36m-win32.whl", hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45"}, 962 - {file = "coverage-5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184"}, 963 - {file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a"}, 964 - {file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53"}, 965 - {file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d"}, 966 - {file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638"}, 967 - {file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3"}, 968 - {file = "coverage-5.5-cp37-cp37m-win32.whl", hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a"}, 969 - {file = "coverage-5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a"}, 970 - {file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6"}, 971 - {file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2"}, 972 - {file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759"}, 973 - {file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873"}, 974 - {file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a"}, 975 - {file = "coverage-5.5-cp38-cp38-win32.whl", hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6"}, 976 - {file = "coverage-5.5-cp38-cp38-win_amd64.whl", hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502"}, 977 - {file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b"}, 978 - {file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529"}, 979 - {file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b"}, 980 - {file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff"}, 981 - {file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b"}, 982 - {file = "coverage-5.5-cp39-cp39-win32.whl", hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6"}, 983 - {file = "coverage-5.5-cp39-cp39-win_amd64.whl", hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03"}, 984 - {file = "coverage-5.5-pp36-none-any.whl", hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079"}, 985 - {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"}, 986 - {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"}, 1088 + {file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"}, 1089 + {file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"}, 1090 + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"}, 1091 + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"}, 1092 + {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"}, 1093 + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"}, 1094 + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"}, 1095 + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"}, 1096 + {file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"}, 1097 + {file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"}, 1098 + {file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"}, 1099 + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"}, 1100 + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"}, 1101 + {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"}, 1102 + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"}, 1103 + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"}, 1104 + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"}, 1105 + {file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"}, 1106 + {file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"}, 1107 + {file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"}, 1108 + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"}, 1109 + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"}, 1110 + {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"}, 1111 + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"}, 1112 + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"}, 1113 + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"}, 1114 + {file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"}, 1115 + {file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"}, 1116 + {file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"}, 1117 + {file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"}, 1118 + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"}, 1119 + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"}, 1120 + {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"}, 1121 + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"}, 1122 + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"}, 1123 + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"}, 1124 + {file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"}, 1125 + {file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"}, 1126 + {file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"}, 1127 + {file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"}, 1128 + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"}, 1129 + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"}, 1130 + {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"}, 1131 + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"}, 1132 + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"}, 1133 + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"}, 1134 + {file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"}, 1135 + {file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"}, 1136 + {file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"}, 1137 + {file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"}, 987 1138 ] 988 1139 crashtest = [ 989 1140 {file = "crashtest-0.3.1-py3-none-any.whl", hash = "sha256:300f4b0825f57688b47b6d70c6a31de33512eb2fa1ac614f780939aa0cf91680"}, 990 1141 {file = "crashtest-0.3.1.tar.gz", hash = "sha256:42ca7b6ce88b6c7433e2ce47ea884e91ec93104a4b754998be498a8e6c3d37dd"}, 991 1142 ] 992 1143 cryptography = [ 993 - {file = "cryptography-3.2.1-cp27-cp27m-macosx_10_10_x86_64.whl", hash = "sha256:6dc59630ecce8c1f558277ceb212c751d6730bd12c80ea96b4ac65637c4f55e7"}, 994 - {file = "cryptography-3.2.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:75e8e6684cf0034f6bf2a97095cb95f81537b12b36a8fedf06e73050bb171c2d"}, 995 - {file = "cryptography-3.2.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4e7268a0ca14536fecfdf2b00297d4e407da904718658c1ff1961c713f90fd33"}, 996 - {file = "cryptography-3.2.1-cp27-cp27m-win32.whl", hash = "sha256:7117319b44ed1842c617d0a452383a5a052ec6aa726dfbaffa8b94c910444297"}, 997 - {file = "cryptography-3.2.1-cp27-cp27m-win_amd64.whl", hash = "sha256:a733671100cd26d816eed39507e585c156e4498293a907029969234e5e634bc4"}, 998 - {file = "cryptography-3.2.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:a75f306a16d9f9afebfbedc41c8c2351d8e61e818ba6b4c40815e2b5740bb6b8"}, 999 - {file = "cryptography-3.2.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:5849d59358547bf789ee7e0d7a9036b2d29e9a4ddf1ce5e06bb45634f995c53e"}, 1000 - {file = "cryptography-3.2.1-cp35-abi3-macosx_10_10_x86_64.whl", hash = "sha256:bd717aa029217b8ef94a7d21632a3bb5a4e7218a4513d2521c2a2fd63011e98b"}, 1001 - {file = "cryptography-3.2.1-cp35-abi3-manylinux1_x86_64.whl", hash = "sha256:efe15aca4f64f3a7ea0c09c87826490e50ed166ce67368a68f315ea0807a20df"}, 1002 - {file = "cryptography-3.2.1-cp35-abi3-manylinux2010_x86_64.whl", hash = "sha256:32434673d8505b42c0de4de86da8c1620651abd24afe91ae0335597683ed1b77"}, 1003 - {file = "cryptography-3.2.1-cp35-abi3-manylinux2014_aarch64.whl", hash = "sha256:7b8d9d8d3a9bd240f453342981f765346c87ade811519f98664519696f8e6ab7"}, 1004 - {file = "cryptography-3.2.1-cp35-cp35m-win32.whl", hash = "sha256:d3545829ab42a66b84a9aaabf216a4dce7f16dbc76eb69be5c302ed6b8f4a29b"}, 1005 - {file = "cryptography-3.2.1-cp35-cp35m-win_amd64.whl", hash = "sha256:a4e27ed0b2504195f855b52052eadcc9795c59909c9d84314c5408687f933fc7"}, 1006 - {file = "cryptography-3.2.1-cp36-abi3-win32.whl", hash = "sha256:13b88a0bd044b4eae1ef40e265d006e34dbcde0c2f1e15eb9896501b2d8f6c6f"}, 1007 - {file = "cryptography-3.2.1-cp36-abi3-win_amd64.whl", hash = "sha256:07ca431b788249af92764e3be9a488aa1d39a0bc3be313d826bbec690417e538"}, 1008 - {file = "cryptography-3.2.1-cp36-cp36m-win32.whl", hash = "sha256:a035a10686532b0587d58a606004aa20ad895c60c4d029afa245802347fab57b"}, 1009 - {file = "cryptography-3.2.1-cp36-cp36m-win_amd64.whl", hash = "sha256:d26a2557d8f9122f9bf445fc7034242f4375bd4e95ecda007667540270965b13"}, 1010 - {file = "cryptography-3.2.1-cp37-cp37m-win32.whl", hash = "sha256:545a8550782dda68f8cdc75a6e3bf252017aa8f75f19f5a9ca940772fc0cb56e"}, 1011 - {file = "cryptography-3.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:55d0b896631412b6f0c7de56e12eb3e261ac347fbaa5d5e705291a9016e5f8cb"}, 1012 - {file = "cryptography-3.2.1-cp38-cp38-win32.whl", hash = "sha256:3cd75a683b15576cfc822c7c5742b3276e50b21a06672dc3a800a2d5da4ecd1b"}, 1013 - {file = "cryptography-3.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:d25cecbac20713a7c3bc544372d42d8eafa89799f492a43b79e1dfd650484851"}, 1014 - {file = "cryptography-3.2.1.tar.gz", hash = "sha256:d3d5e10be0cf2a12214ddee45c6bd203dab435e3d83b4560c03066eda600bfe3"}, 1015 - {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:549153378611c0cca1042f20fd9c5030d37a72f634c9326e225c9f666d472884"}, 1016 - {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:a958c52505c8adf0d3822703078580d2c0456dd1d27fabfb6f76fe63d2971cd6"}, 1017 - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f721d1885ecae9078c3f6bbe8a88bc0786b6e749bf32ccec1ef2b18929a05046"}, 1018 - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3d41b965b3380f10e4611dbae366f6dc3cefc7c9ac4e8842a806b9672ae9add5"}, 1019 - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80f49023dd13ba35f7c34072fa17f604d2f19bf0989f292cedf7ab5770b87a0b"}, 1020 - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2dcb0b3b63afb6df7fd94ec6fbddac81b5492513f7b0436210d390c14d46ee8"}, 1021 - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:b7f8dd0d4c1f21759695c05a5ec8536c12f31611541f8904083f3dc582604280"}, 1022 - {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:30788e070800fec9bbcf9faa71ea6d8068f5136f60029759fd8c3efec3c9dcb3"}, 1023 - {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:190f82f3e87033821828f60787cfa42bff98404483577b591429ed99bed39d59"}, 1024 - {file = "cryptography-37.0.4-cp36-abi3-win32.whl", hash = "sha256:b62439d7cd1222f3da897e9a9fe53bbf5c104fff4d60893ad1355d4c14a24157"}, 1025 - {file = "cryptography-37.0.4-cp36-abi3-win_amd64.whl", hash = "sha256:f7a6de3e98771e183645181b3627e2563dcde3ce94a9e42a3f427d2255190327"}, 1026 - {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc95ed67b6741b2607298f9ea4932ff157e570ef456ef7ff0ef4884a134cc4b"}, 1027 - {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:f8c0a6e9e1dd3eb0414ba320f85da6b0dcbd543126e30fcc546e7372a7fbf3b9"}, 1028 - {file = "cryptography-37.0.4-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:e007f052ed10cc316df59bc90fbb7ff7950d7e2919c9757fd42a2b8ecf8a5f67"}, 1029 - {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bc997818309f56c0038a33b8da5c0bfbb3f1f067f315f9abd6fc07ad359398d"}, 1030 - {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d204833f3c8a33bbe11eda63a54b1aad7aa7456ed769a982f21ec599ba5fa282"}, 1031 - {file = "cryptography-37.0.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:75976c217f10d48a8b5a8de3d70c454c249e4b91851f6838a4e48b8f41eb71aa"}, 1032 - {file = "cryptography-37.0.4-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:7099a8d55cd49b737ffc99c17de504f2257e3787e02abe6d1a6d136574873441"}, 1033 - {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2be53f9f5505673eeda5f2736bea736c40f051a739bfae2f92d18aed1eb54596"}, 1034 - {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:91ce48d35f4e3d3f1d83e29ef4a9267246e6a3be51864a5b7d2247d5086fa99a"}, 1035 - {file = "cryptography-37.0.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4c590ec31550a724ef893c50f9a97a0c14e9c851c85621c5650d699a7b88f7ab"}, 1036 - {file = "cryptography-37.0.4.tar.gz", hash = "sha256:63f9c17c0e2474ccbebc9302ce2f07b55b3b3fcb211ded18a42d5764f5c10a82"}, 1144 + {file = "cryptography-38.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:10d1f29d6292fc95acb597bacefd5b9e812099d75a6469004fd38ba5471a977f"}, 1145 + {file = "cryptography-38.0.1-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:3fc26e22840b77326a764ceb5f02ca2d342305fba08f002a8c1f139540cdfaad"}, 1146 + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3b72c360427889b40f36dc214630e688c2fe03e16c162ef0aa41da7ab1455153"}, 1147 + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:194044c6b89a2f9f169df475cc167f6157eb9151cc69af8a2a163481d45cc407"}, 1148 + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca9f6784ea96b55ff41708b92c3f6aeaebde4c560308e5fbbd3173fbc466e94e"}, 1149 + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:16fa61e7481f4b77ef53991075de29fc5bacb582a1244046d2e8b4bb72ef66d0"}, 1150 + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d4ef6cc305394ed669d4d9eebf10d3a101059bdcf2669c366ec1d14e4fb227bd"}, 1151 + {file = "cryptography-38.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3261725c0ef84e7592597606f6583385fed2a5ec3909f43bc475ade9729a41d6"}, 1152 + {file = "cryptography-38.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:0297ffc478bdd237f5ca3a7dc96fc0d315670bfa099c04dc3a4a2172008a405a"}, 1153 + {file = "cryptography-38.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:89ed49784ba88c221756ff4d4755dbc03b3c8d2c5103f6d6b4f83a0fb1e85294"}, 1154 + {file = "cryptography-38.0.1-cp36-abi3-win32.whl", hash = "sha256:ac7e48f7e7261207d750fa7e55eac2d45f720027d5703cd9007e9b37bbb59ac0"}, 1155 + {file = "cryptography-38.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:ad7353f6ddf285aeadfaf79e5a6829110106ff8189391704c1d8801aa0bae45a"}, 1156 + {file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:896dd3a66959d3a5ddcfc140a53391f69ff1e8f25d93f0e2e7830c6de90ceb9d"}, 1157 + {file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d3971e2749a723e9084dd507584e2a2761f78ad2c638aa31e80bc7a15c9db4f9"}, 1158 + {file = "cryptography-38.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:79473cf8a5cbc471979bd9378c9f425384980fcf2ab6534b18ed7d0d9843987d"}, 1159 + {file = "cryptography-38.0.1-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:d9e69ae01f99abe6ad646947bba8941e896cb3aa805be2597a0400e0764b5818"}, 1160 + {file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5067ee7f2bce36b11d0e334abcd1ccf8c541fc0bbdaf57cdd511fdee53e879b6"}, 1161 + {file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:3e3a2599e640927089f932295a9a247fc40a5bdf69b0484532f530471a382750"}, 1162 + {file = "cryptography-38.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c2e5856248a416767322c8668ef1845ad46ee62629266f84a8f007a317141013"}, 1163 + {file = "cryptography-38.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:64760ba5331e3f1794d0bcaabc0d0c39e8c60bf67d09c93dc0e54189dfd7cfe5"}, 1164 + {file = "cryptography-38.0.1-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b6c9b706316d7b5a137c35e14f4103e2115b088c412140fdbd5f87c73284df61"}, 1165 + {file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0163a849b6f315bf52815e238bc2b2346604413fa7c1601eea84bcddb5fb9ac"}, 1166 + {file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d1a5bd52d684e49a36582193e0b89ff267704cd4025abefb9e26803adeb3e5fb"}, 1167 + {file = "cryptography-38.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:765fa194a0f3372d83005ab83ab35d7c5526c4e22951e46059b8ac678b44fa5a"}, 1168 + {file = "cryptography-38.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:52e7bee800ec869b4031093875279f1ff2ed12c1e2f74923e8f49c916afd1d3b"}, 1169 + {file = "cryptography-38.0.1.tar.gz", hash = "sha256:1db3d807a14931fa317f96435695d9ec386be7b84b618cc61cfa5d08b0ae33d7"}, 1170 + ] 1171 + deepdiff = [ 1172 + {file = "deepdiff-5.8.1-py3-none-any.whl", hash = "sha256:e9aea49733f34fab9a0897038d8f26f9d94a97db1790f1b814cced89e9e0d2b7"}, 1173 + {file = "deepdiff-5.8.1.tar.gz", hash = "sha256:8d4eb2c4e6cbc80b811266419cb71dd95a157094a3947ccf937a94d44943c7b8"}, 1037 1174 ] 1038 1175 distlib = [ 1039 - {file = "distlib-0.3.4-py2.py3-none-any.whl", hash = "sha256:6564fe0a8f51e734df6333d08b8b94d4ea8ee6b99b5ed50613f731fd4089f34b"}, 1040 - {file = "distlib-0.3.4.zip", hash = "sha256:e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579"}, 1176 + {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, 1177 + {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, 1178 + ] 1179 + dulwich = [ 1180 + {file = "dulwich-0.20.46-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:6676196e9cf377cde62aa2f5d741e93207437343e0c62368bd0d784c322a3c49"}, 1181 + {file = "dulwich-0.20.46-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a1ca555a3eafe7388d6cb81bb08f34608a1592500f0bd4c26734c91d208a546"}, 1182 + {file = "dulwich-0.20.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:769442c9657b10fc35ac625beeaf440540c9288c96fcfaba3e58adf745c5cafd"}, 1183 + {file = "dulwich-0.20.46-cp310-cp310-win32.whl", hash = "sha256:de22a54f68c6c4e97f9b924abd46da4618536d7934b9849066be9fc5cd31205d"}, 1184 + {file = "dulwich-0.20.46-cp310-cp310-win_amd64.whl", hash = "sha256:42fa5a68908556eb6c40f231a67caf6a4660588aad707a9d6b334fa1d8f04bf7"}, 1185 + {file = "dulwich-0.20.46-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:3e16376031466848e44aabf3489fafb054482143744b21167dbd168731041c74"}, 1186 + {file = "dulwich-0.20.46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:153c7512587384a290c60fef330f1ab397a59559e19e8b02a0169ff21b4c69fb"}, 1187 + {file = "dulwich-0.20.46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5b68bd815cd2769c75e5a78708eb0440612df19b370a977aa9e01a056baa9ed"}, 1188 + {file = "dulwich-0.20.46-cp311-cp311-win32.whl", hash = "sha256:b1339bca70764eb8e780d80c72e7c1cb4651201dc9e43ec5d616bf51eb3bb3a6"}, 1189 + {file = "dulwich-0.20.46-cp311-cp311-win_amd64.whl", hash = "sha256:1162fdafb2abdfe66649617061f3853cb26384fade1f6884f6fe6e9c570a7552"}, 1190 + {file = "dulwich-0.20.46-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:6826512f778eaa47e2e8c0a46cdc555958f9f5286771490b8642b4b508ea5d25"}, 1191 + {file = "dulwich-0.20.46-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:100d39bc18196a07c521fd5f60f78f397493303daa0b8690216864bbc621cd5d"}, 1192 + {file = "dulwich-0.20.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4cd2cd7baa81246bdc8c5272d4e9224e2255da7a0618a220aab5e07b9888e9b"}, 1193 + {file = "dulwich-0.20.46-cp36-cp36m-win32.whl", hash = "sha256:6eed5a3194d64112605fc0f638f4fa91771495e8674fa3e6d6b33bf150d297d5"}, 1194 + {file = "dulwich-0.20.46-cp36-cp36m-win_amd64.whl", hash = "sha256:9ca4d73987f5b0e2e843497876f9bb39a47384a2e50597a85542285f5c890293"}, 1195 + {file = "dulwich-0.20.46-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:b9f49de83911eed7adbe83136229837ef9d102e42dbe6aacb1a18be45c997ace"}, 1196 + {file = "dulwich-0.20.46-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d38be7d3a78d608ecab3348f7920d6b9002e7972dd245206dc8075cfdb91621d"}, 1197 + {file = "dulwich-0.20.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f4b7a7feb966a4669c254b18385fe0b3c639f3b1f5ddef0d9e083364cc762847"}, 1198 + {file = "dulwich-0.20.46-cp37-cp37m-win32.whl", hash = "sha256:f9552ac246bceab1c5cdd1ec3cfe9446fe76b9853eaf59d3244df03eb27fd3fe"}, 1199 + {file = "dulwich-0.20.46-cp37-cp37m-win_amd64.whl", hash = "sha256:90a075aeb0fdbad7e18b9db3af161e3d635e2b7697b7a4b467e6844a13b0b210"}, 1200 + {file = "dulwich-0.20.46-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:8d6fee82cedb2362942d9ef94061901f7e07d7d8674e4c7b6fceeef7822ae275"}, 1201 + {file = "dulwich-0.20.46-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:669c6b3d82996518a7fec4604771bd285e23f0860f41f565fef5987265d431d9"}, 1202 + {file = "dulwich-0.20.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd3eac228117487a959ac8f49ea2787eac34acc69999fe7adae70b23e3c3571c"}, 1203 + {file = "dulwich-0.20.46-cp38-cp38-win32.whl", hash = "sha256:92024f572d32680e021219f77015c8b443c38022e502b7f51ad7cf51a6285a36"}, 1204 + {file = "dulwich-0.20.46-cp38-cp38-win_amd64.whl", hash = "sha256:d928de1eba0326a2a8a52ed94c9bf7c315ff4db606a1aa3ae688d39574f93267"}, 1205 + {file = "dulwich-0.20.46-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:a5d1b7a3a7d84a5dedbb90092e00097357106b9642ac08a96c2ae89ccd8afd9a"}, 1206 + {file = "dulwich-0.20.46-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b739d759c10e2af7c964dcc97fd4e5dc49e8567d080eed8906fc422c79b7fdcf"}, 1207 + {file = "dulwich-0.20.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fc7a4f633f5468453d5dd84a753cd99d4433f0397437229a0a8b10347935591"}, 1208 + {file = "dulwich-0.20.46-cp39-cp39-win32.whl", hash = "sha256:525115c4d1fbf60a5fe98f340b4ca597ba47b2c75d9c5ec750dd0e9115ef8ec6"}, 1209 + {file = "dulwich-0.20.46-cp39-cp39-win_amd64.whl", hash = "sha256:73e2585a9fcf1f8cdad8597a0c384c0b365b2e8346463130c96d9ea1478587ae"}, 1210 + {file = "dulwich-0.20.46.tar.gz", hash = "sha256:4f0e88ffff5db1523d93d92f1525fe5fa161318ffbaad502c1b9b3be7a067172"}, 1211 + ] 1212 + execnet = [ 1213 + {file = "execnet-1.9.0-py2.py3-none-any.whl", hash = "sha256:a295f7cc774947aac58dde7fdc85f4aa00c42adf5d8f5468fc630c1acf30a142"}, 1214 + {file = "execnet-1.9.0.tar.gz", hash = "sha256:8f694f3ba9cc92cab508b152dcfe322153975c29bda272e2fd7f3f00f36e47c5"}, 1041 1215 ] 1042 1216 filelock = [ 1043 - {file = "filelock-3.2.1-py2.py3-none-any.whl", hash = "sha256:7f07b08d731907441ff40d0c5b81f9512cd968842e0b6264c8bd18a8ce877760"}, 1044 - {file = "filelock-3.2.1.tar.gz", hash = "sha256:9cdd29c411ab196cf4c35a1da684f7b9da723696cb356efa45bf5eb1ff313ee3"}, 1217 + {file = "filelock-3.8.0-py3-none-any.whl", hash = "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4"}, 1218 + {file = "filelock-3.8.0.tar.gz", hash = "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc"}, 1219 + ] 1220 + flatdict = [ 1221 + {file = "flatdict-4.0.1.tar.gz", hash = "sha256:cd32f08fd31ed21eb09ebc76f06b6bd12046a24f77beb1fd0281917e47f26742"}, 1045 1222 ] 1046 1223 html5lib = [ 1047 1224 {file = "html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d"}, ··· 1051 1228 {file = "httpretty-1.1.4.tar.gz", hash = "sha256:20de0e5dd5a18292d36d928cc3d6e52f8b2ac73daec40d41eb62dee154933b68"}, 1052 1229 ] 1053 1230 identify = [ 1054 - {file = "identify-2.4.4-py2.py3-none-any.whl", hash = "sha256:aa68609c7454dbcaae60a01ff6b8df1de9b39fe6e50b1f6107ec81dcda624aa6"}, 1055 - {file = "identify-2.4.4.tar.gz", hash = "sha256:6b4b5031f69c48bf93a646b90de9b381c6b5f560df4cbe0ed3cf7650ae741e4d"}, 1231 + {file = "identify-2.5.6-py2.py3-none-any.whl", hash = "sha256:b276db7ec52d7e89f5bc4653380e33054ddc803d25875952ad90b0f012cbcdaa"}, 1232 + {file = "identify-2.5.6.tar.gz", hash = "sha256:6c32dbd747aa4ceee1df33f25fed0b0f6e0d65721b15bd151307ff7056d50245"}, 1056 1233 ] 1057 1234 idna = [ 1058 - {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"}, 1059 - {file = "idna-2.10.tar.gz", hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6"}, 1235 + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, 1236 + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, 1060 1237 ] 1061 1238 importlib-metadata = [ 1062 - {file = "importlib_metadata-1.7.0-py2.py3-none-any.whl", hash = "sha256:dc15b2969b4ce36305c51eebe62d418ac7791e9a157911d58bfb1f9ccd8e2070"}, 1063 - {file = "importlib_metadata-1.7.0.tar.gz", hash = "sha256:90bb658cdbbf6d1735b6341ce708fc7024a3e14e99ffdc5783edea9f9b077f83"}, 1239 + {file = "importlib_metadata-4.13.0-py3-none-any.whl", hash = "sha256:8a8a81bcf996e74fee46f0d16bd3eaa382a7eb20fd82445c3ad11f4090334116"}, 1240 + {file = "importlib_metadata-4.13.0.tar.gz", hash = "sha256:dd0173e8f150d6815e098fd354f6414b0f079af4644ddfe90c71e2fc6174346d"}, 1064 1241 ] 1065 1242 importlib-resources = [ 1066 - {file = "importlib_resources-3.2.1-py2.py3-none-any.whl", hash = "sha256:e2860cf0c4bc999947228d18be154fa3779c5dde0b882bd2d7b3f4d25e698bd6"}, 1067 - {file = "importlib_resources-3.2.1.tar.gz", hash = "sha256:a9fe213ab6452708ec1b3f4ec6f2881b8ab3645cb4e5efb7fea2bbf05a91db3b"}, 1243 + {file = "importlib_resources-5.9.0-py3-none-any.whl", hash = "sha256:f78a8df21a79bcc30cfd400bdc38f314333de7c0fb619763f6b9dabab8268bb7"}, 1244 + {file = "importlib_resources-5.9.0.tar.gz", hash = "sha256:5481e97fb45af8dcf2f798952625591c58fe599d0735d86b10f54de086a61681"}, 1068 1245 ] 1069 1246 iniconfig = [ 1070 1247 {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, 1071 1248 {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, 1249 + ] 1250 + "jaraco.classes" = [ 1251 + {file = "jaraco.classes-3.2.3-py3-none-any.whl", hash = "sha256:2353de3288bc6b82120752201c6b1c1a14b058267fa424ed5ce5984e3b922158"}, 1252 + {file = "jaraco.classes-3.2.3.tar.gz", hash = "sha256:89559fa5c1d3c34eff6f631ad80bb21f378dbcbb35dd161fd2c6b93f5be2f98a"}, 1072 1253 ] 1073 1254 jeepney = [ 1074 - {file = "jeepney-0.4.3-py3-none-any.whl", hash = "sha256:d6c6b49683446d2407d2fe3acb7a368a77ff063f9182fe427da15d622adc24cf"}, 1075 - {file = "jeepney-0.4.3.tar.gz", hash = "sha256:3479b861cc2b6407de5188695fa1a8d57e5072d7059322469b62628869b8e36e"}, 1076 - {file = "jeepney-0.7.1-py3-none-any.whl", hash = "sha256:1b5a0ea5c0e7b166b2f5895b91a08c14de8915afda4407fb5022a195224958ac"}, 1077 - {file = "jeepney-0.7.1.tar.gz", hash = "sha256:fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f"}, 1255 + {file = "jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755"}, 1256 + {file = "jeepney-0.8.0.tar.gz", hash = "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806"}, 1257 + ] 1258 + jsonschema = [ 1259 + {file = "jsonschema-4.16.0-py3-none-any.whl", hash = "sha256:9e74b8f9738d6a946d70705dc692b74b5429cd0960d58e79ffecfc43b2221eb9"}, 1260 + {file = "jsonschema-4.16.0.tar.gz", hash = "sha256:165059f076eff6971bae5b742fc029a7b4ef3f9bcf04c14e4776a7605de14b23"}, 1078 1261 ] 1079 1262 keyring = [ 1080 - {file = "keyring-20.0.1-py2.py3-none-any.whl", hash = "sha256:c674f032424b4bffc62abeac5523ec49cc84aed07a480c3233e0baf618efc15c"}, 1081 - {file = "keyring-20.0.1.tar.gz", hash = "sha256:963bfa7f090269d30bdc5e25589e5fd9dad2cf2a7c6f176a7f2386910e5d0d8d"}, 1082 - {file = "keyring-22.3.0-py3-none-any.whl", hash = "sha256:2bc8363ebdd63886126a012057a85c8cb6e143877afa02619ac7dbc9f38a207b"}, 1083 - {file = "keyring-22.3.0.tar.gz", hash = "sha256:16927a444b2c73f983520a48dec79ddab49fe76429ea05b8d528d778c8339522"}, 1263 + {file = "keyring-23.9.3-py3-none-any.whl", hash = "sha256:69732a15cb1433bdfbc3b980a8a36a04878a6cfd7cb99f497b573f31618001c0"}, 1264 + {file = "keyring-23.9.3.tar.gz", hash = "sha256:69b01dd83c42f590250fe7a1f503fc229b14de83857314b1933a3ddbf595c4a5"}, 1084 1265 ] 1085 1266 lockfile = [ 1086 1267 {file = "lockfile-0.12.2-py2.py3-none-any.whl", hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa"}, 1087 1268 {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, 1088 1269 ] 1089 1270 more-itertools = [ 1090 - {file = "more-itertools-8.13.0.tar.gz", hash = "sha256:a42901a0a5b169d925f6f217cd5a190e32ef54360905b9c39ee7db5313bfec0f"}, 1091 - {file = "more_itertools-8.13.0-py3-none-any.whl", hash = "sha256:c5122bffc5f104d37c1626b8615b511f3427aa5389b94d61e5ef8236bfbc3ddb"}, 1271 + {file = "more-itertools-8.14.0.tar.gz", hash = "sha256:c09443cd3d5438b8dafccd867a6bc1cb0894389e90cb53d227456b0b0bccb750"}, 1272 + {file = "more_itertools-8.14.0-py3-none-any.whl", hash = "sha256:1bc4f91ee5b1b31ac7ceacc17c09befe6a40a503907baf9c839c229b5095cfd2"}, 1092 1273 ] 1093 1274 msgpack = [ 1094 1275 {file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250"}, ··· 1144 1325 {file = "msgpack-1.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:4d5834a2a48965a349da1c5a79760d94a1a0172fbb5ab6b5b33cbf8447e109ce"}, 1145 1326 {file = "msgpack-1.0.4.tar.gz", hash = "sha256:f5d869c18f030202eb412f08b28d2afeea553d6613aee89e200d7aca7ef01f5f"}, 1146 1327 ] 1147 - nodeenv = [ 1148 - {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, 1149 - {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, 1328 + mypy = [ 1329 + {file = "mypy-0.982-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5085e6f442003fa915aeb0a46d4da58128da69325d8213b4b35cc7054090aed5"}, 1330 + {file = "mypy-0.982-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:41fd1cf9bc0e1c19b9af13a6580ccb66c381a5ee2cf63ee5ebab747a4badeba3"}, 1331 + {file = "mypy-0.982-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f793e3dd95e166b66d50e7b63e69e58e88643d80a3dcc3bcd81368e0478b089c"}, 1332 + {file = "mypy-0.982-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86ebe67adf4d021b28c3f547da6aa2cce660b57f0432617af2cca932d4d378a6"}, 1333 + {file = "mypy-0.982-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:175f292f649a3af7082fe36620369ffc4661a71005aa9f8297ea473df5772046"}, 1334 + {file = "mypy-0.982-cp310-cp310-win_amd64.whl", hash = "sha256:8ee8c2472e96beb1045e9081de8e92f295b89ac10c4109afdf3a23ad6e644f3e"}, 1335 + {file = "mypy-0.982-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:58f27ebafe726a8e5ccb58d896451dd9a662a511a3188ff6a8a6a919142ecc20"}, 1336 + {file = "mypy-0.982-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6af646bd46f10d53834a8e8983e130e47d8ab2d4b7a97363e35b24e1d588947"}, 1337 + {file = "mypy-0.982-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e7aeaa763c7ab86d5b66ff27f68493d672e44c8099af636d433a7f3fa5596d40"}, 1338 + {file = "mypy-0.982-cp37-cp37m-win_amd64.whl", hash = "sha256:724d36be56444f569c20a629d1d4ee0cb0ad666078d59bb84f8f887952511ca1"}, 1339 + {file = "mypy-0.982-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:14d53cdd4cf93765aa747a7399f0961a365bcddf7855d9cef6306fa41de01c24"}, 1340 + {file = "mypy-0.982-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:26ae64555d480ad4b32a267d10cab7aec92ff44de35a7cd95b2b7cb8e64ebe3e"}, 1341 + {file = "mypy-0.982-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6389af3e204975d6658de4fb8ac16f58c14e1bacc6142fee86d1b5b26aa52bda"}, 1342 + {file = "mypy-0.982-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b35ce03a289480d6544aac85fa3674f493f323d80ea7226410ed065cd46f206"}, 1343 + {file = "mypy-0.982-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c6e564f035d25c99fd2b863e13049744d96bd1947e3d3d2f16f5828864506763"}, 1344 + {file = "mypy-0.982-cp38-cp38-win_amd64.whl", hash = "sha256:cebca7fd333f90b61b3ef7f217ff75ce2e287482206ef4a8b18f32b49927b1a2"}, 1345 + {file = "mypy-0.982-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a705a93670c8b74769496280d2fe6cd59961506c64f329bb179970ff1d24f9f8"}, 1346 + {file = "mypy-0.982-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:75838c649290d83a2b83a88288c1eb60fe7a05b36d46cbea9d22efc790002146"}, 1347 + {file = "mypy-0.982-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:91781eff1f3f2607519c8b0e8518aad8498af1419e8442d5d0afb108059881fc"}, 1348 + {file = "mypy-0.982-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaa97b9ddd1dd9901a22a879491dbb951b5dec75c3b90032e2baa7336777363b"}, 1349 + {file = "mypy-0.982-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a692a8e7d07abe5f4b2dd32d731812a0175626a90a223d4b58f10f458747dd8a"}, 1350 + {file = "mypy-0.982-cp39-cp39-win_amd64.whl", hash = "sha256:eb7a068e503be3543c4bd329c994103874fa543c1727ba5288393c21d912d795"}, 1351 + {file = "mypy-0.982-py3-none-any.whl", hash = "sha256:1021c241e8b6e1ca5a47e4d52601274ac078a89845cfde66c6d5f769819ffa1d"}, 1352 + {file = "mypy-0.982.tar.gz", hash = "sha256:85f7a343542dc8b1ed0a888cdd34dca56462654ef23aa673907305b260b3d746"}, 1150 1353 ] 1151 - packaging = [ 1152 - {file = "packaging-20.9-py2.py3-none-any.whl", hash = "sha256:67714da7f7bc052e064859c05c595155bd1ee9f69f76557e21f051443c20947a"}, 1153 - {file = "packaging-20.9.tar.gz", hash = "sha256:5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5"}, 1354 + mypy-extensions = [ 1355 + {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, 1356 + {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, 1154 1357 ] 1155 - pastel = [ 1156 - {file = "pastel-0.2.1-py2.py3-none-any.whl", hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364"}, 1157 - {file = "pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d"}, 1358 + nodeenv = [ 1359 + {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"}, 1360 + {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"}, 1158 1361 ] 1159 - pathlib2 = [ 1160 - {file = "pathlib2-2.3.7.post1-py2.py3-none-any.whl", hash = "sha256:5266a0fd000452f1b3467d782f079a4343c63aaa119221fbdc4e39577489ca5b"}, 1161 - {file = "pathlib2-2.3.7.post1.tar.gz", hash = "sha256:9fe0edad898b83c0c3e199c842b27ed216645d2e177757b2dd67384d4113c641"}, 1362 + ordered-set = [ 1363 + {file = "ordered-set-4.1.0.tar.gz", hash = "sha256:694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8"}, 1364 + {file = "ordered_set-4.1.0-py3-none-any.whl", hash = "sha256:046e1132c71fcf3330438a539928932caf51ddbc582496833e23de611de14562"}, 1365 + ] 1366 + packaging = [ 1367 + {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, 1368 + {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, 1162 1369 ] 1163 1370 pexpect = [ 1164 1371 {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, 1165 1372 {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, 1166 1373 ] 1167 1374 pkginfo = [ 1168 - {file = "pkginfo-1.8.2-py2.py3-none-any.whl", hash = "sha256:c24c487c6a7f72c66e816ab1796b96ac6c3d14d49338293d2141664330b55ffc"}, 1169 - {file = "pkginfo-1.8.2.tar.gz", hash = "sha256:542e0d0b6750e2e21c20179803e40ab50598d8066d51097a0e382cba9eb02bff"}, 1375 + {file = "pkginfo-1.8.3-py2.py3-none-any.whl", hash = "sha256:848865108ec99d4901b2f7e84058b6e7660aae8ae10164e015a6dcf5b242a594"}, 1376 + {file = "pkginfo-1.8.3.tar.gz", hash = "sha256:a84da4318dd86f870a9447a8c98340aa06216bfc6f2b7bdc4b8766984ae1867c"}, 1377 + ] 1378 + pkgutil_resolve_name = [ 1379 + {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, 1380 + {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, 1170 1381 ] 1171 1382 platformdirs = [ 1172 - {file = "platformdirs-2.0.2-py2.py3-none-any.whl", hash = "sha256:0b9547541f599d3d242078ae60b927b3e453f0ad52f58b4d4bc3be86aed3ec41"}, 1173 - {file = "platformdirs-2.0.2.tar.gz", hash = "sha256:3b00d081227d9037bbbca521a5787796b5ef5000faea1e43fd76f1d44b06fcfa"}, 1383 + {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, 1384 + {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, 1174 1385 ] 1175 1386 pluggy = [ 1176 - {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, 1177 - {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, 1387 + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, 1388 + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, 1178 1389 ] 1179 1390 poetry-core = [ 1180 - {file = "poetry-core-1.0.8.tar.gz", hash = "sha256:951fc7c1f8d710a94cb49019ee3742125039fc659675912ea614ac2aa405b118"}, 1181 - {file = "poetry_core-1.0.8-py2.py3-none-any.whl", hash = "sha256:54b0fab6f7b313886e547a52f8bf52b8cf43e65b2633c65117f8755289061924"}, 1391 + {file = "poetry-core-1.2.0.tar.gz", hash = "sha256:ceccec95487e46c63a41761fbac5211b809bca22658e25a049f4c7da96269f71"}, 1392 + {file = "poetry_core-1.2.0-py3-none-any.whl", hash = "sha256:e248d36c1314dd60fbc66390791923ad8b58c629d3e587080b7c1537a1c0d30f"}, 1393 + ] 1394 + poetry-plugin-export = [ 1395 + {file = "poetry-plugin-export-1.1.1.tar.gz", hash = "sha256:23e3e512a609b54ef5ac441339fc9e68fd41e61d15bd924eb0094b4fda1e30d0"}, 1396 + {file = "poetry_plugin_export-1.1.1-py3-none-any.whl", hash = "sha256:170fa367794d2385975d75298fe5509f772d35216ee36b8fa50c0350a064b761"}, 1182 1397 ] 1183 1398 pre-commit = [ 1184 - {file = "pre_commit-2.17.0-py2.py3-none-any.whl", hash = "sha256:725fa7459782d7bec5ead072810e47351de01709be838c2ce1726b9591dad616"}, 1185 - {file = "pre_commit-2.17.0.tar.gz", hash = "sha256:c1a8040ff15ad3d648c70cc3e55b93e4d2d5b687320955505587fd79bbaed06a"}, 1399 + {file = "pre_commit-2.20.0-py2.py3-none-any.whl", hash = "sha256:51a5ba7c480ae8072ecdb6933df22d2f812dc897d5fe848778116129a681aac7"}, 1400 + {file = "pre_commit-2.20.0.tar.gz", hash = "sha256:a978dac7bc9ec0bcee55c18a277d553b0f419d259dadb4b9418ff2d00eb43959"}, 1401 + ] 1402 + psutil = [ 1403 + {file = "psutil-5.9.2-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:8f024fbb26c8daf5d70287bb3edfafa22283c255287cf523c5d81721e8e5d82c"}, 1404 + {file = "psutil-5.9.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:b2f248ffc346f4f4f0d747ee1947963613216b06688be0be2e393986fe20dbbb"}, 1405 + {file = "psutil-5.9.2-cp27-cp27m-win32.whl", hash = "sha256:b1928b9bf478d31fdffdb57101d18f9b70ed4e9b0e41af751851813547b2a9ab"}, 1406 + {file = "psutil-5.9.2-cp27-cp27m-win_amd64.whl", hash = "sha256:404f4816c16a2fcc4eaa36d7eb49a66df2d083e829d3e39ee8759a411dbc9ecf"}, 1407 + {file = "psutil-5.9.2-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:94e621c6a4ddb2573d4d30cba074f6d1aa0186645917df42c811c473dd22b339"}, 1408 + {file = "psutil-5.9.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:256098b4f6ffea6441eb54ab3eb64db9ecef18f6a80d7ba91549195d55420f84"}, 1409 + {file = "psutil-5.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:614337922702e9be37a39954d67fdb9e855981624d8011a9927b8f2d3c9625d9"}, 1410 + {file = "psutil-5.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:39ec06dc6c934fb53df10c1672e299145ce609ff0611b569e75a88f313634969"}, 1411 + {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"}, 1412 + {file = "psutil-5.9.2-cp310-cp310-win32.whl", hash = "sha256:e4c4a7636ffc47b7141864f1c5e7d649f42c54e49da2dd3cceb1c5f5d29bfc85"}, 1413 + {file = "psutil-5.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:f4cb67215c10d4657e320037109939b1c1d2fd70ca3d76301992f89fe2edb1f1"}, 1414 + {file = "psutil-5.9.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:dc9bda7d5ced744622f157cc8d8bdd51735dafcecff807e928ff26bdb0ff097d"}, 1415 + {file = "psutil-5.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75291912b945a7351d45df682f9644540d564d62115d4a20d45fa17dc2d48f8"}, 1416 + {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"}, 1417 + {file = "psutil-5.9.2-cp36-cp36m-win32.whl", hash = "sha256:f40ba362fefc11d6bea4403f070078d60053ed422255bd838cd86a40674364c9"}, 1418 + {file = "psutil-5.9.2-cp36-cp36m-win_amd64.whl", hash = "sha256:9770c1d25aee91417eba7869139d629d6328a9422ce1cdd112bd56377ca98444"}, 1419 + {file = "psutil-5.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:42638876b7f5ef43cef8dcf640d3401b27a51ee3fa137cb2aa2e72e188414c32"}, 1420 + {file = "psutil-5.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:91aa0dac0c64688667b4285fa29354acfb3e834e1fd98b535b9986c883c2ce1d"}, 1421 + {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"}, 1422 + {file = "psutil-5.9.2-cp37-cp37m-win32.whl", hash = "sha256:7cbb795dcd8ed8fd238bc9e9f64ab188f3f4096d2e811b5a82da53d164b84c3f"}, 1423 + {file = "psutil-5.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:5d39e3a2d5c40efa977c9a8dd4f679763c43c6c255b1340a56489955dbca767c"}, 1424 + {file = "psutil-5.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fd331866628d18223a4265371fd255774affd86244fc307ef66eaf00de0633d5"}, 1425 + {file = "psutil-5.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b315febaebae813326296872fdb4be92ad3ce10d1d742a6b0c49fb619481ed0b"}, 1426 + {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"}, 1427 + {file = "psutil-5.9.2-cp38-cp38-win32.whl", hash = "sha256:561dec454853846d1dd0247b44c2e66a0a0c490f937086930ec4b8f83bf44f06"}, 1428 + {file = "psutil-5.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:67b33f27fc0427483b61563a16c90d9f3b547eeb7af0ef1b9fe024cdc9b3a6ea"}, 1429 + {file = "psutil-5.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b3591616fa07b15050b2f87e1cdefd06a554382e72866fcc0ab2be9d116486c8"}, 1430 + {file = "psutil-5.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b29f581b5edab1f133563272a6011925401804d52d603c5c606936b49c8b97"}, 1431 + {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"}, 1432 + {file = "psutil-5.9.2-cp39-cp39-win32.whl", hash = "sha256:ed29ea0b9a372c5188cdb2ad39f937900a10fb5478dc077283bf86eeac678ef1"}, 1433 + {file = "psutil-5.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:68b35cbff92d1f7103d8f1db77c977e72f49fcefae3d3d2b91c76b0e7aef48b8"}, 1434 + {file = "psutil-5.9.2.tar.gz", hash = "sha256:feb861a10b6c3bb00701063b37e4afc754f8217f0f09c42280586bd6ac712b5c"}, 1186 1435 ] 1187 1436 ptyprocess = [ 1188 1437 {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, ··· 1201 1450 {file = "pylev-1.4.0.tar.gz", hash = "sha256:9e77e941042ad3a4cc305dcdf2b2dec1aec2fbe3dd9015d2698ad02b173006d1"}, 1202 1451 ] 1203 1452 pyparsing = [ 1204 - {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, 1205 - {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, 1453 + {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, 1454 + {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, 1455 + ] 1456 + pyrsistent = [ 1457 + {file = "pyrsistent-0.18.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df46c854f490f81210870e509818b729db4488e1f30f2a1ce1698b2295a878d1"}, 1458 + {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d45866ececf4a5fff8742c25722da6d4c9e180daa7b405dc0a2a2790d668c26"}, 1459 + {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4ed6784ceac462a7d6fcb7e9b663e93b9a6fb373b7f43594f9ff68875788e01e"}, 1460 + {file = "pyrsistent-0.18.1-cp310-cp310-win32.whl", hash = "sha256:e4f3149fd5eb9b285d6bfb54d2e5173f6a116fe19172686797c056672689daf6"}, 1461 + {file = "pyrsistent-0.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:636ce2dc235046ccd3d8c56a7ad54e99d5c1cd0ef07d9ae847306c91d11b5fec"}, 1462 + {file = "pyrsistent-0.18.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e92a52c166426efbe0d1ec1332ee9119b6d32fc1f0bbfd55d5c1088070e7fc1b"}, 1463 + {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7a096646eab884bf8bed965bad63ea327e0d0c38989fc83c5ea7b8a87037bfc"}, 1464 + {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cdfd2c361b8a8e5d9499b9082b501c452ade8bbf42aef97ea04854f4a3f43b22"}, 1465 + {file = "pyrsistent-0.18.1-cp37-cp37m-win32.whl", hash = "sha256:7ec335fc998faa4febe75cc5268a9eac0478b3f681602c1f27befaf2a1abe1d8"}, 1466 + {file = "pyrsistent-0.18.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6455fc599df93d1f60e1c5c4fe471499f08d190d57eca040c0ea182301321286"}, 1467 + {file = "pyrsistent-0.18.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fd8da6d0124efa2f67d86fa70c851022f87c98e205f0594e1fae044e7119a5a6"}, 1468 + {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bfe2388663fd18bd8ce7db2c91c7400bf3e1a9e8bd7d63bf7e77d39051b85ec"}, 1469 + {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e3e1fcc45199df76053026a51cc59ab2ea3fc7c094c6627e93b7b44cdae2c8c"}, 1470 + {file = "pyrsistent-0.18.1-cp38-cp38-win32.whl", hash = "sha256:b568f35ad53a7b07ed9b1b2bae09eb15cdd671a5ba5d2c66caee40dbf91c68ca"}, 1471 + {file = "pyrsistent-0.18.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1b96547410f76078eaf66d282ddca2e4baae8964364abb4f4dcdde855cd123a"}, 1472 + {file = "pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5"}, 1473 + {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045"}, 1474 + {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:914474c9f1d93080338ace89cb2acee74f4f666fb0424896fcfb8d86058bf17c"}, 1475 + {file = "pyrsistent-0.18.1-cp39-cp39-win32.whl", hash = "sha256:1b34eedd6812bf4d33814fca1b66005805d3640ce53140ab8bbb1e2651b0d9bc"}, 1476 + {file = "pyrsistent-0.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:e24a828f57e0c337c8d8bb9f6b12f09dfdf0273da25fda9e314f0b684b415a07"}, 1477 + {file = "pyrsistent-0.18.1.tar.gz", hash = "sha256:d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96"}, 1206 1478 ] 1207 1479 pytest = [ 1208 - {file = "pytest-5.4.3-py3-none-any.whl", hash = "sha256:5c0db86b698e8f170ba4582a492248919255fcd4c79b1ee64ace34301fb589a1"}, 1209 - {file = "pytest-5.4.3.tar.gz", hash = "sha256:7979331bfcba207414f5e1263b5a0f8f521d0f457318836a7355531ed1a4c7d8"}, 1210 - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, 1211 - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, 1480 + {file = "pytest-7.1.3-py3-none-any.whl", hash = "sha256:1377bda3466d70b55e3f5cecfa55bb7cfcf219c7964629b967c37cf0bda818b7"}, 1481 + {file = "pytest-7.1.3.tar.gz", hash = "sha256:4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39"}, 1212 1482 ] 1213 1483 pytest-cov = [ 1214 - {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"}, 1215 - {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"}, 1484 + {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"}, 1485 + {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"}, 1486 + ] 1487 + pytest-forked = [ 1488 + {file = "pytest-forked-1.4.0.tar.gz", hash = "sha256:8b67587c8f98cbbadfdd804539ed5455b6ed03802203485dd2f53c1422d7440e"}, 1489 + {file = "pytest_forked-1.4.0-py3-none-any.whl", hash = "sha256:bbbb6717efc886b9d64537b41fb1497cfaf3c9601276be8da2cccfea5a3c8ad8"}, 1216 1490 ] 1217 1491 pytest-mock = [ 1218 - {file = "pytest-mock-1.13.0.tar.gz", hash = "sha256:e24a911ec96773022ebcc7030059b57cd3480b56d4f5d19b7c370ec635e6aed5"}, 1219 - {file = "pytest_mock-1.13.0-py2.py3-none-any.whl", hash = "sha256:67e414b3caef7bff6fc6bd83b22b5bc39147e4493f483c2679bc9d4dc485a94d"}, 1492 + {file = "pytest-mock-3.10.0.tar.gz", hash = "sha256:fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f"}, 1493 + {file = "pytest_mock-3.10.0-py3-none-any.whl", hash = "sha256:f4c973eeae0282963eb293eb173ce91b091a79c1334455acfac9ddee8a1c784b"}, 1494 + ] 1495 + pytest-randomly = [ 1496 + {file = "pytest-randomly-3.12.0.tar.gz", hash = "sha256:d60c2db71ac319aee0fc6c4110a7597d611a8b94a5590918bfa8583f00caccb2"}, 1497 + {file = "pytest_randomly-3.12.0-py3-none-any.whl", hash = "sha256:f4f2e803daf5d1ba036cc22bf4fe9dbbf99389ec56b00e5cba732fb5c1d07fdd"}, 1220 1498 ] 1221 1499 pytest-sugar = [ 1222 - {file = "pytest-sugar-0.9.4.tar.gz", hash = "sha256:b1b2186b0a72aada6859bea2a5764145e3aaa2c1cfbb23c3a19b5f7b697563d3"}, 1500 + {file = "pytest-sugar-0.9.5.tar.gz", hash = "sha256:eea78b6f15b635277d3d90280cd386d8feea1cab0f9be75947a626e8b02b477d"}, 1501 + {file = "pytest_sugar-0.9.5-py2.py3-none-any.whl", hash = "sha256:3da42de32ce4e1e95b448d61c92804433f5d4058c0a765096991c2e93d5a289f"}, 1502 + ] 1503 + pytest-xdist = [ 1504 + {file = "pytest-xdist-2.5.0.tar.gz", hash = "sha256:4580deca3ff04ddb2ac53eba39d76cb5dd5edeac050cb6fbc768b0dd712b4edf"}, 1505 + {file = "pytest_xdist-2.5.0-py3-none-any.whl", hash = "sha256:6fe5c74fec98906deb8f2d2b616b5c782022744978e7bd4695d39c8f42d0ce65"}, 1223 1506 ] 1224 1507 pywin32-ctypes = [ 1225 1508 {file = "pywin32-ctypes-0.2.0.tar.gz", hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942"}, 1226 1509 {file = "pywin32_ctypes-0.2.0-py2.py3-none-any.whl", hash = "sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98"}, 1227 1510 ] 1228 - pyyaml = [ 1511 + PyYAML = [ 1229 1512 {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, 1230 1513 {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, 1231 1514 {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, ··· 1233 1516 {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"}, 1234 1517 {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, 1235 1518 {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, 1519 + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, 1520 + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, 1521 + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, 1522 + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, 1523 + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, 1524 + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, 1525 + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, 1236 1526 {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, 1237 1527 {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, 1238 1528 {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, ··· 1261 1551 {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, 1262 1552 ] 1263 1553 requests = [ 1264 - {file = "requests-2.25.1-py2.py3-none-any.whl", hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e"}, 1265 - {file = "requests-2.25.1.tar.gz", hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804"}, 1554 + {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, 1555 + {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, 1266 1556 ] 1267 1557 requests-toolbelt = [ 1268 1558 {file = "requests-toolbelt-0.9.1.tar.gz", hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0"}, 1269 1559 {file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl", hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f"}, 1270 1560 ] 1271 - secretstorage = [ 1272 - {file = "SecretStorage-3.2.0-py3-none-any.whl", hash = "sha256:ed5279d788af258e4676fa26b6efb6d335a31f1f9f529b6f1e200f388fac33e1"}, 1273 - {file = "SecretStorage-3.2.0.tar.gz", hash = "sha256:46305c3847ee3f7252b284e0eee5590fa6341c891104a2fd2313f8798c615a82"}, 1274 - {file = "SecretStorage-3.3.2-py3-none-any.whl", hash = "sha256:755dc845b6ad76dcbcbc07ea3da75ae54bb1ea529eb72d15f83d26499a5df319"}, 1275 - {file = "SecretStorage-3.3.2.tar.gz", hash = "sha256:0a8eb9645b320881c222e827c26f4cfcf55363e8b374a021981ef886657a912f"}, 1561 + SecretStorage = [ 1562 + {file = "SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99"}, 1563 + {file = "SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77"}, 1564 + ] 1565 + setuptools = [ 1566 + {file = "setuptools-65.4.1-py3-none-any.whl", hash = "sha256:1b6bdc6161661409c5f21508763dc63ab20a9ac2f8ba20029aaaa7fdb9118012"}, 1567 + {file = "setuptools-65.4.1.tar.gz", hash = "sha256:3050e338e5871e70c72983072fe34f6032ae1cdeeeb67338199c2f74e083a80e"}, 1276 1568 ] 1277 1569 shellingham = [ 1278 - {file = "shellingham-1.4.0-py2.py3-none-any.whl", hash = "sha256:536b67a0697f2e4af32ab176c00a50ac2899c5a05e0d8e2dadac8e58888283f9"}, 1279 - {file = "shellingham-1.4.0.tar.gz", hash = "sha256:4855c2458d6904829bd34c299f11fdeed7cfefbf8a2c522e4caea6cd76b3171e"}, 1570 + {file = "shellingham-1.5.0-py2.py3-none-any.whl", hash = "sha256:a8f02ba61b69baaa13facdba62908ca8690a94b8119b69f5ec5873ea85f7391b"}, 1571 + {file = "shellingham-1.5.0.tar.gz", hash = "sha256:72fb7f5c63103ca2cb91b23dee0c71fe8ad6fbfd46418ef17dbe40db51592dad"}, 1280 1572 ] 1281 1573 six = [ 1282 1574 {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, 1283 1575 {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, 1284 1576 ] 1285 1577 termcolor = [ 1286 - {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"}, 1578 + {file = "termcolor-2.0.1-py3-none-any.whl", hash = "sha256:7e597f9de8e001a3208c4132938597413b9da45382b6f1d150cff8d062b7aaa3"}, 1579 + {file = "termcolor-2.0.1.tar.gz", hash = "sha256:6b2cf769e93364a2676e1de56a7c0cff2cf5bd07f37e9cc80b0dd6320ebfe388"}, 1287 1580 ] 1288 1581 toml = [ 1289 1582 {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, 1290 1583 {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, 1291 1584 ] 1585 + tomli = [ 1586 + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, 1587 + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, 1588 + ] 1292 1589 tomlkit = [ 1293 - {file = "tomlkit-0.7.2-py2.py3-none-any.whl", hash = "sha256:173ad840fa5d2aac140528ca1933c29791b79a374a0861a80347f42ec9328117"}, 1294 - {file = "tomlkit-0.7.2.tar.gz", hash = "sha256:d7a454f319a7e9bd2e249f239168729327e4dd2d27b17dc68be264ad1ce36754"}, 1590 + {file = "tomlkit-0.11.5-py3-none-any.whl", hash = "sha256:f2ef9da9cef846ee027947dc99a45d6b68a63b0ebc21944649505bf2e8bc5fe7"}, 1591 + {file = "tomlkit-0.11.5.tar.gz", hash = "sha256:571854ebbb5eac89abcb4a2e47d7ea27b89bf29e09c35395da6f03dd4ae23d1c"}, 1295 1592 ] 1296 1593 tox = [ 1297 - {file = "tox-3.25.1-py2.py3-none-any.whl", hash = "sha256:c38e15f4733683a9cc0129fba078633e07eb0961f550a010ada879e95fb32632"}, 1298 - {file = "tox-3.25.1.tar.gz", hash = "sha256:c138327815f53bc6da4fe56baec5f25f00622ae69ef3fe4e1e385720e22486f9"}, 1594 + {file = "tox-3.26.0-py2.py3-none-any.whl", hash = "sha256:bf037662d7c740d15c9924ba23bb3e587df20598697bb985ac2b49bdc2d847f6"}, 1595 + {file = "tox-3.26.0.tar.gz", hash = "sha256:44f3c347c68c2c68799d7d44f1808f9d396fc8a1a500cbc624253375c7ae107e"}, 1596 + ] 1597 + typed-ast = [ 1598 + {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, 1599 + {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, 1600 + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, 1601 + {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"}, 1602 + {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, 1603 + {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, 1604 + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, 1605 + {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"}, 1606 + {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, 1607 + {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, 1608 + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, 1609 + {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"}, 1610 + {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, 1611 + {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, 1612 + {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, 1613 + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, 1614 + {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"}, 1615 + {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, 1616 + {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, 1617 + {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, 1618 + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, 1619 + {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"}, 1620 + {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, 1621 + {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, 1622 + ] 1623 + types-html5lib = [ 1624 + {file = "types-html5lib-1.1.11.tar.gz", hash = "sha256:2b67bbaf3125b840720dc5890f243c3661583a503f0ed33166acf31c67e53717"}, 1625 + {file = "types_html5lib-1.1.11-py3-none-any.whl", hash = "sha256:dda54159be6ef58a67bf10bdd6fe5b4559e55e1df6bb18c47915281a8be0e5fd"}, 1626 + ] 1627 + types-jsonschema = [ 1628 + {file = "types-jsonschema-4.16.1.tar.gz", hash = "sha256:95e31d2b90da218faf3d8fa34fa33ae55fc52c79b2cb7308755cc2d7d71b1096"}, 1629 + {file = "types_jsonschema-4.16.1-py3-none-any.whl", hash = "sha256:21ca9a227185b83655c71755b5834c36d66ca43f9de77c018d61c4f917f851ab"}, 1630 + ] 1631 + types-requests = [ 1632 + {file = "types-requests-2.28.11.2.tar.gz", hash = "sha256:fdcd7bd148139fb8eef72cf4a41ac7273872cad9e6ada14b11ff5dfdeee60ed3"}, 1633 + {file = "types_requests-2.28.11.2-py3-none-any.whl", hash = "sha256:14941f8023a80b16441b3b46caffcbfce5265fd14555844d6029697824b5a2ef"}, 1634 + ] 1635 + types-urllib3 = [ 1636 + {file = "types-urllib3-1.26.25.tar.gz", hash = "sha256:5aef0e663724eef924afa8b320b62ffef2c1736c1fa6caecfc9bc6c8ae2c3def"}, 1637 + {file = "types_urllib3-1.26.25-py3-none-any.whl", hash = "sha256:c1d78cef7bd581e162e46c20a57b2e1aa6ebecdcf01fd0713bb90978ff3e3427"}, 1299 1638 ] 1300 1639 typing-extensions = [ 1301 - {file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"}, 1302 - {file = "typing_extensions-3.10.0.2-py3-none-any.whl", hash = "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34"}, 1303 - {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, 1640 + {file = "typing_extensions-4.4.0-py3-none-any.whl", hash = "sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e"}, 1641 + {file = "typing_extensions-4.4.0.tar.gz", hash = "sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"}, 1304 1642 ] 1305 1643 urllib3 = [ 1306 - {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, 1307 - {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, 1644 + {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"}, 1645 + {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"}, 1308 1646 ] 1309 1647 virtualenv = [ 1310 - {file = "virtualenv-20.15.1-py2.py3-none-any.whl", hash = "sha256:b30aefac647e86af6d82bfc944c556f8f1a9c90427b2fb4e3bfbf338cb82becf"}, 1311 - {file = "virtualenv-20.15.1.tar.gz", hash = "sha256:288171134a2ff3bfb1a2f54f119e77cd1b81c29fc1265a2356f3e8d14c7d58c4"}, 1312 - ] 1313 - wcwidth = [ 1314 - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, 1315 - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, 1648 + {file = "virtualenv-20.16.5-py3-none-any.whl", hash = "sha256:d07dfc5df5e4e0dbc92862350ad87a36ed505b978f6c39609dc489eadd5b0d27"}, 1649 + {file = "virtualenv-20.16.5.tar.gz", hash = "sha256:227ea1b9994fdc5ea31977ba3383ef296d7472ea85be9d6732e42a91c04e80da"}, 1316 1650 ] 1317 1651 webencodings = [ 1318 1652 {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, 1319 1653 {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, 1320 1654 ] 1655 + xattr = [ 1656 + {file = "xattr-0.9.9-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:58a9fb4fd19b467e88f4b75b5243706caa57e312d3aee757b53b57c7fd0f4ba9"}, 1657 + {file = "xattr-0.9.9-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e71efca59705c7abde5b7f76323ebe00ed2977f10cba4204b9421dada036b5ca"}, 1658 + {file = "xattr-0.9.9-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:1aad96b6603961c3d1ca1aaa8369b1a8d684a7b37357b2428087c286bf0e561c"}, 1659 + {file = "xattr-0.9.9-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:46cb74f98d31d9d70f975ec3e6554360a9bdcbb4b9fb50a69fabe54f9f928c97"}, 1660 + {file = "xattr-0.9.9-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:80c2db56058a687d7439be041f916cbeb2943fbe2623e53d5da721a4552d8991"}, 1661 + {file = "xattr-0.9.9-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:c360d1cc42e885b64d84f64de3c501dd7bce576248327ef583b4625ee63aa023"}, 1662 + {file = "xattr-0.9.9-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:debd87afe6bdf88c3689bde52eecf2b166388b13ef7388259d23223374db417d"}, 1663 + {file = "xattr-0.9.9-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:4280c9f33a8678828f1bbc3d3dc8b823b5e4a113ee5ecb0fb98bff60cc2b9ad1"}, 1664 + {file = "xattr-0.9.9-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:e0916ec1656d2071cd3139d1f52426825985d8ed076f981ef7f0bc13dfa8e96c"}, 1665 + {file = "xattr-0.9.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a517916fbf2f58a3222bb2048fe1eeff4e23e07a4ce6228a27de004c80bf53ab"}, 1666 + {file = "xattr-0.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e886c882b3b28c7a684c3e3daf46347da5428a46b88bc6d62c4867d574b90c54"}, 1667 + {file = "xattr-0.9.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:373e3d1fd9258438fc38d1438142d3659f36743f374a20457346ef26741ed441"}, 1668 + {file = "xattr-0.9.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a7beeb54ca140273b2f6320bb98b701ec30628af2ebe4eb30f7051419eb4ef3"}, 1669 + {file = "xattr-0.9.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef3ca29cdaae9c47c625d84bb6c9046f7275cccde0ea805caa23ca58d3671f3f"}, 1670 + {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"}, 1671 + {file = "xattr-0.9.9-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:59c5783ccf57cf2700ce57d51a92134900ed26f6ab20d209f383fb898903fea6"}, 1672 + {file = "xattr-0.9.9-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:966b885b69d95362e2a12d39f84889cf857090e57263b5ac33409498aa00c160"}, 1673 + {file = "xattr-0.9.9-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efaaf0cb1ea8e9febb7baad301ae8cc9ad7a96fdfc5c6399d165e7a19e3e61ce"}, 1674 + {file = "xattr-0.9.9-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f19fa75ed1e9db86354efab29869cb2be6976d456bd7c89e67b118d5384a1d98"}, 1675 + {file = "xattr-0.9.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ca28ad06828244b315214ee35388f57e81e90aac2ceac3f32e42ae394e31b9c"}, 1676 + {file = "xattr-0.9.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:532c7f1656dd2fe937116b9e210229f716d7fc7ac142f9cdace7da92266d32e8"}, 1677 + {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"}, 1678 + {file = "xattr-0.9.9-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:473cabb30e544ea08c8c01c1ef18053147cdc8552d443ac97815e46fbb13c7d4"}, 1679 + {file = "xattr-0.9.9-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:c4a308522b444d090fbd66a385c9519b6b977818226921b0d2fc403667c93564"}, 1680 + {file = "xattr-0.9.9-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:82493434488aca72d88b5129dac8f212e7b8bdca7ceffe7bb977c850f2452e4e"}, 1681 + {file = "xattr-0.9.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e41d289706c7e8940f4d08e865da6a8ae988123e40a44f9a97ddc09e67795d7d"}, 1682 + {file = "xattr-0.9.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef08698e360cf43688dca3db3421b156b29948a714d5d089348073f463c11646"}, 1683 + {file = "xattr-0.9.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4eb10ac16ca8d534c0395425d52121e0c1981f808e1b3f577f6a5ec33d3853e4"}, 1684 + {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"}, 1685 + {file = "xattr-0.9.9-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:974e7d577ddb15e4552fb0ec10a4cfe09bdf6267365aa2b8394bb04637785aad"}, 1686 + {file = "xattr-0.9.9-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ad6777de922c638bfa87a0d7faebc5722ddef04a1210b2a8909289b58b769af0"}, 1687 + {file = "xattr-0.9.9-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3887e70873ebf0efbde32f9929ec1c7e45ec0013561743e2cc0406a91e51113b"}, 1688 + {file = "xattr-0.9.9-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:83caa8e93a45a0f25f91b92d9b45f490c87bff74f02555df6312efeba0dacc31"}, 1689 + {file = "xattr-0.9.9-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e33ec0a1d913d946d1ab7509f37ee37306c45af735347f13b963df34ffe6e029"}, 1690 + {file = "xattr-0.9.9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:263c58dca83372260c5c195e0b59959e38e1f107f0b7350de82e3db38479036c"}, 1691 + {file = "xattr-0.9.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:125dfb9905428162349d3b8b825d9a18280893f0cb0db2a2467d5ef253fa6ce2"}, 1692 + {file = "xattr-0.9.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e243524e0dde16d7a2e1b52512ad2c6964df2143dd1c79b820dcb4c6c0822c20"}, 1693 + {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"}, 1694 + {file = "xattr-0.9.9-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:85c1df5f1d209345ea96de137419e886a27bb55076b3ae01faacf35aafcf3a61"}, 1695 + {file = "xattr-0.9.9-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ca74d3eff92d6dc16e271fbad9cbab547fb9a0c983189c4031c3ff3d150dd871"}, 1696 + {file = "xattr-0.9.9-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7d17505e49ac70c0e71939c5aac96417a863583fb30a2d6304d5ac881230548f"}, 1697 + {file = "xattr-0.9.9-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ae47a6398d3c04623fa386a4aa2f66e5cd3cdb1a7e69d1bfaeb8c73983bf271"}, 1698 + {file = "xattr-0.9.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:809e2537d0aff9fca97dacf3245cbbaf711bbced5d1b0235a8d1906b04e26114"}, 1699 + {file = "xattr-0.9.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de3af84364f06d67b3662ccf7c1a73e1d389d8d274394e952651e7bf1bbd2718"}, 1700 + {file = "xattr-0.9.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b62cdad232d2d2dedd39b543701db8e3883444ec0d57ce3fab8f75e5f8b0301"}, 1701 + {file = "xattr-0.9.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b11d2eda397d47f7075743409683c233519ca52aa1dac109b413a4d8c15b740"}, 1702 + {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"}, 1703 + {file = "xattr-0.9.9-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5db7c2db320a8d5264d437d71f1eb7270a7e4a6545296e7766161d17752590b7"}, 1704 + {file = "xattr-0.9.9-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:83203e60cbaca9536d297e5039b285a600ff84e6e9e8536fe2d521825eeeb437"}, 1705 + {file = "xattr-0.9.9-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:42bfb4e4da06477e739770ac6942edbdc71e9fc3b497b67db5fba712fa8109c2"}, 1706 + {file = "xattr-0.9.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:67047d04d1c56ad4f0f5886085e91b0077238ab3faaec6492c3c21920c6566eb"}, 1707 + {file = "xattr-0.9.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:885782bc82ded1a3f684d54a1af259ae9fcc347fa54b5a05b8aad82b8a42044c"}, 1708 + {file = "xattr-0.9.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bc84ccec618b5aa089e7cee8b07fcc92d4069aac4053da604c8143a0d6b1381"}, 1709 + {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"}, 1710 + {file = "xattr-0.9.9.tar.gz", hash = "sha256:09cb7e1efb3aa1b4991d6be4eb25b73dc518b4fe894f0915f5b0dcede972f346"}, 1711 + ] 1321 1712 zipp = [ 1322 - {file = "zipp-1.2.0-py2.py3-none-any.whl", hash = "sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921"}, 1323 - {file = "zipp-1.2.0.tar.gz", hash = "sha256:c70410551488251b0fee67b460fb9a536af8d6f9f008ad10ac51f615b6a521b1"}, 1713 + {file = "zipp-3.8.1-py3-none-any.whl", hash = "sha256:47c40d7fe183a6f21403a199b3e4192cca5774656965b0a4988ad2f8feb5f009"}, 1714 + {file = "zipp-3.8.1.tar.gz", hash = "sha256:05b45f1ee8f807d0cc928485ca40a07cb491cf092ff587c0df9cb1fd154848d2"}, 1324 1715 ]
+128 -79
pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml
··· 1 1 [tool.poetry] 2 2 name = "poetry" 3 - version = "1.1.14" 3 + version = "1.2.1" 4 4 description = "Python dependency management and packaging made easy." 5 5 authors = [ 6 - "Sébastien Eustace <sebastien@eustace.io>" 6 + "Sébastien Eustace <sebastien@eustace.io>", 7 + ] 8 + maintainers = [ 9 + "Arun Babu Neelicattu <arun.neelicattu@gmail.com>", 10 + "Bjorn Neergaard <bjorn@neersighted.com>", 11 + "Branch Vincent <branchevincent@gmail.com>", 12 + "Bryce Drennan <github@accounts.brycedrennan.com>", 13 + "Daniel Eades <danieleades@hotmail.com>", 14 + "Randy Döring <radoering.poetry@gmail.com>", 15 + "Steph Samson <hello@stephsamson.com>", 16 + "finswimmer <finswimmer77@gmail.com>", 7 17 ] 8 18 license = "MIT" 9 19 10 20 readme = "README.md" 11 21 22 + packages = [ 23 + { include = "poetry", from = "src" } 24 + ] 25 + include = [ 26 + { path = "tests", format = "sdist" } 27 + ] 28 + 12 29 homepage = "https://python-poetry.org/" 13 30 repository = "https://github.com/python-poetry/poetry" 14 31 documentation = "https://python-poetry.org/docs" ··· 20 37 "Topic :: Software Development :: Libraries :: Python Modules" 21 38 ] 22 39 40 + [tool.poetry.build] 41 + generate-setup-file = false 42 + 23 43 # Requirements 24 44 [tool.poetry.dependencies] 25 - python = "^3.5" 45 + python = "^3.7" 26 46 27 - poetry-core = "~1.0.7" 28 - cleo = "^0.8.1" 29 - clikit = "^0.6.2" 30 - crashtest = { version = "^0.3.0", python = "^3.6" } 31 - requests = "^2.18" 47 + poetry-core = "1.2.0" 48 + poetry-plugin-export = "^1.0.7" 49 + "backports.cached-property" = { version = "^1.0.2", python = "<3.8" } 50 + cachecontrol = { version = "^0.12.9", extras = ["filecache"] } 32 51 cachy = "^0.3.0" 33 - requests-toolbelt = "^0.9.1" 34 - cachecontrol = [ 35 - { version = "^0.12.4", extras = ["filecache"], python = "<3.6" }, 36 - { version = "^0.12.9", extras = ["filecache"], python = "^3.6" } 37 - ] 38 - pkginfo = "^1.4" 52 + cleo = "^1.0.0a5" 53 + crashtest = "^0.3.0" 39 54 html5lib = "^1.0" 40 - shellingham = "^1.1" 41 - tomlkit = ">=0.7.0,<1.0.0" 55 + importlib-metadata = { version = "^4.4", python = "<3.10" } 56 + jsonschema = "^4.10.0" 57 + # keyring uses calver, so version is unclamped 58 + keyring = ">=21.2.0" 59 + # packaging uses calver, so version is unclamped 60 + packaging = ">=20.4" 42 61 pexpect = "^4.7.0" 43 - packaging = "^20.4" 44 - virtualenv = { version = "^20.0.26" } 45 - 46 - # The typing module is not in the stdlib in Python 2.7 47 - typing = { version = "^3.6", python = "~2.7" } 48 - 49 - # Use pathlib2 for Python 2.7 50 - pathlib2 = { version = "^2.3", python = "~2.7" } 51 - # Use futures on Python 2.7 52 - futures = { version = "^3.3.0", python = "~2.7" } 53 - # Use glob2 for Python 2.7 and 3.4 54 - glob2 = { version = "^0.6", python = "~2.7" } 55 - # functools32 is needed for Python 2.7 56 - functools32 = { version = "^3.2.3", python = "~2.7" } 57 - keyring = [ 58 - { version = "^18.0.1", python = "~2.7" }, 59 - { version = "^20.0.1", python = "~3.5" }, 60 - { version = ">=21.2.0", python = "^3.6" } 61 - ] 62 - # Use subprocess32 for Python 2.7 63 - subprocess32 = { version = "^3.5", python = "~2.7" } 64 - importlib-metadata = {version = "^1.6.0", python = "<3.8"} 62 + pkginfo = "^1.5" 63 + platformdirs = "^2.5.2" 64 + requests = "^2.18" 65 + requests-toolbelt = "^0.9.1" 66 + shellingham = "^1.5" 67 + # exclude 0.11.2 and 0.11.3 due to https://github.com/sdispater/tomlkit/issues/225 68 + tomlkit = ">=0.11.1,<1.0.0,!=0.11.2,!=0.11.3" 69 + # exclude 20.4.5 - 20.4.6 due to https://github.com/pypa/pip/issues/9953 70 + virtualenv = ">=20.4.3,!=20.4.5,!=20.4.6" 71 + xattr = { version = "^0.9.7", markers = "sys_platform == 'darwin'" } 72 + urllib3 = "^1.26.0" 73 + dulwich = "^0.20.46" 65 74 66 75 [tool.poetry.dev-dependencies] 67 - pytest = [ 68 - {version = "^4.1", python = "<3.5"}, 69 - {version = "^5.4.3", python = "~3.5"}, 70 - {version = "^6.2.5", python = ">=3.6"} 71 - ] 72 - pytest-cov = "^2.5" 73 - pytest-mock = "^1.9" 74 - pre-commit = { version = "^2.6", python = "^3.6.1" } 75 - tox = "^3.0" 76 - pytest-sugar = "^0.9.2" 77 - httpretty = "^1.0.3" 78 - # We need to restrict the version of urllib3 to avoid 79 - # httpretty breaking. This is fixed in httpretty >= 1.0.3 80 - # but it's not compatible with Python 2.7 and 3.5. 81 - urllib3 = "~1.26.9" 76 + tox = "^3.18" 77 + pytest = "^7.1" 78 + pytest-cov = "^3.0" 79 + pytest-mock = "^3.5" 80 + pytest-randomly = "^3.10" 81 + pytest-sugar = "^0.9" 82 + pytest-xdist = { version = "^2.5", extras = ["psutil"] } 83 + pre-commit = "^2.6" 84 + deepdiff = "^5.0" 85 + httpretty = "^1.0" 86 + typing-extensions = { version = "^4.0.0", python = "<3.8" } 87 + zipp = { version = "^3.4", python = "<3.8" } 88 + flatdict = "^4.0.1" 89 + mypy = ">=0.971" 90 + types-html5lib = ">=1.1.9" 91 + types-jsonschema = ">=4.9.0" 92 + types-requests = ">=2.28.8" 82 93 83 94 [tool.poetry.scripts] 84 - poetry = "poetry.console:main" 95 + poetry = "poetry.console.application:main" 85 96 86 97 87 98 [build-system] 88 - requires = ["poetry-core>=1.0.0"] 99 + requires = ["poetry-core>=1.1.0"] 89 100 build-backend = "poetry.core.masonry.api" 90 101 91 102 92 103 [tool.isort] 104 + py_version = 37 93 105 profile = "black" 94 106 force_single_line = true 95 - atomic = true 96 - include_trailing_comma = true 97 - lines_after_imports = 2 107 + combine_as_imports = true 98 108 lines_between_types = 1 99 - use_parentheses = true 100 - src_paths = ["poetry", "tests"] 101 - skip_glob = ["*/setup.py"] 102 - filter_files = true 103 - known_first_party = "poetry" 109 + lines_after_imports = 2 110 + src_paths = ["src", "tests"] 111 + extend_skip = ["setup.py"] 112 + known_third_party = ["poetry.core"] 104 113 105 114 106 115 [tool.black] 107 - line-length = 88 108 - include = '\.pyi?$' 109 - exclude = ''' 110 - /( 111 - \.eggs 112 - | \.git 113 - | \.hg 114 - | \.mypy_cache 115 - | \.tox 116 - | \.venv 117 - | _build 118 - | buck-out 119 - | build 120 - | dist 121 - | tests/.*/setup.py 122 - )/ 116 + target-version = ['py37'] 117 + preview = true 118 + force-exclude = ''' 119 + .*/setup\.py$ 123 120 ''' 121 + 122 + 123 + [tool.mypy] 124 + files = "src" 125 + mypy_path = "src" 126 + namespace_packages = true 127 + explicit_package_bases = true 128 + show_error_codes = true 129 + strict = true 130 + enable_error_code = [ 131 + "ignore-without-code", 132 + "redundant-expr", 133 + "truthy-bool", 134 + ] 135 + 136 + # use of importlib-metadata backport at python3.7 makes it impossible to 137 + # satisfy mypy without some ignores: but we get a different set of ignores at 138 + # different python versions. 139 + # 140 + # <https://github.com/python/mypy/issues/8823>, meanwhile suppress that 141 + # warning. 142 + [[tool.mypy.overrides]] 143 + module = [ 144 + 'poetry.console.commands.self.show.plugins', 145 + 'poetry.installation.executor', 146 + 'poetry.mixology.version_solver', 147 + 'poetry.plugins.plugin_manager', 148 + 'poetry.repositories.installed_repository', 149 + 'poetry.utils.env', 150 + ] 151 + warn_unused_ignores = false 152 + 153 + [[tool.mypy.overrides]] 154 + module = [ 155 + 'cachecontrol.*', 156 + 'cachy.*', 157 + 'cleo.*', 158 + 'crashtest.*', 159 + 'pexpect.*', 160 + 'pkginfo.*', 161 + 'requests_toolbelt.*', 162 + 'shellingham.*', 163 + 'virtualenv.*', 164 + 'xattr.*', 165 + ] 166 + ignore_missing_imports = true 167 + 168 + [tool.coverage.report] 169 + exclude_lines = [ 170 + "pragma: no cover", 171 + "if TYPE_CHECKING:" 172 + ]
+2 -2
pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json
··· 1 1 { 2 2 "owner": "python-poetry", 3 3 "repo": "poetry", 4 - "rev": "1.1.14", 5 - "sha256": "1yx2a1xzid9zclf88wwczz7wgphsgpp3ksmha2jiacq898wrkwcz", 4 + "rev": "1.2.1", 5 + "sha256": "10y2vs28xbg5msr49wvhm3s780v4hb2jpxn7lzdin4l1qkrchdiq", 6 6 "fetchSubmodules": true 7 7 } 8 8
+2
pkgs/development/tools/poetry2nix/poetry2nix/shell-scripts.nix
··· 34 34 dontConfigure = true; 35 35 dontUseSetuptoolsCheck = true; 36 36 37 + format = "poetry2nix"; 38 + 37 39 installPhase = '' 38 40 mkdir -p $out/bin 39 41 ${lib.concatStringsSep "\n" (lib.mapAttrsToList mkScript scripts)}