This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoetry.lock
1094 lines (1019 loc) · 70.1 KB
/
poetry.lock
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
[[package]]
name = "atomicwrites"
version = "1.4.0"
description = "Atomic file writes."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "attrs"
version = "21.2.0"
description = "Classes Without Boilerplate"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[package.extras]
dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit"]
docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"]
tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"]
[[package]]
name = "black"
version = "21.11b1"
description = "The uncompromising code formatter."
category = "dev"
optional = false
python-versions = ">=3.6.2"
[package.dependencies]
click = ">=7.1.2"
mypy-extensions = ">=0.4.3"
pathspec = ">=0.9.0,<1"
platformdirs = ">=2"
regex = ">=2021.4.4"
tomli = ">=0.2.6,<2.0.0"
typing-extensions = [
{version = ">=3.10.0.0", markers = "python_version < \"3.10\""},
{version = "!=3.10.0.1", markers = "python_version >= \"3.10\""},
]
[package.extras]
colorama = ["colorama (>=0.4.3)"]
d = ["aiohttp (>=3.7.4)"]
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
python2 = ["typed-ast (>=1.4.3)"]
uvloop = ["uvloop (>=0.15.2)"]
[[package]]
name = "boto3"
version = "1.20.12"
description = "The AWS SDK for Python"
category = "main"
optional = false
python-versions = ">= 3.6"
[package.dependencies]
botocore = ">=1.23.12,<1.24.0"
jmespath = ">=0.7.1,<1.0.0"
s3transfer = ">=0.5.0,<0.6.0"
[package.extras]
crt = ["botocore[crt] (>=1.21.0,<2.0a0)"]
[[package]]
name = "boto3-stubs"
version = "1.20.12"
description = "Type annotations for boto3 1.20.12, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
botocore-stubs = "*"
mypy-boto3-cloudformation = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
mypy-boto3-dynamodb = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
mypy-boto3-ec2 = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
mypy-boto3-lambda = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
mypy-boto3-rds = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
mypy-boto3-s3 = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
mypy-boto3-sns = {version = ">=1.20.0", optional = true, markers = "extra == \"sns\""}
mypy-boto3-sqs = {version = ">=1.20.0", optional = true, markers = "extra == \"essential\""}
[package.extras]
accessanalyzer = ["mypy-boto3-accessanalyzer (>=1.20.0)"]
account = ["mypy-boto3-account (>=1.20.0)"]
acm = ["mypy-boto3-acm (>=1.20.0)"]
acm-pca = ["mypy-boto3-acm-pca (>=1.20.0)"]
alexaforbusiness = ["mypy-boto3-alexaforbusiness (>=1.20.0)"]
all = ["mypy-boto3-accessanalyzer (>=1.20.0)", "mypy-boto3-account (>=1.20.0)", "mypy-boto3-acm (>=1.20.0)", "mypy-boto3-acm-pca (>=1.20.0)", "mypy-boto3-alexaforbusiness (>=1.20.0)", "mypy-boto3-amp (>=1.20.0)", "mypy-boto3-amplify (>=1.20.0)", "mypy-boto3-amplifybackend (>=1.20.0)", "mypy-boto3-apigateway (>=1.20.0)", "mypy-boto3-apigatewaymanagementapi (>=1.20.0)", "mypy-boto3-apigatewayv2 (>=1.20.0)", "mypy-boto3-appconfig (>=1.20.0)", "mypy-boto3-appconfigdata (>=1.20.0)", "mypy-boto3-appflow (>=1.20.0)", "mypy-boto3-appintegrations (>=1.20.0)", "mypy-boto3-application-autoscaling (>=1.20.0)", "mypy-boto3-application-insights (>=1.20.0)", "mypy-boto3-applicationcostprofiler (>=1.20.0)", "mypy-boto3-appmesh (>=1.20.0)", "mypy-boto3-apprunner (>=1.20.0)", "mypy-boto3-appstream (>=1.20.0)", "mypy-boto3-appsync (>=1.20.0)", "mypy-boto3-athena (>=1.20.0)", "mypy-boto3-auditmanager (>=1.20.0)", "mypy-boto3-autoscaling (>=1.20.0)", "mypy-boto3-autoscaling-plans (>=1.20.0)", "mypy-boto3-backup (>=1.20.0)", "mypy-boto3-batch (>=1.20.0)", "mypy-boto3-braket (>=1.20.0)", "mypy-boto3-budgets (>=1.20.0)", "mypy-boto3-ce (>=1.20.0)", "mypy-boto3-chime (>=1.20.0)", "mypy-boto3-chime-sdk-identity (>=1.20.0)", "mypy-boto3-chime-sdk-meetings (>=1.20.0)", "mypy-boto3-chime-sdk-messaging (>=1.20.0)", "mypy-boto3-cloud9 (>=1.20.0)", "mypy-boto3-cloudcontrol (>=1.20.0)", "mypy-boto3-clouddirectory (>=1.20.0)", "mypy-boto3-cloudformation (>=1.20.0)", "mypy-boto3-cloudfront (>=1.20.0)", "mypy-boto3-cloudhsm (>=1.20.0)", "mypy-boto3-cloudhsmv2 (>=1.20.0)", "mypy-boto3-cloudsearch (>=1.20.0)", "mypy-boto3-cloudsearchdomain (>=1.20.0)", "mypy-boto3-cloudtrail (>=1.20.0)", "mypy-boto3-cloudwatch (>=1.20.0)", "mypy-boto3-codeartifact (>=1.20.0)", "mypy-boto3-codebuild (>=1.20.0)", "mypy-boto3-codecommit (>=1.20.0)", "mypy-boto3-codedeploy (>=1.20.0)", "mypy-boto3-codeguru-reviewer (>=1.20.0)", "mypy-boto3-codeguruprofiler (>=1.20.0)", "mypy-boto3-codepipeline (>=1.20.0)", "mypy-boto3-codestar (>=1.20.0)", "mypy-boto3-codestar-connections (>=1.20.0)", "mypy-boto3-codestar-notifications (>=1.20.0)", "mypy-boto3-cognito-identity (>=1.20.0)", "mypy-boto3-cognito-idp (>=1.20.0)", "mypy-boto3-cognito-sync (>=1.20.0)", "mypy-boto3-comprehend (>=1.20.0)", "mypy-boto3-comprehendmedical (>=1.20.0)", "mypy-boto3-compute-optimizer (>=1.20.0)", "mypy-boto3-config (>=1.20.0)", "mypy-boto3-connect (>=1.20.0)", "mypy-boto3-connect-contact-lens (>=1.20.0)", "mypy-boto3-connectparticipant (>=1.20.0)", "mypy-boto3-cur (>=1.20.0)", "mypy-boto3-customer-profiles (>=1.20.0)", "mypy-boto3-databrew (>=1.20.0)", "mypy-boto3-dataexchange (>=1.20.0)", "mypy-boto3-datapipeline (>=1.20.0)", "mypy-boto3-datasync (>=1.20.0)", "mypy-boto3-dax (>=1.20.0)", "mypy-boto3-detective (>=1.20.0)", "mypy-boto3-devicefarm (>=1.20.0)", "mypy-boto3-devops-guru (>=1.20.0)", "mypy-boto3-directconnect (>=1.20.0)", "mypy-boto3-discovery (>=1.20.0)", "mypy-boto3-dlm (>=1.20.0)", "mypy-boto3-dms (>=1.20.0)", "mypy-boto3-docdb (>=1.20.0)", "mypy-boto3-drs (>=1.20.0)", "mypy-boto3-ds (>=1.20.0)", "mypy-boto3-dynamodb (>=1.20.0)", "mypy-boto3-dynamodbstreams (>=1.20.0)", "mypy-boto3-ebs (>=1.20.0)", "mypy-boto3-ec2 (>=1.20.0)", "mypy-boto3-ec2-instance-connect (>=1.20.0)", "mypy-boto3-ecr (>=1.20.0)", "mypy-boto3-ecr-public (>=1.20.0)", "mypy-boto3-ecs (>=1.20.0)", "mypy-boto3-efs (>=1.20.0)", "mypy-boto3-eks (>=1.20.0)", "mypy-boto3-elastic-inference (>=1.20.0)", "mypy-boto3-elasticache (>=1.20.0)", "mypy-boto3-elasticbeanstalk (>=1.20.0)", "mypy-boto3-elastictranscoder (>=1.20.0)", "mypy-boto3-elb (>=1.20.0)", "mypy-boto3-elbv2 (>=1.20.0)", "mypy-boto3-emr (>=1.20.0)", "mypy-boto3-emr-containers (>=1.20.0)", "mypy-boto3-es (>=1.20.0)", "mypy-boto3-events (>=1.20.0)", "mypy-boto3-finspace (>=1.20.0)", "mypy-boto3-finspace-data (>=1.20.0)", "mypy-boto3-firehose (>=1.20.0)", "mypy-boto3-fis (>=1.20.0)", "mypy-boto3-fms (>=1.20.0)", "mypy-boto3-forecast (>=1.20.0)", "mypy-boto3-forecastquery (>=1.20.0)", "mypy-boto3-frauddetector (>=1.20.0)", "mypy-boto3-fsx (>=1.20.0)", "mypy-boto3-gamelift (>=1.20.0)", "mypy-boto3-glacier (>=1.20.0)", "mypy-boto3-globalaccelerator (>=1.20.0)", "mypy-boto3-glue (>=1.20.0)", "mypy-boto3-grafana (>=1.20.0)", "mypy-boto3-greengrass (>=1.20.0)", "mypy-boto3-greengrassv2 (>=1.20.0)", "mypy-boto3-groundstation (>=1.20.0)", "mypy-boto3-guardduty (>=1.20.0)", "mypy-boto3-health (>=1.20.0)", "mypy-boto3-healthlake (>=1.20.0)", "mypy-boto3-honeycode (>=1.20.0)", "mypy-boto3-iam (>=1.20.0)", "mypy-boto3-identitystore (>=1.20.0)", "mypy-boto3-imagebuilder (>=1.20.0)", "mypy-boto3-importexport (>=1.20.0)", "mypy-boto3-inspector (>=1.20.0)", "mypy-boto3-iot (>=1.20.0)", "mypy-boto3-iot-data (>=1.20.0)", "mypy-boto3-iot-jobs-data (>=1.20.0)", "mypy-boto3-iot1click-devices (>=1.20.0)", "mypy-boto3-iot1click-projects (>=1.20.0)", "mypy-boto3-iotanalytics (>=1.20.0)", "mypy-boto3-iotdeviceadvisor (>=1.20.0)", "mypy-boto3-iotevents (>=1.20.0)", "mypy-boto3-iotevents-data (>=1.20.0)", "mypy-boto3-iotfleethub (>=1.20.0)", "mypy-boto3-iotsecuretunneling (>=1.20.0)", "mypy-boto3-iotsitewise (>=1.20.0)", "mypy-boto3-iotthingsgraph (>=1.20.0)", "mypy-boto3-iotwireless (>=1.20.0)", "mypy-boto3-ivs (>=1.20.0)", "mypy-boto3-kafka (>=1.20.0)", "mypy-boto3-kafkaconnect (>=1.20.0)", "mypy-boto3-kendra (>=1.20.0)", "mypy-boto3-kinesis (>=1.20.0)", "mypy-boto3-kinesis-video-archived-media (>=1.20.0)", "mypy-boto3-kinesis-video-media (>=1.20.0)", "mypy-boto3-kinesis-video-signaling (>=1.20.0)", "mypy-boto3-kinesisanalytics (>=1.20.0)", "mypy-boto3-kinesisanalyticsv2 (>=1.20.0)", "mypy-boto3-kinesisvideo (>=1.20.0)", "mypy-boto3-kms (>=1.20.0)", "mypy-boto3-lakeformation (>=1.20.0)", "mypy-boto3-lambda (>=1.20.0)", "mypy-boto3-lex-models (>=1.20.0)", "mypy-boto3-lex-runtime (>=1.20.0)", "mypy-boto3-lexv2-models (>=1.20.0)", "mypy-boto3-lexv2-runtime (>=1.20.0)", "mypy-boto3-license-manager (>=1.20.0)", "mypy-boto3-lightsail (>=1.20.0)", "mypy-boto3-location (>=1.20.0)", "mypy-boto3-logs (>=1.20.0)", "mypy-boto3-lookoutequipment (>=1.20.0)", "mypy-boto3-lookoutmetrics (>=1.20.0)", "mypy-boto3-lookoutvision (>=1.20.0)", "mypy-boto3-machinelearning (>=1.20.0)", "mypy-boto3-macie (>=1.20.0)", "mypy-boto3-macie2 (>=1.20.0)", "mypy-boto3-managedblockchain (>=1.20.0)", "mypy-boto3-marketplace-catalog (>=1.20.0)", "mypy-boto3-marketplace-entitlement (>=1.20.0)", "mypy-boto3-marketplacecommerceanalytics (>=1.20.0)", "mypy-boto3-mediaconnect (>=1.20.0)", "mypy-boto3-mediaconvert (>=1.20.0)", "mypy-boto3-medialive (>=1.20.0)", "mypy-boto3-mediapackage (>=1.20.0)", "mypy-boto3-mediapackage-vod (>=1.20.0)", "mypy-boto3-mediastore (>=1.20.0)", "mypy-boto3-mediastore-data (>=1.20.0)", "mypy-boto3-mediatailor (>=1.20.0)", "mypy-boto3-memorydb (>=1.20.0)", "mypy-boto3-meteringmarketplace (>=1.20.0)", "mypy-boto3-mgh (>=1.20.0)", "mypy-boto3-mgn (>=1.20.0)", "mypy-boto3-migrationhub-config (>=1.20.0)", "mypy-boto3-migrationhubstrategy (>=1.20.0)", "mypy-boto3-mobile (>=1.20.0)", "mypy-boto3-mq (>=1.20.0)", "mypy-boto3-mturk (>=1.20.0)", "mypy-boto3-mwaa (>=1.20.0)", "mypy-boto3-neptune (>=1.20.0)", "mypy-boto3-network-firewall (>=1.20.0)", "mypy-boto3-networkmanager (>=1.20.0)", "mypy-boto3-nimble (>=1.20.0)", "mypy-boto3-opensearch (>=1.20.0)", "mypy-boto3-opsworks (>=1.20.0)", "mypy-boto3-opsworkscm (>=1.20.0)", "mypy-boto3-organizations (>=1.20.0)", "mypy-boto3-outposts (>=1.20.0)", "mypy-boto3-panorama (>=1.20.0)", "mypy-boto3-personalize (>=1.20.0)", "mypy-boto3-personalize-events (>=1.20.0)", "mypy-boto3-personalize-runtime (>=1.20.0)", "mypy-boto3-pi (>=1.20.0)", "mypy-boto3-pinpoint (>=1.20.0)", "mypy-boto3-pinpoint-email (>=1.20.0)", "mypy-boto3-pinpoint-sms-voice (>=1.20.0)", "mypy-boto3-polly (>=1.20.0)", "mypy-boto3-pricing (>=1.20.0)", "mypy-boto3-proton (>=1.20.0)", "mypy-boto3-qldb (>=1.20.0)", "mypy-boto3-qldb-session (>=1.20.0)", "mypy-boto3-quicksight (>=1.20.0)", "mypy-boto3-ram (>=1.20.0)", "mypy-boto3-rds (>=1.20.0)", "mypy-boto3-rds-data (>=1.20.0)", "mypy-boto3-redshift (>=1.20.0)", "mypy-boto3-redshift-data (>=1.20.0)", "mypy-boto3-rekognition (>=1.20.0)", "mypy-boto3-resiliencehub (>=1.20.0)", "mypy-boto3-resource-groups (>=1.20.0)", "mypy-boto3-resourcegroupstaggingapi (>=1.20.0)", "mypy-boto3-robomaker (>=1.20.0)", "mypy-boto3-route53 (>=1.20.0)", "mypy-boto3-route53-recovery-cluster (>=1.20.0)", "mypy-boto3-route53-recovery-control-config (>=1.20.0)", "mypy-boto3-route53-recovery-readiness (>=1.20.0)", "mypy-boto3-route53domains (>=1.20.0)", "mypy-boto3-route53resolver (>=1.20.0)", "mypy-boto3-s3 (>=1.20.0)", "mypy-boto3-s3control (>=1.20.0)", "mypy-boto3-s3outposts (>=1.20.0)", "mypy-boto3-sagemaker (>=1.20.0)", "mypy-boto3-sagemaker-a2i-runtime (>=1.20.0)", "mypy-boto3-sagemaker-edge (>=1.20.0)", "mypy-boto3-sagemaker-featurestore-runtime (>=1.20.0)", "mypy-boto3-sagemaker-runtime (>=1.20.0)", "mypy-boto3-savingsplans (>=1.20.0)", "mypy-boto3-schemas (>=1.20.0)", "mypy-boto3-sdb (>=1.20.0)", "mypy-boto3-secretsmanager (>=1.20.0)", "mypy-boto3-securityhub (>=1.20.0)", "mypy-boto3-serverlessrepo (>=1.20.0)", "mypy-boto3-service-quotas (>=1.20.0)", "mypy-boto3-servicecatalog (>=1.20.0)", "mypy-boto3-servicecatalog-appregistry (>=1.20.0)", "mypy-boto3-servicediscovery (>=1.20.0)", "mypy-boto3-ses (>=1.20.0)", "mypy-boto3-sesv2 (>=1.20.0)", "mypy-boto3-shield (>=1.20.0)", "mypy-boto3-signer (>=1.20.0)", "mypy-boto3-sms (>=1.20.0)", "mypy-boto3-sms-voice (>=1.20.0)", "mypy-boto3-snow-device-management (>=1.20.0)", "mypy-boto3-snowball (>=1.20.0)", "mypy-boto3-sns (>=1.20.0)", "mypy-boto3-sqs (>=1.20.0)", "mypy-boto3-ssm (>=1.20.0)", "mypy-boto3-ssm-contacts (>=1.20.0)", "mypy-boto3-ssm-incidents (>=1.20.0)", "mypy-boto3-sso (>=1.20.0)", "mypy-boto3-sso-admin (>=1.20.0)", "mypy-boto3-sso-oidc (>=1.20.0)", "mypy-boto3-stepfunctions (>=1.20.0)", "mypy-boto3-storagegateway (>=1.20.0)", "mypy-boto3-sts (>=1.20.0)", "mypy-boto3-support (>=1.20.0)", "mypy-boto3-swf (>=1.20.0)", "mypy-boto3-synthetics (>=1.20.0)", "mypy-boto3-textract (>=1.20.0)", "mypy-boto3-timestream-query (>=1.20.0)", "mypy-boto3-timestream-write (>=1.20.0)", "mypy-boto3-transcribe (>=1.20.0)", "mypy-boto3-transfer (>=1.20.0)", "mypy-boto3-translate (>=1.20.0)", "mypy-boto3-voice-id (>=1.20.0)", "mypy-boto3-waf (>=1.20.0)", "mypy-boto3-waf-regional (>=1.20.0)", "mypy-boto3-wafv2 (>=1.20.0)", "mypy-boto3-wellarchitected (>=1.20.0)", "mypy-boto3-wisdom (>=1.20.0)", "mypy-boto3-workdocs (>=1.20.0)", "mypy-boto3-worklink (>=1.20.0)", "mypy-boto3-workmail (>=1.20.0)", "mypy-boto3-workmailmessageflow (>=1.20.0)", "mypy-boto3-workspaces (>=1.20.0)", "mypy-boto3-xray (>=1.20.0)"]
amp = ["mypy-boto3-amp (>=1.20.0)"]
amplify = ["mypy-boto3-amplify (>=1.20.0)"]
amplifybackend = ["mypy-boto3-amplifybackend (>=1.20.0)"]
apigateway = ["mypy-boto3-apigateway (>=1.20.0)"]
apigatewaymanagementapi = ["mypy-boto3-apigatewaymanagementapi (>=1.20.0)"]
apigatewayv2 = ["mypy-boto3-apigatewayv2 (>=1.20.0)"]
appconfig = ["mypy-boto3-appconfig (>=1.20.0)"]
appconfigdata = ["mypy-boto3-appconfigdata (>=1.20.0)"]
appflow = ["mypy-boto3-appflow (>=1.20.0)"]
appintegrations = ["mypy-boto3-appintegrations (>=1.20.0)"]
application-autoscaling = ["mypy-boto3-application-autoscaling (>=1.20.0)"]
application-insights = ["mypy-boto3-application-insights (>=1.20.0)"]
applicationcostprofiler = ["mypy-boto3-applicationcostprofiler (>=1.20.0)"]
appmesh = ["mypy-boto3-appmesh (>=1.20.0)"]
apprunner = ["mypy-boto3-apprunner (>=1.20.0)"]
appstream = ["mypy-boto3-appstream (>=1.20.0)"]
appsync = ["mypy-boto3-appsync (>=1.20.0)"]
athena = ["mypy-boto3-athena (>=1.20.0)"]
auditmanager = ["mypy-boto3-auditmanager (>=1.20.0)"]
autoscaling = ["mypy-boto3-autoscaling (>=1.20.0)"]
autoscaling-plans = ["mypy-boto3-autoscaling-plans (>=1.20.0)"]
backup = ["mypy-boto3-backup (>=1.20.0)"]
batch = ["mypy-boto3-batch (>=1.20.0)"]
braket = ["mypy-boto3-braket (>=1.20.0)"]
budgets = ["mypy-boto3-budgets (>=1.20.0)"]
ce = ["mypy-boto3-ce (>=1.20.0)"]
chime = ["mypy-boto3-chime (>=1.20.0)"]
chime-sdk-identity = ["mypy-boto3-chime-sdk-identity (>=1.20.0)"]
chime-sdk-meetings = ["mypy-boto3-chime-sdk-meetings (>=1.20.0)"]
chime-sdk-messaging = ["mypy-boto3-chime-sdk-messaging (>=1.20.0)"]
cloud9 = ["mypy-boto3-cloud9 (>=1.20.0)"]
cloudcontrol = ["mypy-boto3-cloudcontrol (>=1.20.0)"]
clouddirectory = ["mypy-boto3-clouddirectory (>=1.20.0)"]
cloudformation = ["mypy-boto3-cloudformation (>=1.20.0)"]
cloudfront = ["mypy-boto3-cloudfront (>=1.20.0)"]
cloudhsm = ["mypy-boto3-cloudhsm (>=1.20.0)"]
cloudhsmv2 = ["mypy-boto3-cloudhsmv2 (>=1.20.0)"]
cloudsearch = ["mypy-boto3-cloudsearch (>=1.20.0)"]
cloudsearchdomain = ["mypy-boto3-cloudsearchdomain (>=1.20.0)"]
cloudtrail = ["mypy-boto3-cloudtrail (>=1.20.0)"]
cloudwatch = ["mypy-boto3-cloudwatch (>=1.20.0)"]
codeartifact = ["mypy-boto3-codeartifact (>=1.20.0)"]
codebuild = ["mypy-boto3-codebuild (>=1.20.0)"]
codecommit = ["mypy-boto3-codecommit (>=1.20.0)"]
codedeploy = ["mypy-boto3-codedeploy (>=1.20.0)"]
codeguru-reviewer = ["mypy-boto3-codeguru-reviewer (>=1.20.0)"]
codeguruprofiler = ["mypy-boto3-codeguruprofiler (>=1.20.0)"]
codepipeline = ["mypy-boto3-codepipeline (>=1.20.0)"]
codestar = ["mypy-boto3-codestar (>=1.20.0)"]
codestar-connections = ["mypy-boto3-codestar-connections (>=1.20.0)"]
codestar-notifications = ["mypy-boto3-codestar-notifications (>=1.20.0)"]
cognito-identity = ["mypy-boto3-cognito-identity (>=1.20.0)"]
cognito-idp = ["mypy-boto3-cognito-idp (>=1.20.0)"]
cognito-sync = ["mypy-boto3-cognito-sync (>=1.20.0)"]
comprehend = ["mypy-boto3-comprehend (>=1.20.0)"]
comprehendmedical = ["mypy-boto3-comprehendmedical (>=1.20.0)"]
compute-optimizer = ["mypy-boto3-compute-optimizer (>=1.20.0)"]
config = ["mypy-boto3-config (>=1.20.0)"]
connect = ["mypy-boto3-connect (>=1.20.0)"]
connect-contact-lens = ["mypy-boto3-connect-contact-lens (>=1.20.0)"]
connectparticipant = ["mypy-boto3-connectparticipant (>=1.20.0)"]
cur = ["mypy-boto3-cur (>=1.20.0)"]
customer-profiles = ["mypy-boto3-customer-profiles (>=1.20.0)"]
databrew = ["mypy-boto3-databrew (>=1.20.0)"]
dataexchange = ["mypy-boto3-dataexchange (>=1.20.0)"]
datapipeline = ["mypy-boto3-datapipeline (>=1.20.0)"]
datasync = ["mypy-boto3-datasync (>=1.20.0)"]
dax = ["mypy-boto3-dax (>=1.20.0)"]
detective = ["mypy-boto3-detective (>=1.20.0)"]
devicefarm = ["mypy-boto3-devicefarm (>=1.20.0)"]
devops-guru = ["mypy-boto3-devops-guru (>=1.20.0)"]
directconnect = ["mypy-boto3-directconnect (>=1.20.0)"]
discovery = ["mypy-boto3-discovery (>=1.20.0)"]
dlm = ["mypy-boto3-dlm (>=1.20.0)"]
dms = ["mypy-boto3-dms (>=1.20.0)"]
docdb = ["mypy-boto3-docdb (>=1.20.0)"]
drs = ["mypy-boto3-drs (>=1.20.0)"]
ds = ["mypy-boto3-ds (>=1.20.0)"]
dynamodb = ["mypy-boto3-dynamodb (>=1.20.0)"]
dynamodbstreams = ["mypy-boto3-dynamodbstreams (>=1.20.0)"]
ebs = ["mypy-boto3-ebs (>=1.20.0)"]
ec2 = ["mypy-boto3-ec2 (>=1.20.0)"]
ec2-instance-connect = ["mypy-boto3-ec2-instance-connect (>=1.20.0)"]
ecr = ["mypy-boto3-ecr (>=1.20.0)"]
ecr-public = ["mypy-boto3-ecr-public (>=1.20.0)"]
ecs = ["mypy-boto3-ecs (>=1.20.0)"]
efs = ["mypy-boto3-efs (>=1.20.0)"]
eks = ["mypy-boto3-eks (>=1.20.0)"]
elastic-inference = ["mypy-boto3-elastic-inference (>=1.20.0)"]
elasticache = ["mypy-boto3-elasticache (>=1.20.0)"]
elasticbeanstalk = ["mypy-boto3-elasticbeanstalk (>=1.20.0)"]
elastictranscoder = ["mypy-boto3-elastictranscoder (>=1.20.0)"]
elb = ["mypy-boto3-elb (>=1.20.0)"]
elbv2 = ["mypy-boto3-elbv2 (>=1.20.0)"]
emr = ["mypy-boto3-emr (>=1.20.0)"]
emr-containers = ["mypy-boto3-emr-containers (>=1.20.0)"]
es = ["mypy-boto3-es (>=1.20.0)"]
essential = ["mypy-boto3-cloudformation (>=1.20.0)", "mypy-boto3-dynamodb (>=1.20.0)", "mypy-boto3-ec2 (>=1.20.0)", "mypy-boto3-lambda (>=1.20.0)", "mypy-boto3-rds (>=1.20.0)", "mypy-boto3-s3 (>=1.20.0)", "mypy-boto3-sqs (>=1.20.0)"]
events = ["mypy-boto3-events (>=1.20.0)"]
finspace = ["mypy-boto3-finspace (>=1.20.0)"]
finspace-data = ["mypy-boto3-finspace-data (>=1.20.0)"]
firehose = ["mypy-boto3-firehose (>=1.20.0)"]
fis = ["mypy-boto3-fis (>=1.20.0)"]
fms = ["mypy-boto3-fms (>=1.20.0)"]
forecast = ["mypy-boto3-forecast (>=1.20.0)"]
forecastquery = ["mypy-boto3-forecastquery (>=1.20.0)"]
frauddetector = ["mypy-boto3-frauddetector (>=1.20.0)"]
fsx = ["mypy-boto3-fsx (>=1.20.0)"]
gamelift = ["mypy-boto3-gamelift (>=1.20.0)"]
glacier = ["mypy-boto3-glacier (>=1.20.0)"]
globalaccelerator = ["mypy-boto3-globalaccelerator (>=1.20.0)"]
glue = ["mypy-boto3-glue (>=1.20.0)"]
grafana = ["mypy-boto3-grafana (>=1.20.0)"]
greengrass = ["mypy-boto3-greengrass (>=1.20.0)"]
greengrassv2 = ["mypy-boto3-greengrassv2 (>=1.20.0)"]
groundstation = ["mypy-boto3-groundstation (>=1.20.0)"]
guardduty = ["mypy-boto3-guardduty (>=1.20.0)"]
health = ["mypy-boto3-health (>=1.20.0)"]
healthlake = ["mypy-boto3-healthlake (>=1.20.0)"]
honeycode = ["mypy-boto3-honeycode (>=1.20.0)"]
iam = ["mypy-boto3-iam (>=1.20.0)"]
identitystore = ["mypy-boto3-identitystore (>=1.20.0)"]
imagebuilder = ["mypy-boto3-imagebuilder (>=1.20.0)"]
importexport = ["mypy-boto3-importexport (>=1.20.0)"]
inspector = ["mypy-boto3-inspector (>=1.20.0)"]
iot = ["mypy-boto3-iot (>=1.20.0)"]
iot-data = ["mypy-boto3-iot-data (>=1.20.0)"]
iot-jobs-data = ["mypy-boto3-iot-jobs-data (>=1.20.0)"]
iot1click-devices = ["mypy-boto3-iot1click-devices (>=1.20.0)"]
iot1click-projects = ["mypy-boto3-iot1click-projects (>=1.20.0)"]
iotanalytics = ["mypy-boto3-iotanalytics (>=1.20.0)"]
iotdeviceadvisor = ["mypy-boto3-iotdeviceadvisor (>=1.20.0)"]
iotevents = ["mypy-boto3-iotevents (>=1.20.0)"]
iotevents-data = ["mypy-boto3-iotevents-data (>=1.20.0)"]
iotfleethub = ["mypy-boto3-iotfleethub (>=1.20.0)"]
iotsecuretunneling = ["mypy-boto3-iotsecuretunneling (>=1.20.0)"]
iotsitewise = ["mypy-boto3-iotsitewise (>=1.20.0)"]
iotthingsgraph = ["mypy-boto3-iotthingsgraph (>=1.20.0)"]
iotwireless = ["mypy-boto3-iotwireless (>=1.20.0)"]
ivs = ["mypy-boto3-ivs (>=1.20.0)"]
kafka = ["mypy-boto3-kafka (>=1.20.0)"]
kafkaconnect = ["mypy-boto3-kafkaconnect (>=1.20.0)"]
kendra = ["mypy-boto3-kendra (>=1.20.0)"]
kinesis = ["mypy-boto3-kinesis (>=1.20.0)"]
kinesis-video-archived-media = ["mypy-boto3-kinesis-video-archived-media (>=1.20.0)"]
kinesis-video-media = ["mypy-boto3-kinesis-video-media (>=1.20.0)"]
kinesis-video-signaling = ["mypy-boto3-kinesis-video-signaling (>=1.20.0)"]
kinesisanalytics = ["mypy-boto3-kinesisanalytics (>=1.20.0)"]
kinesisanalyticsv2 = ["mypy-boto3-kinesisanalyticsv2 (>=1.20.0)"]
kinesisvideo = ["mypy-boto3-kinesisvideo (>=1.20.0)"]
kms = ["mypy-boto3-kms (>=1.20.0)"]
lakeformation = ["mypy-boto3-lakeformation (>=1.20.0)"]
lambda = ["mypy-boto3-lambda (>=1.20.0)"]
lex-models = ["mypy-boto3-lex-models (>=1.20.0)"]
lex-runtime = ["mypy-boto3-lex-runtime (>=1.20.0)"]
lexv2-models = ["mypy-boto3-lexv2-models (>=1.20.0)"]
lexv2-runtime = ["mypy-boto3-lexv2-runtime (>=1.20.0)"]
license-manager = ["mypy-boto3-license-manager (>=1.20.0)"]
lightsail = ["mypy-boto3-lightsail (>=1.20.0)"]
location = ["mypy-boto3-location (>=1.20.0)"]
logs = ["mypy-boto3-logs (>=1.20.0)"]
lookoutequipment = ["mypy-boto3-lookoutequipment (>=1.20.0)"]
lookoutmetrics = ["mypy-boto3-lookoutmetrics (>=1.20.0)"]
lookoutvision = ["mypy-boto3-lookoutvision (>=1.20.0)"]
machinelearning = ["mypy-boto3-machinelearning (>=1.20.0)"]
macie = ["mypy-boto3-macie (>=1.20.0)"]
macie2 = ["mypy-boto3-macie2 (>=1.20.0)"]
managedblockchain = ["mypy-boto3-managedblockchain (>=1.20.0)"]
marketplace-catalog = ["mypy-boto3-marketplace-catalog (>=1.20.0)"]
marketplace-entitlement = ["mypy-boto3-marketplace-entitlement (>=1.20.0)"]
marketplacecommerceanalytics = ["mypy-boto3-marketplacecommerceanalytics (>=1.20.0)"]
mediaconnect = ["mypy-boto3-mediaconnect (>=1.20.0)"]
mediaconvert = ["mypy-boto3-mediaconvert (>=1.20.0)"]
medialive = ["mypy-boto3-medialive (>=1.20.0)"]
mediapackage = ["mypy-boto3-mediapackage (>=1.20.0)"]
mediapackage-vod = ["mypy-boto3-mediapackage-vod (>=1.20.0)"]
mediastore = ["mypy-boto3-mediastore (>=1.20.0)"]
mediastore-data = ["mypy-boto3-mediastore-data (>=1.20.0)"]
mediatailor = ["mypy-boto3-mediatailor (>=1.20.0)"]
memorydb = ["mypy-boto3-memorydb (>=1.20.0)"]
meteringmarketplace = ["mypy-boto3-meteringmarketplace (>=1.20.0)"]
mgh = ["mypy-boto3-mgh (>=1.20.0)"]
mgn = ["mypy-boto3-mgn (>=1.20.0)"]
migrationhub-config = ["mypy-boto3-migrationhub-config (>=1.20.0)"]
migrationhubstrategy = ["mypy-boto3-migrationhubstrategy (>=1.20.0)"]
mobile = ["mypy-boto3-mobile (>=1.20.0)"]
mq = ["mypy-boto3-mq (>=1.20.0)"]
mturk = ["mypy-boto3-mturk (>=1.20.0)"]
mwaa = ["mypy-boto3-mwaa (>=1.20.0)"]
neptune = ["mypy-boto3-neptune (>=1.20.0)"]
network-firewall = ["mypy-boto3-network-firewall (>=1.20.0)"]
networkmanager = ["mypy-boto3-networkmanager (>=1.20.0)"]
nimble = ["mypy-boto3-nimble (>=1.20.0)"]
opensearch = ["mypy-boto3-opensearch (>=1.20.0)"]
opsworks = ["mypy-boto3-opsworks (>=1.20.0)"]
opsworkscm = ["mypy-boto3-opsworkscm (>=1.20.0)"]
organizations = ["mypy-boto3-organizations (>=1.20.0)"]
outposts = ["mypy-boto3-outposts (>=1.20.0)"]
panorama = ["mypy-boto3-panorama (>=1.20.0)"]
personalize = ["mypy-boto3-personalize (>=1.20.0)"]
personalize-events = ["mypy-boto3-personalize-events (>=1.20.0)"]
personalize-runtime = ["mypy-boto3-personalize-runtime (>=1.20.0)"]
pi = ["mypy-boto3-pi (>=1.20.0)"]
pinpoint = ["mypy-boto3-pinpoint (>=1.20.0)"]
pinpoint-email = ["mypy-boto3-pinpoint-email (>=1.20.0)"]
pinpoint-sms-voice = ["mypy-boto3-pinpoint-sms-voice (>=1.20.0)"]
polly = ["mypy-boto3-polly (>=1.20.0)"]
pricing = ["mypy-boto3-pricing (>=1.20.0)"]
proton = ["mypy-boto3-proton (>=1.20.0)"]
qldb = ["mypy-boto3-qldb (>=1.20.0)"]
qldb-session = ["mypy-boto3-qldb-session (>=1.20.0)"]
quicksight = ["mypy-boto3-quicksight (>=1.20.0)"]
ram = ["mypy-boto3-ram (>=1.20.0)"]
rds = ["mypy-boto3-rds (>=1.20.0)"]
rds-data = ["mypy-boto3-rds-data (>=1.20.0)"]
redshift = ["mypy-boto3-redshift (>=1.20.0)"]
redshift-data = ["mypy-boto3-redshift-data (>=1.20.0)"]
rekognition = ["mypy-boto3-rekognition (>=1.20.0)"]
resiliencehub = ["mypy-boto3-resiliencehub (>=1.20.0)"]
resource-groups = ["mypy-boto3-resource-groups (>=1.20.0)"]
resourcegroupstaggingapi = ["mypy-boto3-resourcegroupstaggingapi (>=1.20.0)"]
robomaker = ["mypy-boto3-robomaker (>=1.20.0)"]
route53 = ["mypy-boto3-route53 (>=1.20.0)"]
route53-recovery-cluster = ["mypy-boto3-route53-recovery-cluster (>=1.20.0)"]
route53-recovery-control-config = ["mypy-boto3-route53-recovery-control-config (>=1.20.0)"]
route53-recovery-readiness = ["mypy-boto3-route53-recovery-readiness (>=1.20.0)"]
route53domains = ["mypy-boto3-route53domains (>=1.20.0)"]
route53resolver = ["mypy-boto3-route53resolver (>=1.20.0)"]
s3 = ["mypy-boto3-s3 (>=1.20.0)"]
s3control = ["mypy-boto3-s3control (>=1.20.0)"]
s3outposts = ["mypy-boto3-s3outposts (>=1.20.0)"]
sagemaker = ["mypy-boto3-sagemaker (>=1.20.0)"]
sagemaker-a2i-runtime = ["mypy-boto3-sagemaker-a2i-runtime (>=1.20.0)"]
sagemaker-edge = ["mypy-boto3-sagemaker-edge (>=1.20.0)"]
sagemaker-featurestore-runtime = ["mypy-boto3-sagemaker-featurestore-runtime (>=1.20.0)"]
sagemaker-runtime = ["mypy-boto3-sagemaker-runtime (>=1.20.0)"]
savingsplans = ["mypy-boto3-savingsplans (>=1.20.0)"]
schemas = ["mypy-boto3-schemas (>=1.20.0)"]
sdb = ["mypy-boto3-sdb (>=1.20.0)"]
secretsmanager = ["mypy-boto3-secretsmanager (>=1.20.0)"]
securityhub = ["mypy-boto3-securityhub (>=1.20.0)"]
serverlessrepo = ["mypy-boto3-serverlessrepo (>=1.20.0)"]
service-quotas = ["mypy-boto3-service-quotas (>=1.20.0)"]
servicecatalog = ["mypy-boto3-servicecatalog (>=1.20.0)"]
servicecatalog-appregistry = ["mypy-boto3-servicecatalog-appregistry (>=1.20.0)"]
servicediscovery = ["mypy-boto3-servicediscovery (>=1.20.0)"]
ses = ["mypy-boto3-ses (>=1.20.0)"]
sesv2 = ["mypy-boto3-sesv2 (>=1.20.0)"]
shield = ["mypy-boto3-shield (>=1.20.0)"]
signer = ["mypy-boto3-signer (>=1.20.0)"]
sms = ["mypy-boto3-sms (>=1.20.0)"]
sms-voice = ["mypy-boto3-sms-voice (>=1.20.0)"]
snow-device-management = ["mypy-boto3-snow-device-management (>=1.20.0)"]
snowball = ["mypy-boto3-snowball (>=1.20.0)"]
sns = ["mypy-boto3-sns (>=1.20.0)"]
sqs = ["mypy-boto3-sqs (>=1.20.0)"]
ssm = ["mypy-boto3-ssm (>=1.20.0)"]
ssm-contacts = ["mypy-boto3-ssm-contacts (>=1.20.0)"]
ssm-incidents = ["mypy-boto3-ssm-incidents (>=1.20.0)"]
sso = ["mypy-boto3-sso (>=1.20.0)"]
sso-admin = ["mypy-boto3-sso-admin (>=1.20.0)"]
sso-oidc = ["mypy-boto3-sso-oidc (>=1.20.0)"]
stepfunctions = ["mypy-boto3-stepfunctions (>=1.20.0)"]
storagegateway = ["mypy-boto3-storagegateway (>=1.20.0)"]
sts = ["mypy-boto3-sts (>=1.20.0)"]
support = ["mypy-boto3-support (>=1.20.0)"]
swf = ["mypy-boto3-swf (>=1.20.0)"]
synthetics = ["mypy-boto3-synthetics (>=1.20.0)"]
textract = ["mypy-boto3-textract (>=1.20.0)"]
timestream-query = ["mypy-boto3-timestream-query (>=1.20.0)"]
timestream-write = ["mypy-boto3-timestream-write (>=1.20.0)"]
transcribe = ["mypy-boto3-transcribe (>=1.20.0)"]
transfer = ["mypy-boto3-transfer (>=1.20.0)"]
translate = ["mypy-boto3-translate (>=1.20.0)"]
voice-id = ["mypy-boto3-voice-id (>=1.20.0)"]
waf = ["mypy-boto3-waf (>=1.20.0)"]
waf-regional = ["mypy-boto3-waf-regional (>=1.20.0)"]
wafv2 = ["mypy-boto3-wafv2 (>=1.20.0)"]
wellarchitected = ["mypy-boto3-wellarchitected (>=1.20.0)"]
wisdom = ["mypy-boto3-wisdom (>=1.20.0)"]
workdocs = ["mypy-boto3-workdocs (>=1.20.0)"]
worklink = ["mypy-boto3-worklink (>=1.20.0)"]
workmail = ["mypy-boto3-workmail (>=1.20.0)"]
workmailmessageflow = ["mypy-boto3-workmailmessageflow (>=1.20.0)"]
workspaces = ["mypy-boto3-workspaces (>=1.20.0)"]
xray = ["mypy-boto3-xray (>=1.20.0)"]
[[package]]
name = "botocore"
version = "1.23.12"
description = "Low-level, data-driven core of boto 3."
category = "main"
optional = false
python-versions = ">= 3.6"
[package.dependencies]
jmespath = ">=0.7.1,<1.0.0"
python-dateutil = ">=2.1,<3.0.0"
urllib3 = ">=1.25.4,<1.27"
[package.extras]
crt = ["awscrt (==0.12.5)"]
[[package]]
name = "botocore-stubs"
version = "1.23.12"
description = "Type annotations for botocore 1.23.12, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "click"
version = "8.0.3"
description = "Composable command line interface toolkit"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "colorama"
version = "0.4.4"
description = "Cross-platform colored terminal text."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "coverage"
version = "6.1.2"
description = "Code coverage measurement for Python"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
tomli = {version = "*", optional = true, markers = "extra == \"toml\""}
[package.extras]
toml = ["tomli"]
[[package]]
name = "flake8"
version = "4.0.1"
description = "the modular source code checker: pep8 pyflakes and co"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
mccabe = ">=0.6.0,<0.7.0"
pycodestyle = ">=2.8.0,<2.9.0"
pyflakes = ">=2.4.0,<2.5.0"
[[package]]
name = "iniconfig"
version = "1.1.1"
description = "iniconfig: brain-dead simple config-ini parsing"
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "jmespath"
version = "0.10.0"
description = "JSON Matching Expressions"
category = "main"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "mccabe"
version = "0.6.1"
description = "McCabe checker, plugin for flake8"
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "mypy"
version = "0.910"
description = "Optional static typing for Python"
category = "dev"
optional = false
python-versions = ">=3.5"
[package.dependencies]
mypy-extensions = ">=0.4.3,<0.5.0"
toml = "*"
typing-extensions = ">=3.7.4"
[package.extras]
dmypy = ["psutil (>=4.0)"]
python2 = ["typed-ast (>=1.4.0,<1.5.0)"]
[[package]]
name = "mypy-boto3-cloudformation"
version = "1.20.11"
description = "Type annotations for boto3.CloudFormation 1.20.11 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-dynamodb"
version = "1.20.12"
description = "Type annotations for boto3.DynamoDB 1.20.12 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-ec2"
version = "1.20.12"
description = "Type annotations for boto3.EC2 1.20.12 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-lambda"
version = "1.20.12"
description = "Type annotations for boto3.Lambda 1.20.12 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-rds"
version = "1.20.12"
description = "Type annotations for boto3.RDS 1.20.12 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-s3"
version = "1.20.12"
description = "Type annotations for boto3.S3 1.20.12 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-sns"
version = "1.20.8"
description = "Type annotations for boto3.SNS 1.20.8 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-sqs"
version = "1.20.12"
description = "Type annotations for boto3.SQS 1.20.12 service, generated by mypy-boto3-builder 6.2.1"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-extensions"
version = "0.4.3"
description = "Experimental type system extensions for programs checked with the mypy typechecker."
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "packaging"
version = "21.3"
description = "Core utilities for Python packages"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
[[package]]
name = "pathspec"
version = "0.9.0"
description = "Utility library for gitignore style pattern matching of file paths."
category = "dev"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[[package]]
name = "platformdirs"
version = "2.4.0"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
optional = false
python-versions = ">=3.6"
[package.extras]
docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"]
test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"]
[[package]]
name = "pluggy"
version = "1.0.0"
description = "plugin and hook calling mechanisms for python"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.extras]
dev = ["pre-commit", "tox"]
testing = ["pytest", "pytest-benchmark"]
[[package]]
name = "py"
version = "1.11.0"
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "pycodestyle"
version = "2.8.0"
description = "Python style guide checker"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "pydantic"
version = "1.8.2"
description = "Data validation and settings management using python 3.6 type hinting"
category = "main"
optional = false
python-versions = ">=3.6.1"
[package.dependencies]
typing-extensions = ">=3.7.4.3"
[package.extras]
dotenv = ["python-dotenv (>=0.10.4)"]
email = ["email-validator (>=1.0.3)"]
[[package]]
name = "pyflakes"
version = "2.4.0"
description = "passive checker of Python programs"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pyparsing"
version = "3.0.6"
description = "Python parsing module"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.extras]
diagrams = ["jinja2", "railroad-diagrams"]
[[package]]
name = "pytest"
version = "6.2.5"
description = "pytest: simple powerful testing with Python"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
attrs = ">=19.2.0"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
iniconfig = "*"
packaging = "*"
pluggy = ">=0.12,<2.0"
py = ">=1.8.2"
toml = "*"
[package.extras]
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"]
[[package]]
name = "pytest-cov"
version = "3.0.0"
description = "Pytest plugin for measuring coverage."
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
coverage = {version = ">=5.2.1", extras = ["toml"]}
pytest = ">=4.6"
[package.extras]
testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"]
[[package]]
name = "pytest-envvars"
version = "1.2.1"
description = "Pytest plugin to validate use of envvars on your tests"
category = "dev"
optional = false
python-versions = "*"
[package.dependencies]
pytest = ">=3.0.0"
[[package]]
name = "python-dateutil"
version = "2.8.2"
description = "Extensions to the standard Python datetime module"
category = "main"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
[package.dependencies]
six = ">=1.5"
[[package]]
name = "regex"
version = "2021.11.10"
description = "Alternative regular expression module, to replace re."
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "s3transfer"
version = "0.5.0"
description = "An Amazon S3 Transfer Manager"
category = "main"
optional = false
python-versions = ">= 3.6"
[package.dependencies]
botocore = ">=1.12.36,<2.0a.0"
[package.extras]
crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"]
[[package]]
name = "six"
version = "1.16.0"
description = "Python 2 and 3 compatibility utilities"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "toml"
version = "0.10.2"
description = "Python Library for Tom's Obvious, Minimal Language"
category = "dev"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "tomli"
version = "1.2.2"
description = "A lil' TOML parser"
category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "typing-extensions"
version = "4.0.0"
description = "Backported and Experimental Type Hints for Python 3.6+"
category = "main"
optional = false
python-versions = ">=3.6"
[[package]]
name = "urllib3"
version = "1.26.7"
description = "HTTP library with thread-safe connection pooling, file post, and more."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
[package.extras]
brotli = ["brotlipy (>=0.6.0)"]
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[metadata]
lock-version = "1.1"
python-versions = "^3.9"
content-hash = "2af708c1e8299ed1a15078268ec81989c00da4a996b562d26d3e357922c28ad0"
[metadata.files]
atomicwrites = [
{file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"},
{file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"},
]
attrs = [
{file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"},
{file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"},
]
black = [
{file = "black-21.11b1-py3-none-any.whl", hash = "sha256:802c6c30b637b28645b7fde282ed2569c0cd777dbe493a41b6a03c1d903f99ac"},
{file = "black-21.11b1.tar.gz", hash = "sha256:a042adbb18b3262faad5aff4e834ff186bb893f95ba3a8013f09de1e5569def2"},
]
boto3 = [
{file = "boto3-1.20.12-py3-none-any.whl", hash = "sha256:df9c74f3dd35e1147e0e873984384e00b0db8c3f6552d8e0b7f50e7b8177f537"},
{file = "boto3-1.20.12.tar.gz", hash = "sha256:224a380a3a825beaf7aa54119e7469884c6adb9098cbf3d64bd487ac6c564d57"},
]
boto3-stubs = [
{file = "boto3-stubs-1.20.12.tar.gz", hash = "sha256:609c2afc3bb00ae1340cd6c0209e16b1c0cce125f6e8770708ea88ff351800e3"},
{file = "boto3_stubs-1.20.12-py3-none-any.whl", hash = "sha256:c44fc56c75abfa61f8b8239c0ddb7f4fdd669322464cae0208a195fbcc1e9c27"},
]
botocore = [
{file = "botocore-1.23.12-py3-none-any.whl", hash = "sha256:002f96a07503c83c1d110174506e68a8fbcb4765b7eafa5f66ef59d910912d17"},
{file = "botocore-1.23.12.tar.gz", hash = "sha256:3047ddf3ee3e54d58b896b442d3044eab30e6bfac2a2fbac428e5c12d8670a3d"},
]
botocore-stubs = [
{file = "botocore-stubs-1.23.12.tar.gz", hash = "sha256:6c548348d7430b0ac1540f247d218fa6d182556b017d4d29a289786e19dfc7ef"},
{file = "botocore_stubs-1.23.12-py3-none-any.whl", hash = "sha256:762f88ae4f78a427f37b415690c16ba23b5d876bb25bb79cfe8f70d5664f4ee8"},
]
click = [
{file = "click-8.0.3-py3-none-any.whl", hash = "sha256:353f466495adaeb40b6b5f592f9f91cb22372351c84caeb068132442a4518ef3"},
{file = "click-8.0.3.tar.gz", hash = "sha256:410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b"},
]
colorama = [
{file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
{file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
]
coverage = [
{file = "coverage-6.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:675adb3b3380967806b3cbb9c5b00ceb29b1c472692100a338730c1d3e59c8b9"},
{file = "coverage-6.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95a58336aa111af54baa451c33266a8774780242cab3704b7698d5e514840758"},
{file = "coverage-6.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d0a595a781f8e186580ff8e3352dd4953b1944289bec7705377c80c7e36c4d6c"},
{file = "coverage-6.1.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d3c5f49ce6af61154060640ad3b3281dbc46e2e0ef2fe78414d7f8a324f0b649"},
{file = "coverage-6.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:310c40bed6b626fd1f463e5a83dba19a61c4eb74e1ac0d07d454ebbdf9047e9d"},
{file = "coverage-6.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a4d48e42e17d3de212f9af44f81ab73b9378a4b2b8413fd708d0d9023f2bbde4"},
{file = "coverage-6.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ffa545230ca2ad921ad066bf8fd627e7be43716b6e0fcf8e32af1b8188ccb0ab"},
{file = "coverage-6.1.2-cp310-cp310-win32.whl", hash = "sha256:cd2d11a59afa5001ff28073ceca24ae4c506da4355aba30d1e7dd2bd0d2206dc"},
{file = "coverage-6.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:96129e41405887a53a9cc564f960d7f853cc63d178f3a182fdd302e4cab2745b"},
{file = "coverage-6.1.2-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:1de9c6f5039ee2b1860b7bad2c7bc3651fbeb9368e4c4d93e98a76358cdcb052"},
{file = "coverage-6.1.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:80cb70264e9a1d04b519cdba3cd0dc42847bf8e982a4d55c769b9b0ee7cdce1e"},
{file = "coverage-6.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:ba6125d4e55c0b8e913dad27b22722eac7abdcb1f3eab1bd090eee9105660266"},
{file = "coverage-6.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8492d37acdc07a6eac6489f6c1954026f2260a85a4c2bb1e343fe3d35f5ee21a"},
{file = "coverage-6.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66af99c7f7b64d050d37e795baadf515b4561124f25aae6e1baa482438ecc388"},
{file = "coverage-6.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ebcc03e1acef4ff44f37f3c61df478d6e469a573aa688e5a162f85d7e4c3860d"},
{file = "coverage-6.1.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98d44a8136eebbf544ad91fef5bd2b20ef0c9b459c65a833c923d9aa4546b204"},
{file = "coverage-6.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c18725f3cffe96732ef96f3de1939d81215fd6d7d64900dcc4acfe514ea4fcbf"},
{file = "coverage-6.1.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:c8e9c4bcaaaa932be581b3d8b88b677489975f845f7714efc8cce77568b6711c"},
{file = "coverage-6.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:06d009e8a29483cbc0520665bc46035ffe9ae0e7484a49f9782c2a716e37d0a0"},
{file = "coverage-6.1.2-cp36-cp36m-win32.whl", hash = "sha256:e5432d9c329b11c27be45ee5f62cf20a33065d482c8dec1941d6670622a6fb8f"},
{file = "coverage-6.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:82fdcb64bf08aa5db881db061d96db102c77397a570fbc112e21c48a4d9cb31b"},
{file = "coverage-6.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:94f558f8555e79c48c422045f252ef41eb43becdd945e9c775b45ebfc0cbd78f"},
{file = "coverage-6.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:046647b96969fda1ae0605f61288635209dd69dcd27ba3ec0bf5148bc157f954"},
{file = "coverage-6.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cc799916b618ec9fd00135e576424165691fec4f70d7dc12cfaef09268a2478c"},
{file = "coverage-6.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:62646d98cf0381ffda301a816d6ac6c35fc97aa81b09c4c52d66a15c4bef9d7c"},
{file = "coverage-6.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:27a3df08a855522dfef8b8635f58bab81341b2fb5f447819bc252da3aa4cf44c"},
{file = "coverage-6.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:610c0ba11da8de3a753dc4b1f71894f9f9debfdde6559599f303286e70aeb0c2"},
{file = "coverage-6.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:35b246ae3a2c042dc8f410c94bcb9754b18179cdb81ff9477a9089dbc9ecc186"},
{file = "coverage-6.1.2-cp37-cp37m-win32.whl", hash = "sha256:0cde7d9fe2fb55ff68ebe7fb319ef188e9b88e0a3d1c9c5db7dd829cd93d2193"},
{file = "coverage-6.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:958ac66272ff20e63d818627216e3d7412fdf68a2d25787b89a5c6f1eb7fdd93"},
{file = "coverage-6.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a300b39c3d5905686c75a369d2a66e68fd01472ea42e16b38c948bd02b29e5bd"},
{file = "coverage-6.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d3855d5d26292539861f5ced2ed042fc2aa33a12f80e487053aed3bcb6ced13"},
{file = "coverage-6.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:586d38dfc7da4a87f5816b203ff06dd7c1bb5b16211ccaa0e9788a8da2b93696"},
{file = "coverage-6.1.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a34fccb45f7b2d890183a263578d60a392a1a218fdc12f5bce1477a6a68d4373"},
{file = "coverage-6.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bc1ee1318f703bc6c971da700d74466e9b86e0c443eb85983fb2a1bd20447263"},
{file = "coverage-6.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3f546f48d5d80a90a266769aa613bc0719cb3e9c2ef3529d53f463996dd15a9d"},
{file = "coverage-6.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fd92ece726055e80d4e3f01fff3b91f54b18c9c357c48fcf6119e87e2461a091"},
{file = "coverage-6.1.2-cp38-cp38-win32.whl", hash = "sha256:24ed38ec86754c4d5a706fbd5b52b057c3df87901a8610d7e5642a08ec07087e"},
{file = "coverage-6.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:97ef6e9119bd39d60ef7b9cd5deea2b34869c9f0b9777450a7e3759c1ab09b9b"},
{file = "coverage-6.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6e5a8c947a2a89c56655ecbb789458a3a8e3b0cbf4c04250331df8f647b3de59"},
{file = "coverage-6.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a39590d1e6acf6a3c435c5d233f72f5d43b585f5be834cff1f21fec4afda225"},
{file = "coverage-6.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9d2c2e3ce7b8cc932a2f918186964bd44de8c84e2f9ef72dc616f5bb8be22e71"},
{file = "coverage-6.1.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3348865798c077c695cae00da0924136bb5cc501f236cfd6b6d9f7a3c94e0ec4"},
{file = "coverage-6.1.2-cp39-cp39-win32.whl", hash = "sha256:fae3fe111670e51f1ebbc475823899524e3459ea2db2cb88279bbfb2a0b8a3de"},
{file = "coverage-6.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:af45eea024c0e3a25462fade161afab4f0d9d9e0d5a5d53e86149f74f0a35ecc"},
{file = "coverage-6.1.2-pp36.pp37.pp38-none-any.whl", hash = "sha256:eab14fdd410500dae50fd14ccc332e65543e7b39f6fc076fe90603a0e5d2f929"},
{file = "coverage-6.1.2.tar.gz", hash = "sha256:d9a635114b88c0ab462e0355472d00a180a5fbfd8511e7f18e4ac32652e7d972"},
]
flake8 = [
{file = "flake8-4.0.1-py2.py3-none-any.whl", hash = "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d"},
{file = "flake8-4.0.1.tar.gz", hash = "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d"},
]
iniconfig = [
{file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
{file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
]
jmespath = [
{file = "jmespath-0.10.0-py2.py3-none-any.whl", hash = "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f"},
{file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"},
]
mccabe = [
{file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
{file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
]
mypy = [
{file = "mypy-0.910-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:a155d80ea6cee511a3694b108c4494a39f42de11ee4e61e72bc424c490e46457"},
{file = "mypy-0.910-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:b94e4b785e304a04ea0828759172a15add27088520dc7e49ceade7834275bedb"},
{file = "mypy-0.910-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:088cd9c7904b4ad80bec811053272986611b84221835e079be5bcad029e79dd9"},
{file = "mypy-0.910-cp35-cp35m-win_amd64.whl", hash = "sha256:adaeee09bfde366d2c13fe6093a7df5df83c9a2ba98638c7d76b010694db760e"},
{file = "mypy-0.910-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:ecd2c3fe726758037234c93df7e98deb257fd15c24c9180dacf1ef829da5f921"},
{file = "mypy-0.910-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:d9dd839eb0dc1bbe866a288ba3c1afc33a202015d2ad83b31e875b5905a079b6"},
{file = "mypy-0.910-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:3e382b29f8e0ccf19a2df2b29a167591245df90c0b5a2542249873b5c1d78212"},
{file = "mypy-0.910-cp36-cp36m-win_amd64.whl", hash = "sha256:53fd2eb27a8ee2892614370896956af2ff61254c275aaee4c230ae771cadd885"},
{file = "mypy-0.910-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b6fb13123aeef4a3abbcfd7e71773ff3ff1526a7d3dc538f3929a49b42be03f0"},
{file = "mypy-0.910-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e4dab234478e3bd3ce83bac4193b2ecd9cf94e720ddd95ce69840273bf44f6de"},
{file = "mypy-0.910-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:7df1ead20c81371ccd6091fa3e2878559b5c4d4caadaf1a484cf88d93ca06703"},
{file = "mypy-0.910-cp37-cp37m-win_amd64.whl", hash = "sha256:0aadfb2d3935988ec3815952e44058a3100499f5be5b28c34ac9d79f002a4a9a"},
{file = "mypy-0.910-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ec4e0cd079db280b6bdabdc807047ff3e199f334050db5cbb91ba3e959a67504"},
{file = "mypy-0.910-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:119bed3832d961f3a880787bf621634ba042cb8dc850a7429f643508eeac97b9"},
{file = "mypy-0.910-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:866c41f28cee548475f146aa4d39a51cf3b6a84246969f3759cb3e9c742fc072"},
{file = "mypy-0.910-cp38-cp38-win_amd64.whl", hash = "sha256:ceb6e0a6e27fb364fb3853389607cf7eb3a126ad335790fa1e14ed02fba50811"},
{file = "mypy-0.910-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a85e280d4d217150ce8cb1a6dddffd14e753a4e0c3cf90baabb32cefa41b59e"},
{file = "mypy-0.910-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:42c266ced41b65ed40a282c575705325fa7991af370036d3f134518336636f5b"},
{file = "mypy-0.910-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:3c4b8ca36877fc75339253721f69603a9c7fdb5d4d5a95a1a1b899d8b86a4de2"},
{file = "mypy-0.910-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:c0df2d30ed496a08de5daed2a9ea807d07c21ae0ab23acf541ab88c24b26ab97"},
{file = "mypy-0.910-cp39-cp39-win_amd64.whl", hash = "sha256:c6c2602dffb74867498f86e6129fd52a2770c48b7cd3ece77ada4fa38f94eba8"},
{file = "mypy-0.910-py3-none-any.whl", hash = "sha256:ef565033fa5a958e62796867b1df10c40263ea9ded87164d67572834e57a174d"},
{file = "mypy-0.910.tar.gz", hash = "sha256:704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150"},
]
mypy-boto3-cloudformation = [
{file = "mypy-boto3-cloudformation-1.20.11.tar.gz", hash = "sha256:763b2d69eda46ac05cd533efba26fc1854e627a1cb844bfd941d88201d325953"},
{file = "mypy_boto3_cloudformation-1.20.11-py3-none-any.whl", hash = "sha256:57052da7bf7e2eb966e4bda37be9828be7f11fdc67337bd59bbfb98d8e222319"},
]
mypy-boto3-dynamodb = [
{file = "mypy-boto3-dynamodb-1.20.12.tar.gz", hash = "sha256:d4badc001d555fc0e590092018fd754664acdd0651633c77ae5e890d3a49a9a7"},
{file = "mypy_boto3_dynamodb-1.20.12-py3-none-any.whl", hash = "sha256:e819a42862eb742475f6c43fb7099f848a4efdfda1cb864697a9afd1efb32fa6"},
]
mypy-boto3-ec2 = [
{file = "mypy-boto3-ec2-1.20.12.tar.gz", hash = "sha256:c0b2c10f93f2650d6546642db7257560fa7c68662e5bd6a3578729426c210481"},
{file = "mypy_boto3_ec2-1.20.12-py3-none-any.whl", hash = "sha256:cac5c2711014502f809670fae718c3212a9a4b404d9e91750ca67243fbb258db"},
]
mypy-boto3-lambda = [
{file = "mypy-boto3-lambda-1.20.12.tar.gz", hash = "sha256:37481b452cbc86f2c8730e507fb8c2caae12269f1d8f949e37faa677bc1ec47c"},
{file = "mypy_boto3_lambda-1.20.12-py3-none-any.whl", hash = "sha256:04be49191a58c59dca202c8de56c878f3ff2397d1c0fe59e9dca2ed14e824694"},
]
mypy-boto3-rds = [
{file = "mypy-boto3-rds-1.20.12.tar.gz", hash = "sha256:386237c3e8ccf94f1939de9e62e11bfa804d526e1b0967f6d238d1b8bc58250b"},
{file = "mypy_boto3_rds-1.20.12-py3-none-any.whl", hash = "sha256:5ca66e84bb861e6fc7772f3896234e2b0b87ae91c2a21487df062b2d680976bb"},
]
mypy-boto3-s3 = [
{file = "mypy-boto3-s3-1.20.12.tar.gz", hash = "sha256:27412a20c49012f7aff2c6755cb8313c3ebcc6580fb654535bfc813f2ade9054"},
{file = "mypy_boto3_s3-1.20.12-py3-none-any.whl", hash = "sha256:b47c107cfe0a6d86d8ccbc88c363dbe3d45a49857b1269847b043a9f705c40a5"},
]
mypy-boto3-sns = [
{file = "mypy-boto3-sns-1.20.8.tar.gz", hash = "sha256:343bf98d9b85982ac2a6ba6dccaa0260ada0d2015b9f1b6daa646fc825ee0db1"},
{file = "mypy_boto3_sns-1.20.8-py3-none-any.whl", hash = "sha256:3c011a5c56e0d6c41b289341892b6452852c619bd6b1fdfb08bfd8a0b44ada5a"},
]
mypy-boto3-sqs = [
{file = "mypy-boto3-sqs-1.20.12.tar.gz", hash = "sha256:1c284553d0269b4379a6e9e18ff86e7dc8798c9b5a78db667ae78591779ffeb4"},
{file = "mypy_boto3_sqs-1.20.12-py3-none-any.whl", hash = "sha256:0956b4fdc56f58a1666fb540a6c921e433d4d88b91914d1c73812985ea60a21d"},
]
mypy-extensions = [
{file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
{file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
]
packaging = [
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
{file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
]
pathspec = [
{file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
{file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
]
platformdirs = [
{file = "platformdirs-2.4.0-py3-none-any.whl", hash = "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d"},
{file = "platformdirs-2.4.0.tar.gz", hash = "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2"},
]
pluggy = [
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
]
py = [
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
]
pycodestyle = [
{file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"},
{file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"},
]
pydantic = [
{file = "pydantic-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739"},
{file = "pydantic-1.8.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4"},
{file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:589eb6cd6361e8ac341db97602eb7f354551482368a37f4fd086c0733548308e"},
{file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:10e5622224245941efc193ad1d159887872776df7a8fd592ed746aa25d071840"},
{file = "pydantic-1.8.2-cp36-cp36m-win_amd64.whl", hash = "sha256:99a9fc39470010c45c161a1dc584997f1feb13f689ecf645f59bb4ba623e586b"},
{file = "pydantic-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a83db7205f60c6a86f2c44a61791d993dff4b73135df1973ecd9eed5ea0bda20"},
{file = "pydantic-1.8.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:41b542c0b3c42dc17da70554bc6f38cbc30d7066d2c2815a94499b5684582ecb"},
{file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:ea5cb40a3b23b3265f6325727ddfc45141b08ed665458be8c6285e7b85bd73a1"},
{file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:18b5ea242dd3e62dbf89b2b0ec9ba6c7b5abaf6af85b95a97b00279f65845a23"},
{file = "pydantic-1.8.2-cp37-cp37m-win_amd64.whl", hash = "sha256:234a6c19f1c14e25e362cb05c68afb7f183eb931dd3cd4605eafff055ebbf287"},
{file = "pydantic-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:021ea0e4133e8c824775a0cfe098677acf6fa5a3cbf9206a376eed3fc09302cd"},
{file = "pydantic-1.8.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e710876437bc07bd414ff453ac8ec63d219e7690128d925c6e82889d674bb505"},
{file = "pydantic-1.8.2-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:ac8eed4ca3bd3aadc58a13c2aa93cd8a884bcf21cb019f8cfecaae3b6ce3746e"},
{file = "pydantic-1.8.2-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:4a03cbbe743e9c7247ceae6f0d8898f7a64bb65800a45cbdc52d65e370570820"},
{file = "pydantic-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:8621559dcf5afacf0069ed194278f35c255dc1a1385c28b32dd6c110fd6531b3"},
{file = "pydantic-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8b223557f9510cf0bfd8b01316bf6dd281cf41826607eada99662f5e4963f316"},
{file = "pydantic-1.8.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:244ad78eeb388a43b0c927e74d3af78008e944074b7d0f4f696ddd5b2af43c62"},
{file = "pydantic-1.8.2-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:05ef5246a7ffd2ce12a619cbb29f3307b7c4509307b1b49f456657b43529dc6f"},
{file = "pydantic-1.8.2-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:54cd5121383f4a461ff7644c7ca20c0419d58052db70d8791eacbbe31528916b"},
{file = "pydantic-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:4be75bebf676a5f0f87937c6ddb061fa39cbea067240d98e298508c1bda6f3f3"},
{file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"},
{file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"},
]
pyflakes = [
{file = "pyflakes-2.4.0-py2.py3-none-any.whl", hash = "sha256:3bb3a3f256f4b7968c9c788781e4ff07dce46bdf12339dcda61053375426ee2e"},
{file = "pyflakes-2.4.0.tar.gz", hash = "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"},
]
pyparsing = [