-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
lock.json
2073 lines (2073 loc) · 96.7 KB
/
lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"allow_builds": true,
"allow_prereleases": false,
"allow_wheels": true,
"build_isolation": true,
"constraints": [],
"locked_resolves": [
{
"locked_requirements": [
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92",
"url": "https://files.pythonhosted.org/packages/32/34/d4e1c02d3bee589efb5dfa17f88ea08bdb3e3eac12bc475462aec52ed223/alabaster-0.7.16-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65",
"url": "https://files.pythonhosted.org/packages/c9/3e/13dd8e5ed9094e734ac430b5d0eb4f2bb001708a8b7856cbf8e084e001ba/alabaster-0.7.16.tar.gz"
}
],
"project_name": "alabaster",
"requires_dists": [],
"requires_python": ">=3.9",
"version": "0.7.16"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7",
"url": "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94",
"url": "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz"
}
],
"project_name": "anyio",
"requires_dists": [
"Sphinx>=7; extra == \"doc\"",
"anyio[trio]; extra == \"test\"",
"coverage[toml]>=7; extra == \"test\"",
"exceptiongroup>=1.0.2; python_version < \"3.11\"",
"exceptiongroup>=1.2.0; extra == \"test\"",
"hypothesis>=4.0; extra == \"test\"",
"idna>=2.8",
"packaging; extra == \"doc\"",
"psutil>=5.9; extra == \"test\"",
"pytest-mock>=3.6.1; extra == \"test\"",
"pytest>=7.0; extra == \"test\"",
"sniffio>=1.1",
"sphinx-autodoc-typehints>=1.2.0; extra == \"doc\"",
"sphinx-rtd-theme; extra == \"doc\"",
"trio>=0.23; extra == \"trio\"",
"trustme; extra == \"test\"",
"typing-extensions>=4.1; python_version < \"3.11\"",
"uvloop>=0.17; (platform_python_implementation == \"CPython\" and platform_system != \"Windows\") and extra == \"test\""
],
"requires_python": ">=3.8",
"version": "4.4.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128",
"url": "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41",
"url": "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz"
}
],
"project_name": "appdirs",
"requires_dists": [],
"requires_python": null,
"version": "1.4.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "69a79e083a716173e5532e0fa3bef45f793f4e61096cf52b5a42c0211c8b8aa5",
"url": "https://files.pythonhosted.org/packages/0b/29/cba741f3abc1700dda883c4a1dd83f4ae89e4e8654067929d89143df2c58/argcomplete-3.4.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "c2abcdfe1be8ace47ba777d4fce319eb13bf8ad9dace8d085dcad6eded88057f",
"url": "https://files.pythonhosted.org/packages/db/ca/45176b8362eb06b68f946c2bf1184b92fc98d739a3f8c790999a257db91f/argcomplete-3.4.0.tar.gz"
}
],
"project_name": "argcomplete",
"requires_dists": [
"coverage; extra == \"test\"",
"mypy; extra == \"test\"",
"pexpect; extra == \"test\"",
"ruff; extra == \"test\"",
"wheel; extra == \"test\""
],
"requires_python": ">=3.8",
"version": "3.4.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "3ae7495db9084b7b32818b4140e6dc4fc280b712fb414f5b8fe57b0a8e85a840",
"url": "https://files.pythonhosted.org/packages/a2/ee/3fd29bf416eb4f1c5579cf12bf393ae954099258abd7bde03c4f9716ef6b/autoflake-2.3.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "c98b75dc5b0a86459c4f01a1d32ac7eb4338ec4317a4469515ff1e687ecd909e",
"url": "https://files.pythonhosted.org/packages/2a/cb/486f912d6171bc5748c311a2984a301f4e2d054833a1da78485866c71522/autoflake-2.3.1.tar.gz"
}
],
"project_name": "autoflake",
"requires_dists": [
"pyflakes>=3.0.0",
"tomli>=2.0.1; python_version < \"3.11\""
],
"requires_python": ">=3.8",
"version": "2.3.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb",
"url": "https://files.pythonhosted.org/packages/27/45/377f7e32a5c93d94cd56542349b34efab5ca3f9e2fd5a68c5e93169aa32d/Babel-2.15.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413",
"url": "https://files.pythonhosted.org/packages/15/d2/9671b93d623300f0aef82cde40e25357f11330bdde91743891b22a555bed/babel-2.15.0.tar.gz"
}
],
"project_name": "babel",
"requires_dists": [
"freezegun~=1.0; extra == \"dev\"",
"pytest-cov; extra == \"dev\"",
"pytest>=6.0; extra == \"dev\"",
"pytz>=2015.7; python_version < \"3.9\""
],
"requires_python": ">=3.8",
"version": "2.15.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed",
"url": "https://files.pythonhosted.org/packages/b1/fe/e8c672695b37eecc5cbf43e1d0638d88d66ba3a44c4d321c796f4e59167f/beautifulsoup4-4.12.3-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051",
"url": "https://files.pythonhosted.org/packages/b3/ca/824b1195773ce6166d388573fc106ce56d4a805bd7427b624e063596ec58/beautifulsoup4-4.12.3.tar.gz"
}
],
"project_name": "beautifulsoup4",
"requires_dists": [
"cchardet; extra == \"cchardet\"",
"chardet; extra == \"chardet\"",
"charset-normalizer; extra == \"charset-normalizer\"",
"html5lib; extra == \"html5lib\"",
"lxml; extra == \"lxml\"",
"soupsieve>1.2"
],
"requires_python": ">=3.6.0",
"version": "4.12.3"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c",
"url": "https://files.pythonhosted.org/packages/0f/89/294c9a6b6c75a08da55e9d05321d0707e9418735e3062b12ef0f54c33474/black-24.4.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc",
"url": "https://files.pythonhosted.org/packages/25/6d/eb15a1b155f755f43766cc473618c6e1de6555d6a1764965643f486dcf01/black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0",
"url": "https://files.pythonhosted.org/packages/43/24/942b22571b0171be7c6f701cdc3e3b7221f5b522ef02cf82503a547a657b/black-24.4.2-cp312-cp312-win_amd64.whl"
},
{
"algorithm": "sha256",
"hash": "c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d",
"url": "https://files.pythonhosted.org/packages/a2/47/c9997eb470a7f48f7aaddd3d9a828244a2e4199569e38128715c48059ac1/black-24.4.2.tar.gz"
},
{
"algorithm": "sha256",
"hash": "88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04",
"url": "https://files.pythonhosted.org/packages/be/b8/9c152301774fa62a265b035a8ede4d6280827904ea1af8c3be10a28d3187/black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl"
},
{
"algorithm": "sha256",
"hash": "accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d",
"url": "https://files.pythonhosted.org/packages/f4/75/3a29de3bda4006cc280d833b5d961cf7df3810a21f49e7a63a7e551fb351/black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl"
}
],
"project_name": "black",
"requires_dists": [
"aiohttp!=3.9.0,>=3.7.4; (sys_platform == \"win32\" and implementation_name == \"pypy\") and extra == \"d\"",
"aiohttp>=3.7.4; (sys_platform != \"win32\" or implementation_name != \"pypy\") and extra == \"d\"",
"click>=8.0.0",
"colorama>=0.4.3; extra == \"colorama\"",
"ipython>=7.8.0; extra == \"jupyter\"",
"mypy-extensions>=0.4.3",
"packaging>=22.0",
"pathspec>=0.9.0",
"platformdirs>=2",
"tokenize-rt>=3.2.0; extra == \"jupyter\"",
"tomli>=1.1.0; python_version < \"3.11\"",
"typing-extensions>=4.0.1; python_version < \"3.11\"",
"uvloop>=0.15.2; extra == \"uvloop\""
],
"requires_python": ">=3.8",
"version": "24.4.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90",
"url": "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b",
"url": "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz"
}
],
"project_name": "certifi",
"requires_dists": [],
"requires_python": ">=3.6",
"version": "2024.7.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc",
"url": "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143",
"url": "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl"
},
{
"algorithm": "sha256",
"hash": "ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b",
"url": "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6",
"url": "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl"
},
{
"algorithm": "sha256",
"hash": "7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26",
"url": "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4",
"url": "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5",
"url": "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz"
},
{
"algorithm": "sha256",
"hash": "8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa",
"url": "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl"
},
{
"algorithm": "sha256",
"hash": "8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d",
"url": "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl"
},
{
"algorithm": "sha256",
"hash": "a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389",
"url": "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a",
"url": "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068",
"url": "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001",
"url": "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl"
},
{
"algorithm": "sha256",
"hash": "0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8",
"url": "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl"
},
{
"algorithm": "sha256",
"hash": "6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed",
"url": "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl"
},
{
"algorithm": "sha256",
"hash": "d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7",
"url": "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl"
},
{
"algorithm": "sha256",
"hash": "90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b",
"url": "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
}
],
"project_name": "charset-normalizer",
"requires_dists": [],
"requires_python": ">=3.7.0",
"version": "3.3.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28",
"url": "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de",
"url": "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz"
}
],
"project_name": "click",
"requires_dists": [
"colorama; platform_system == \"Windows\"",
"importlib-metadata; python_version < \"3.8\""
],
"requires_python": ">=3.7",
"version": "8.1.7"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "5c4bb6007cfea5f2fd6583a2fb6701a22a41eb98957e63d0fac41c10e7c3117c",
"url": "https://files.pythonhosted.org/packages/1b/5b/974430b5ffdb7a4f1941d13d83c64a0395114503cc357c6b9ae4ce5047ed/click_didyoumean-0.3.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "4f82fdff0dbe64ef8ab2279bd6aa3f6a99c3b28c05aa09cbfc07c9d7fbb5a463",
"url": "https://files.pythonhosted.org/packages/30/ce/217289b77c590ea1e7c24242d9ddd6e249e52c795ff10fac2c50062c48cb/click_didyoumean-0.3.1.tar.gz"
}
],
"project_name": "click-didyoumean",
"requires_dists": [
"click>=7"
],
"requires_python": ">=3.6.2",
"version": "0.3.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "a43e394b528d52112af599f2fc9e4b7cf3c15f94e53581f74fa6867e68c91756",
"url": "https://files.pythonhosted.org/packages/ae/5a/4f025bc751087833686892e17e7564828e409c43b632878afeae554870cd/click_log-0.4.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "3970f8570ac54491237bcdb3d8ab5e3eef6c057df29f8c3d1151a51a9c23b975",
"url": "https://files.pythonhosted.org/packages/32/32/228be4f971e4bd556c33d52a22682bfe318ffe57a1ddb7a546f347a90260/click-log-0.4.0.tar.gz"
}
],
"project_name": "click-log",
"requires_dists": [
"click"
],
"requires_python": null,
"version": "0.4.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6",
"url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44",
"url": "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz"
}
],
"project_name": "colorama",
"requires_dists": [],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7",
"version": "0.4.6"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "4dcbb62368e2800cb3c5abd348da7e53f6c362dda502ec27c560b2e58a66bd33",
"url": "https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "3e3e079a41feb5a1b64f978b5ea4f46040a94f11f0e8bbb8261e3dbbeca64d44",
"url": "https://files.pythonhosted.org/packages/db/38/2992ff192eaa7dd5a793f8b6570d6bbe887c4fbbf7e72702eb0a693a01c8/colorlog-6.8.2.tar.gz"
}
],
"project_name": "colorlog",
"requires_dists": [
"black; extra == \"development\"",
"colorama; sys_platform == \"win32\"",
"flake8; extra == \"development\"",
"mypy; extra == \"development\"",
"pytest; extra == \"development\"",
"types-colorama; extra == \"development\""
],
"requires_python": ">=3.6",
"version": "6.8.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784",
"url": "https://files.pythonhosted.org/packages/8e/41/9307e4f5f9976bc8b7fea0b66367734e8faf3ec84bc0d412d8cfabbb66cd/distlib-0.3.8-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64",
"url": "https://files.pythonhosted.org/packages/c4/91/e2df406fb4efacdf46871c25cde65d3c6ee5e173b7e5a4547a47bae91920/distlib-0.3.8.tar.gz"
}
],
"project_name": "distlib",
"requires_dists": [],
"requires_python": null,
"version": "0.3.8"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2",
"url": "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f",
"url": "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz"
}
],
"project_name": "docutils",
"requires_dists": [],
"requires_python": ">=3.9",
"version": "0.21.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc",
"url": "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3",
"url": "https://files.pythonhosted.org/packages/bb/ff/b4c0dc78fbe20c3e59c0c7334de0c27eb4001a2b2017999af398bf730817/execnet-2.1.1.tar.gz"
}
],
"project_name": "execnet",
"requires_dists": [
"hatch; extra == \"testing\"",
"pre-commit; extra == \"testing\"",
"pytest; extra == \"testing\"",
"tox; extra == \"testing\""
],
"requires_python": ">=3.8",
"version": "2.1.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7",
"url": "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb",
"url": "https://files.pythonhosted.org/packages/08/dd/49e06f09b6645156550fb9aee9cc1e59aba7efbc972d665a1bd6ae0435d4/filelock-3.15.4.tar.gz"
}
],
"project_name": "filelock",
"requires_dists": [
"covdefaults>=2.3; extra == \"testing\"",
"coverage>=7.3.2; extra == \"testing\"",
"diff-cover>=8.0.1; extra == \"testing\"",
"furo>=2023.9.10; extra == \"docs\"",
"pytest-asyncio>=0.21; extra == \"testing\"",
"pytest-cov>=4.1; extra == \"testing\"",
"pytest-mock>=3.12; extra == \"testing\"",
"pytest-timeout>=2.2; extra == \"testing\"",
"pytest>=7.4.3; extra == \"testing\"",
"sphinx-autodoc-typehints!=1.23.4,>=1.25.2; extra == \"docs\"",
"sphinx>=7.2.6; extra == \"docs\"",
"typing-extensions>=4.8; python_version < \"3.11\" and extra == \"typing\"",
"virtualenv>=20.26.2; extra == \"testing\""
],
"requires_python": ">=3.8",
"version": "3.15.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761",
"url": "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d",
"url": "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz"
}
],
"project_name": "h11",
"requires_dists": [
"typing-extensions; python_version < \"3.8\""
],
"requires_python": ">=3.7",
"version": "0.14.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5",
"url": "https://files.pythonhosted.org/packages/78/d4/e5d7e4f2174f8a4d63c8897d79eb8fe2503f7ecc03282fee1fa2719c2704/httpcore-1.0.5-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61",
"url": "https://files.pythonhosted.org/packages/17/b0/5e8b8674f8d203335a62fdfcfa0d11ebe09e23613c3391033cbba35f7926/httpcore-1.0.5.tar.gz"
}
],
"project_name": "httpcore",
"requires_dists": [
"anyio<5.0,>=4.0; extra == \"asyncio\"",
"certifi",
"h11<0.15,>=0.13",
"h2<5,>=3; extra == \"http2\"",
"socksio==1.*; extra == \"socks\"",
"trio<0.26.0,>=0.22.0; extra == \"trio\""
],
"requires_python": ">=3.8",
"version": "1.0.5"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5",
"url": "https://files.pythonhosted.org/packages/41/7b/ddacf6dcebb42466abd03f368782142baa82e08fc0c1f8eaa05b4bae87d5/httpx-0.27.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5",
"url": "https://files.pythonhosted.org/packages/5c/2d/3da5bdf4408b8b2800061c339f240c1802f2e82d55e50bd39c5a881f47f0/httpx-0.27.0.tar.gz"
}
],
"project_name": "httpx",
"requires_dists": [
"anyio",
"brotli; platform_python_implementation == \"CPython\" and extra == \"brotli\"",
"brotlicffi; platform_python_implementation != \"CPython\" and extra == \"brotli\"",
"certifi",
"click==8.*; extra == \"cli\"",
"h2<5,>=3; extra == \"http2\"",
"httpcore==1.*",
"idna",
"pygments==2.*; extra == \"cli\"",
"rich<14,>=10; extra == \"cli\"",
"sniffio",
"socksio==1.*; extra == \"socks\""
],
"requires_python": ">=3.8",
"version": "0.27.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0",
"url": "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc",
"url": "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz"
}
],
"project_name": "idna",
"requires_dists": [],
"requires_python": ">=3.5",
"version": "3.7"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b",
"url": "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a",
"url": "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz"
}
],
"project_name": "imagesize",
"requires_dists": [],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"version": "1.4.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374",
"url": "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3",
"url": "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz"
}
],
"project_name": "iniconfig",
"requires_dists": [],
"requires_python": ">=3.7",
"version": "2.0.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6",
"url": "https://files.pythonhosted.org/packages/d1/b3/8def84f539e7d2289a02f0524b944b15d7c75dab7628bedf1c4f0992029c/isort-5.13.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109",
"url": "https://files.pythonhosted.org/packages/87/f9/c1eb8635a24e87ade2efce21e3ce8cd6b8630bb685ddc9cdaca1349b2eb5/isort-5.13.2.tar.gz"
}
],
"project_name": "isort",
"requires_dists": [
"colorama>=0.4.6; extra == \"colors\""
],
"requires_python": ">=3.8.0",
"version": "5.13.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d",
"url": "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369",
"url": "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz"
}
],
"project_name": "jinja2",
"requires_dists": [
"Babel>=2.7; extra == \"i18n\"",
"MarkupSafe>=2.0"
],
"requires_python": ">=3.7",
"version": "3.1.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6bcbc417b0ac14323382aef5c5192c0075bf8a9d6b41820a2b66371eac6b6d79",
"url": "https://files.pythonhosted.org/packages/04/1e/b832de447dee8b582cac175871d2f6c3d5077cc56d5575cadba1fd1cccfa/linkify_it_py-2.0.3-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "68cda27e162e9215c17d786649d1da0021a451bdc436ef9e0fa0ba5234b9b048",
"url": "https://files.pythonhosted.org/packages/2a/ae/bb56c6828e4797ba5a4821eec7c43b8bf40f69cda4d4f5f8c8a2810ec96a/linkify-it-py-2.0.3.tar.gz"
}
],
"project_name": "linkify-it-py",
"requires_dists": [
"black; extra == \"dev\"",
"coverage; extra == \"test\"",
"flake8; extra == \"dev\"",
"isort; extra == \"dev\"",
"myst-parser; extra == \"doc\"",
"pre-commit; extra == \"dev\"",
"pyproject-flake8; extra == \"dev\"",
"pytest-benchmark; extra == \"benchmark\"",
"pytest-cov; extra == \"test\"",
"pytest; extra == \"benchmark\"",
"pytest; extra == \"test\"",
"sphinx-book-theme; extra == \"doc\"",
"sphinx; extra == \"doc\"",
"uc-micro-py"
],
"requires_python": ">=3.7",
"version": "2.0.3"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1",
"url": "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb",
"url": "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz"
}
],
"project_name": "markdown-it-py",
"requires_dists": [
"commonmark~=0.9; extra == \"compare\"",
"coverage; extra == \"testing\"",
"gprof2dot; extra == \"profiling\"",
"jupyter_sphinx; extra == \"rtd\"",
"linkify-it-py<3,>=1; extra == \"linkify\"",
"markdown~=3.4; extra == \"compare\"",
"mdit-py-plugins; extra == \"plugins\"",
"mdit-py-plugins; extra == \"rtd\"",
"mdurl~=0.1",
"mistletoe~=1.0; extra == \"compare\"",
"mistune~=2.0; extra == \"compare\"",
"myst-parser; extra == \"rtd\"",
"panflute~=2.3; extra == \"compare\"",
"pre-commit~=3.0; extra == \"code-style\"",
"psutil; extra == \"benchmarking\"",
"pytest-benchmark; extra == \"benchmarking\"",
"pytest-cov; extra == \"testing\"",
"pytest-regressions; extra == \"testing\"",
"pytest; extra == \"benchmarking\"",
"pytest; extra == \"testing\"",
"pyyaml; extra == \"rtd\"",
"sphinx-copybutton; extra == \"rtd\"",
"sphinx-design; extra == \"rtd\"",
"sphinx; extra == \"rtd\"",
"sphinx_book_theme; extra == \"rtd\""
],
"requires_python": ">=3.8",
"version": "3.0.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb",
"url": "https://files.pythonhosted.org/packages/3f/14/c3554d512d5f9100a95e737502f4a2323a1959f6d0d01e0d0997b35f7b10/MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl"
},
{
"algorithm": "sha256",
"hash": "f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5",
"url": "https://files.pythonhosted.org/packages/0a/0d/2454f072fae3b5a137c119abf15465d1771319dfe9e4acbb31722a0fff91/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b",
"url": "https://files.pythonhosted.org/packages/2d/75/fd6cb2e68780f72d47e6671840ca517bda5ef663d30ada7616b0462ad1e3/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl"
},
{
"algorithm": "sha256",
"hash": "3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4",
"url": "https://files.pythonhosted.org/packages/48/d6/e7cd795fc710292c3af3a06d80868ce4b02bfbbf370b7cee11d282815a2a/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee",
"url": "https://files.pythonhosted.org/packages/51/b5/5d8ec796e2a08fc814a2c7d2584b55f889a55cf17dd1a90f2beb70744e5c/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1",
"url": "https://files.pythonhosted.org/packages/53/bd/583bf3e4c8d6a321938c13f49d44024dbe5ed63e0a7ba127e454a66da974/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl"
},
{
"algorithm": "sha256",
"hash": "d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b",
"url": "https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz"
},
{
"algorithm": "sha256",
"hash": "58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169",
"url": "https://files.pythonhosted.org/packages/88/07/2dc76aa51b481eb96a4c3198894f38b480490e834479611a4053fbf08623/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f",
"url": "https://files.pythonhosted.org/packages/8b/ff/9a52b71839d7a256b563e85d11050e307121000dcebc97df120176b3ad93/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl"
},
{
"algorithm": "sha256",
"hash": "8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad",
"url": "https://files.pythonhosted.org/packages/96/0c/620c1fb3661858c0e37eb3cbffd8c6f732a67cd97296f725789679801b31/MarkupSafe-2.1.5-cp312-cp312-win32.whl"
},
{
"algorithm": "sha256",
"hash": "d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a",
"url": "https://files.pythonhosted.org/packages/b0/81/147c477391c2750e8fc7705829f7351cf1cd3be64406edcf900dc633feb2/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl"
}
],
"project_name": "markupsafe",
"requires_dists": [],
"requires_python": ">=3.7",
"version": "2.1.5"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "1020dfe4e6bfc2c79fb49ae4e3f5b297f5ccd20f010187acc52af2921e27dc6a",
"url": "https://files.pythonhosted.org/packages/ef/f7/8a4dcea720a581e69ac8c5a38524baf0e3e2bb5f3819a9ff661464fe7d10/mdit_py_plugins-0.4.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "834b8ac23d1cd60cec703646ffd22ae97b7955a6d596eb1d304be1e251ae499c",
"url": "https://files.pythonhosted.org/packages/00/6c/79c52651b22b64dba5c7bbabd7a294cc410bfb2353250dc8ade44d7d8ad8/mdit_py_plugins-0.4.1.tar.gz"
}
],
"project_name": "mdit-py-plugins",
"requires_dists": [
"coverage; extra == \"testing\"",
"markdown-it-py<4.0.0,>=1.0.0",
"myst-parser; extra == \"rtd\"",
"pre-commit; extra == \"code-style\"",
"pytest-cov; extra == \"testing\"",
"pytest-regressions; extra == \"testing\"",
"pytest; extra == \"testing\"",
"sphinx-book-theme; extra == \"rtd\""
],
"requires_python": ">=3.8",
"version": "0.4.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8",
"url": "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba",
"url": "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz"
}
],
"project_name": "mdurl",
"requires_dists": [],
"requires_python": ">=3.7",
"version": "0.1.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0624bdb940255d2dd24e829d99a13cfeb72e4e9031f9492148f410ed30bcab54",
"url": "https://files.pythonhosted.org/packages/f8/d4/4960d0df55f30a7625d9c3c9414dfd42f779caabae137ef73ffaed0c97b9/mypy-1.11.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "b868d3bcff720dd7217c383474008ddabaf048fad8d78ed948bb4b624870a417",
"url": "https://files.pythonhosted.org/packages/1c/21/a6b46c91b4c9d1918ee59c305f46850cde7cbea748635a352e7c3c8ed204/mypy-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "64f4a90e3ea07f590c5bcf9029035cf0efeae5ba8be511a8caada1a4893f5525",
"url": "https://files.pythonhosted.org/packages/1e/b7/3a50f318979c8c541428c2f1ee973cda813bcc89614de982dafdd0df2b3e/mypy-1.11.1-cp312-cp312-win_amd64.whl"
},
{
"algorithm": "sha256",
"hash": "f39918a50f74dc5969807dcfaecafa804fa7f90c9d60506835036cc1bc891dc8",
"url": "https://files.pythonhosted.org/packages/3a/34/69638cee2e87303f19a0c35e80d42757e14d9aba328f272fdcdc0bf3c9b8/mypy-1.11.1-cp312-cp312-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "f404a0b069709f18bbdb702eb3dcfe51910602995de00bd39cea3050b5772d08",
"url": "https://files.pythonhosted.org/packages/b6/9c/a4b3bda53823439cf395db8ecdda6229a83f9bf201714a68a15190bb2919/mypy-1.11.1.tar.gz"
},
{
"algorithm": "sha256",
"hash": "0bc71d1fb27a428139dd78621953effe0d208aed9857cb08d002280b0422003a",
"url": "https://files.pythonhosted.org/packages/c4/3c/3e0611348fc53a4a7c80485959478b4f6eae706baf3b7c03cafa22639216/mypy-1.11.1-cp312-cp312-macosx_11_0_arm64.whl"
},
{
"algorithm": "sha256",
"hash": "a707ec1527ffcdd1c784d0924bf5cb15cd7f22683b919668a04d2b9c34549d2e",
"url": "https://files.pythonhosted.org/packages/c4/55/07904d4c8f408e70308015edcbff067eaa77514475938a9dd81b063de2a8/mypy-1.11.1-cp312-cp312-musllinux_1_1_x86_64.whl"
}
],
"project_name": "mypy",
"requires_dists": [
"lxml; extra == \"reports\"",
"mypy-extensions>=1.0.0",
"pip; extra == \"install-types\"",
"psutil>=4.0; extra == \"dmypy\"",
"setuptools>=50; extra == \"mypyc\"",
"tomli>=1.1.0; python_version < \"3.11\"",
"typing-extensions>=4.6.0"
],
"requires_python": ">=3.8",
"version": "1.11.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d",
"url": "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782",
"url": "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz"
}
],
"project_name": "mypy-extensions",
"requires_dists": [],
"requires_python": ">=3.5",
"version": "1.0.0"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6457aaa33a5d474aca678b8ead9b3dc298e89c68e67012e73146ea6fd54babf1",
"url": "https://files.pythonhosted.org/packages/e2/de/21aa8394f16add8f7427f0a1326ccd2b3a2a8a3245c9252bc5ac034c6155/myst_parser-3.0.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "88f0cb406cb363b077d176b51c476f62d60604d68a8dcdf4832e080441301a87",
"url": "https://files.pythonhosted.org/packages/49/64/e2f13dac02f599980798c01156393b781aec983b52a6e4057ee58f07c43a/myst_parser-3.0.1.tar.gz"
}
],
"project_name": "myst-parser",
"requires_dists": [
"beautifulsoup4; extra == \"testing\"",
"coverage[toml]; extra == \"testing\"",
"defusedxml; extra == \"testing\"",
"docutils<0.22,>=0.18",
"ipython; extra == \"rtd\"",
"jinja2",
"linkify-it-py~=2.0; extra == \"linkify\"",
"markdown-it-py~=3.0",
"mdit-py-plugins~=0.4",
"pre-commit~=3.0; extra == \"code-style\"",
"pygments; extra == \"testing-docutils\"",
"pytest-cov; extra == \"testing\"",
"pytest-param-files~=0.6.0; extra == \"testing\"",
"pytest-param-files~=0.6.0; extra == \"testing-docutils\"",
"pytest-regressions; extra == \"testing\"",
"pytest<9,>=8; extra == \"testing\"",
"pytest<9,>=8; extra == \"testing-docutils\"",
"pyyaml",
"sphinx-autodoc2~=0.5.0; extra == \"rtd\"",
"sphinx-book-theme~=1.1; extra == \"rtd\"",
"sphinx-copybutton; extra == \"rtd\"",
"sphinx-design; extra == \"rtd\"",
"sphinx-pyscript; extra == \"rtd\"",
"sphinx-pytest; extra == \"testing\"",
"sphinx-tippy>=0.4.3; extra == \"rtd\"",
"sphinx-togglebutton; extra == \"rtd\"",
"sphinx<8,>=6",