-
Notifications
You must be signed in to change notification settings - Fork 0
/
poetry.lock
922 lines (860 loc) · 58 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
[[package]]
name = "appdirs"
version = "1.4.4"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
optional = false
python-versions = "*"
[[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 = "19.10b0"
description = "The uncompromising code formatter."
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
appdirs = "*"
attrs = ">=18.1.0"
click = ">=6.5"
pathspec = ">=0.6,<1"
regex = "*"
toml = ">=0.9.4"
typed-ast = ">=1.4.0"
[package.extras]
d = ["aiohttp (>=3.3.2)", "aiohttp-cors"]
[[package]]
name = "boto"
version = "2.49.0"
description = "Amazon Web Services Library"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "boto3"
version = "1.18.34"
description = "The AWS SDK for Python"
category = "main"
optional = false
python-versions = ">= 3.6"
[package.dependencies]
botocore = ">=1.21.34,<1.22.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.18.34"
description = "Type annotations for boto3 1.18.34, generated by mypy-boto3-builder 5.2.0"
category = "dev"
optional = false
python-versions = ">=3.6"
[package.dependencies]
botocore-stubs = "*"
mypy-boto3-ec2 = {version = ">=1.18.29", optional = true, markers = "extra == \"ec2\""}
mypy-boto3-efs = {version = ">=1.18.29", optional = true, markers = "extra == \"efs\""}
mypy-boto3-rds = {version = ">=1.18.29", optional = true, markers = "extra == \"rds\""}
mypy-boto3-sqs = {version = ">=1.18.29", optional = true, markers = "extra == \"sqs\""}
[package.extras]
accessanalyzer = ["mypy-boto3-accessanalyzer (>=1.18.29)"]
acm = ["mypy-boto3-acm (>=1.18.29)"]
acm-pca = ["mypy-boto3-acm-pca (>=1.18.29)"]
alexaforbusiness = ["mypy-boto3-alexaforbusiness (>=1.18.29)"]
all = ["mypy-boto3-accessanalyzer (>=1.18.29)", "mypy-boto3-acm (>=1.18.29)", "mypy-boto3-acm-pca (>=1.18.29)", "mypy-boto3-alexaforbusiness (>=1.18.29)", "mypy-boto3-amp (>=1.18.29)", "mypy-boto3-amplify (>=1.18.29)", "mypy-boto3-amplifybackend (>=1.18.29)", "mypy-boto3-apigateway (>=1.18.29)", "mypy-boto3-apigatewaymanagementapi (>=1.18.29)", "mypy-boto3-apigatewayv2 (>=1.18.29)", "mypy-boto3-appconfig (>=1.18.29)", "mypy-boto3-appflow (>=1.18.29)", "mypy-boto3-appintegrations (>=1.18.29)", "mypy-boto3-application-autoscaling (>=1.18.29)", "mypy-boto3-application-insights (>=1.18.29)", "mypy-boto3-applicationcostprofiler (>=1.18.29)", "mypy-boto3-appmesh (>=1.18.29)", "mypy-boto3-apprunner (>=1.18.29)", "mypy-boto3-appstream (>=1.18.29)", "mypy-boto3-appsync (>=1.18.29)", "mypy-boto3-athena (>=1.18.29)", "mypy-boto3-auditmanager (>=1.18.29)", "mypy-boto3-autoscaling (>=1.18.29)", "mypy-boto3-autoscaling-plans (>=1.18.29)", "mypy-boto3-backup (>=1.18.29)", "mypy-boto3-batch (>=1.18.29)", "mypy-boto3-braket (>=1.18.29)", "mypy-boto3-budgets (>=1.18.29)", "mypy-boto3-ce (>=1.18.29)", "mypy-boto3-chime (>=1.18.29)", "mypy-boto3-chime-sdk-identity (>=1.18.29)", "mypy-boto3-chime-sdk-messaging (>=1.18.29)", "mypy-boto3-cloud9 (>=1.18.29)", "mypy-boto3-clouddirectory (>=1.18.29)", "mypy-boto3-cloudformation (>=1.18.29)", "mypy-boto3-cloudfront (>=1.18.29)", "mypy-boto3-cloudhsm (>=1.18.29)", "mypy-boto3-cloudhsmv2 (>=1.18.29)", "mypy-boto3-cloudsearch (>=1.18.29)", "mypy-boto3-cloudsearchdomain (>=1.18.29)", "mypy-boto3-cloudtrail (>=1.18.29)", "mypy-boto3-cloudwatch (>=1.18.29)", "mypy-boto3-codeartifact (>=1.18.29)", "mypy-boto3-codebuild (>=1.18.29)", "mypy-boto3-codecommit (>=1.18.29)", "mypy-boto3-codedeploy (>=1.18.29)", "mypy-boto3-codeguru-reviewer (>=1.18.29)", "mypy-boto3-codeguruprofiler (>=1.18.29)", "mypy-boto3-codepipeline (>=1.18.29)", "mypy-boto3-codestar (>=1.18.29)", "mypy-boto3-codestar-connections (>=1.18.29)", "mypy-boto3-codestar-notifications (>=1.18.29)", "mypy-boto3-cognito-identity (>=1.18.29)", "mypy-boto3-cognito-idp (>=1.18.29)", "mypy-boto3-cognito-sync (>=1.18.29)", "mypy-boto3-comprehend (>=1.18.29)", "mypy-boto3-comprehendmedical (>=1.18.29)", "mypy-boto3-compute-optimizer (>=1.18.29)", "mypy-boto3-config (>=1.18.29)", "mypy-boto3-connect (>=1.18.29)", "mypy-boto3-connect-contact-lens (>=1.18.29)", "mypy-boto3-connectparticipant (>=1.18.29)", "mypy-boto3-cur (>=1.18.29)", "mypy-boto3-customer-profiles (>=1.18.29)", "mypy-boto3-databrew (>=1.18.29)", "mypy-boto3-dataexchange (>=1.18.29)", "mypy-boto3-datapipeline (>=1.18.29)", "mypy-boto3-datasync (>=1.18.29)", "mypy-boto3-dax (>=1.18.29)", "mypy-boto3-detective (>=1.18.29)", "mypy-boto3-devicefarm (>=1.18.29)", "mypy-boto3-devops-guru (>=1.18.29)", "mypy-boto3-directconnect (>=1.18.29)", "mypy-boto3-discovery (>=1.18.29)", "mypy-boto3-dlm (>=1.18.29)", "mypy-boto3-dms (>=1.18.29)", "mypy-boto3-docdb (>=1.18.29)", "mypy-boto3-ds (>=1.18.29)", "mypy-boto3-dynamodb (>=1.18.29)", "mypy-boto3-dynamodbstreams (>=1.18.29)", "mypy-boto3-ebs (>=1.18.29)", "mypy-boto3-ec2 (>=1.18.29)", "mypy-boto3-ec2-instance-connect (>=1.18.29)", "mypy-boto3-ecr (>=1.18.29)", "mypy-boto3-ecr-public (>=1.18.29)", "mypy-boto3-ecs (>=1.18.29)", "mypy-boto3-efs (>=1.18.29)", "mypy-boto3-eks (>=1.18.29)", "mypy-boto3-elastic-inference (>=1.18.29)", "mypy-boto3-elasticache (>=1.18.29)", "mypy-boto3-elasticbeanstalk (>=1.18.29)", "mypy-boto3-elastictranscoder (>=1.18.29)", "mypy-boto3-elb (>=1.18.29)", "mypy-boto3-elbv2 (>=1.18.29)", "mypy-boto3-emr (>=1.18.29)", "mypy-boto3-emr-containers (>=1.18.29)", "mypy-boto3-es (>=1.18.29)", "mypy-boto3-events (>=1.18.29)", "mypy-boto3-finspace (>=1.18.29)", "mypy-boto3-finspace-data (>=1.18.29)", "mypy-boto3-firehose (>=1.18.29)", "mypy-boto3-fis (>=1.18.29)", "mypy-boto3-fms (>=1.18.29)", "mypy-boto3-forecast (>=1.18.29)", "mypy-boto3-forecastquery (>=1.18.29)", "mypy-boto3-frauddetector (>=1.18.29)", "mypy-boto3-fsx (>=1.18.29)", "mypy-boto3-gamelift (>=1.18.29)", "mypy-boto3-glacier (>=1.18.29)", "mypy-boto3-globalaccelerator (>=1.18.29)", "mypy-boto3-glue (>=1.18.29)", "mypy-boto3-greengrass (>=1.18.29)", "mypy-boto3-greengrassv2 (>=1.18.29)", "mypy-boto3-groundstation (>=1.18.29)", "mypy-boto3-guardduty (>=1.18.29)", "mypy-boto3-health (>=1.18.29)", "mypy-boto3-healthlake (>=1.18.29)", "mypy-boto3-honeycode (>=1.18.29)", "mypy-boto3-iam (>=1.18.29)", "mypy-boto3-identitystore (>=1.18.29)", "mypy-boto3-imagebuilder (>=1.18.29)", "mypy-boto3-importexport (>=1.18.29)", "mypy-boto3-inspector (>=1.18.29)", "mypy-boto3-iot (>=1.18.29)", "mypy-boto3-iot-data (>=1.18.29)", "mypy-boto3-iot-jobs-data (>=1.18.29)", "mypy-boto3-iot1click-devices (>=1.18.29)", "mypy-boto3-iot1click-projects (>=1.18.29)", "mypy-boto3-iotanalytics (>=1.18.29)", "mypy-boto3-iotdeviceadvisor (>=1.18.29)", "mypy-boto3-iotevents (>=1.18.29)", "mypy-boto3-iotevents-data (>=1.18.29)", "mypy-boto3-iotfleethub (>=1.18.29)", "mypy-boto3-iotsecuretunneling (>=1.18.29)", "mypy-boto3-iotsitewise (>=1.18.29)", "mypy-boto3-iotthingsgraph (>=1.18.29)", "mypy-boto3-iotwireless (>=1.18.29)", "mypy-boto3-ivs (>=1.18.29)", "mypy-boto3-kafka (>=1.18.29)", "mypy-boto3-kendra (>=1.18.29)", "mypy-boto3-kinesis (>=1.18.29)", "mypy-boto3-kinesis-video-archived-media (>=1.18.29)", "mypy-boto3-kinesis-video-media (>=1.18.29)", "mypy-boto3-kinesis-video-signaling (>=1.18.29)", "mypy-boto3-kinesisanalytics (>=1.18.29)", "mypy-boto3-kinesisanalyticsv2 (>=1.18.29)", "mypy-boto3-kinesisvideo (>=1.18.29)", "mypy-boto3-kms (>=1.18.29)", "mypy-boto3-lakeformation (>=1.18.29)", "mypy-boto3-lambda (>=1.18.29)", "mypy-boto3-lex-models (>=1.18.29)", "mypy-boto3-lex-runtime (>=1.18.29)", "mypy-boto3-lexv2-models (>=1.18.29)", "mypy-boto3-lexv2-runtime (>=1.18.29)", "mypy-boto3-license-manager (>=1.18.29)", "mypy-boto3-lightsail (>=1.18.29)", "mypy-boto3-location (>=1.18.29)", "mypy-boto3-logs (>=1.18.29)", "mypy-boto3-lookoutequipment (>=1.18.29)", "mypy-boto3-lookoutmetrics (>=1.18.29)", "mypy-boto3-lookoutvision (>=1.18.29)", "mypy-boto3-machinelearning (>=1.18.29)", "mypy-boto3-macie (>=1.18.29)", "mypy-boto3-macie2 (>=1.18.29)", "mypy-boto3-managedblockchain (>=1.18.29)", "mypy-boto3-marketplace-catalog (>=1.18.29)", "mypy-boto3-marketplace-entitlement (>=1.18.29)", "mypy-boto3-marketplacecommerceanalytics (>=1.18.29)", "mypy-boto3-mediaconnect (>=1.18.29)", "mypy-boto3-mediaconvert (>=1.18.29)", "mypy-boto3-medialive (>=1.18.29)", "mypy-boto3-mediapackage (>=1.18.29)", "mypy-boto3-mediapackage-vod (>=1.18.29)", "mypy-boto3-mediastore (>=1.18.29)", "mypy-boto3-mediastore-data (>=1.18.29)", "mypy-boto3-mediatailor (>=1.18.29)", "mypy-boto3-memorydb (>=1.18.29)", "mypy-boto3-meteringmarketplace (>=1.18.29)", "mypy-boto3-mgh (>=1.18.29)", "mypy-boto3-mgn (>=1.18.29)", "mypy-boto3-migrationhub-config (>=1.18.29)", "mypy-boto3-mobile (>=1.18.29)", "mypy-boto3-mq (>=1.18.29)", "mypy-boto3-mturk (>=1.18.29)", "mypy-boto3-mwaa (>=1.18.29)", "mypy-boto3-neptune (>=1.18.29)", "mypy-boto3-network-firewall (>=1.18.29)", "mypy-boto3-networkmanager (>=1.18.29)", "mypy-boto3-nimble (>=1.18.29)", "mypy-boto3-opsworks (>=1.18.29)", "mypy-boto3-opsworkscm (>=1.18.29)", "mypy-boto3-organizations (>=1.18.29)", "mypy-boto3-outposts (>=1.18.29)", "mypy-boto3-personalize (>=1.18.29)", "mypy-boto3-personalize-events (>=1.18.29)", "mypy-boto3-personalize-runtime (>=1.18.29)", "mypy-boto3-pi (>=1.18.29)", "mypy-boto3-pinpoint (>=1.18.29)", "mypy-boto3-pinpoint-email (>=1.18.29)", "mypy-boto3-pinpoint-sms-voice (>=1.18.29)", "mypy-boto3-polly (>=1.18.29)", "mypy-boto3-pricing (>=1.18.29)", "mypy-boto3-proton (>=1.18.29)", "mypy-boto3-qldb (>=1.18.29)", "mypy-boto3-qldb-session (>=1.18.29)", "mypy-boto3-quicksight (>=1.18.29)", "mypy-boto3-ram (>=1.18.29)", "mypy-boto3-rds (>=1.18.29)", "mypy-boto3-rds-data (>=1.18.29)", "mypy-boto3-redshift (>=1.18.29)", "mypy-boto3-redshift-data (>=1.18.29)", "mypy-boto3-rekognition (>=1.18.29)", "mypy-boto3-resource-groups (>=1.18.29)", "mypy-boto3-resourcegroupstaggingapi (>=1.18.29)", "mypy-boto3-robomaker (>=1.18.29)", "mypy-boto3-route53 (>=1.18.29)", "mypy-boto3-route53-recovery-cluster (>=1.18.29)", "mypy-boto3-route53-recovery-control-config (>=1.18.29)", "mypy-boto3-route53-recovery-readiness (>=1.18.29)", "mypy-boto3-route53domains (>=1.18.29)", "mypy-boto3-route53resolver (>=1.18.29)", "mypy-boto3-s3 (>=1.18.29)", "mypy-boto3-s3control (>=1.18.29)", "mypy-boto3-s3outposts (>=1.18.29)", "mypy-boto3-sagemaker (>=1.18.29)", "mypy-boto3-sagemaker-a2i-runtime (>=1.18.29)", "mypy-boto3-sagemaker-edge (>=1.18.29)", "mypy-boto3-sagemaker-featurestore-runtime (>=1.18.29)", "mypy-boto3-sagemaker-runtime (>=1.18.29)", "mypy-boto3-savingsplans (>=1.18.29)", "mypy-boto3-schemas (>=1.18.29)", "mypy-boto3-sdb (>=1.18.29)", "mypy-boto3-secretsmanager (>=1.18.29)", "mypy-boto3-securityhub (>=1.18.29)", "mypy-boto3-serverlessrepo (>=1.18.29)", "mypy-boto3-service-quotas (>=1.18.29)", "mypy-boto3-servicecatalog (>=1.18.29)", "mypy-boto3-servicecatalog-appregistry (>=1.18.29)", "mypy-boto3-servicediscovery (>=1.18.29)", "mypy-boto3-ses (>=1.18.29)", "mypy-boto3-sesv2 (>=1.18.29)", "mypy-boto3-shield (>=1.18.29)", "mypy-boto3-signer (>=1.18.29)", "mypy-boto3-sms (>=1.18.29)", "mypy-boto3-sms-voice (>=1.18.29)", "mypy-boto3-snow-device-management (>=1.18.29)", "mypy-boto3-snowball (>=1.18.29)", "mypy-boto3-sns (>=1.18.29)", "mypy-boto3-sqs (>=1.18.29)", "mypy-boto3-ssm (>=1.18.29)", "mypy-boto3-ssm-contacts (>=1.18.29)", "mypy-boto3-ssm-incidents (>=1.18.29)", "mypy-boto3-sso (>=1.18.29)", "mypy-boto3-sso-admin (>=1.18.29)", "mypy-boto3-sso-oidc (>=1.18.29)", "mypy-boto3-stepfunctions (>=1.18.29)", "mypy-boto3-storagegateway (>=1.18.29)", "mypy-boto3-sts (>=1.18.29)", "mypy-boto3-support (>=1.18.29)", "mypy-boto3-swf (>=1.18.29)", "mypy-boto3-synthetics (>=1.18.29)", "mypy-boto3-textract (>=1.18.29)", "mypy-boto3-timestream-query (>=1.18.29)", "mypy-boto3-timestream-write (>=1.18.29)", "mypy-boto3-transcribe (>=1.18.29)", "mypy-boto3-transfer (>=1.18.29)", "mypy-boto3-translate (>=1.18.29)", "mypy-boto3-waf (>=1.18.29)", "mypy-boto3-waf-regional (>=1.18.29)", "mypy-boto3-wafv2 (>=1.18.29)", "mypy-boto3-wellarchitected (>=1.18.29)", "mypy-boto3-workdocs (>=1.18.29)", "mypy-boto3-worklink (>=1.18.29)", "mypy-boto3-workmail (>=1.18.29)", "mypy-boto3-workmailmessageflow (>=1.18.29)", "mypy-boto3-workspaces (>=1.18.29)", "mypy-boto3-xray (>=1.18.29)"]
amp = ["mypy-boto3-amp (>=1.18.29)"]
amplify = ["mypy-boto3-amplify (>=1.18.29)"]
amplifybackend = ["mypy-boto3-amplifybackend (>=1.18.29)"]
apigateway = ["mypy-boto3-apigateway (>=1.18.29)"]
apigatewaymanagementapi = ["mypy-boto3-apigatewaymanagementapi (>=1.18.29)"]
apigatewayv2 = ["mypy-boto3-apigatewayv2 (>=1.18.29)"]
appconfig = ["mypy-boto3-appconfig (>=1.18.29)"]
appflow = ["mypy-boto3-appflow (>=1.18.29)"]
appintegrations = ["mypy-boto3-appintegrations (>=1.18.29)"]
application-autoscaling = ["mypy-boto3-application-autoscaling (>=1.18.29)"]
application-insights = ["mypy-boto3-application-insights (>=1.18.29)"]
applicationcostprofiler = ["mypy-boto3-applicationcostprofiler (>=1.18.29)"]
appmesh = ["mypy-boto3-appmesh (>=1.18.29)"]
apprunner = ["mypy-boto3-apprunner (>=1.18.29)"]
appstream = ["mypy-boto3-appstream (>=1.18.29)"]
appsync = ["mypy-boto3-appsync (>=1.18.29)"]
athena = ["mypy-boto3-athena (>=1.18.29)"]
auditmanager = ["mypy-boto3-auditmanager (>=1.18.29)"]
autoscaling = ["mypy-boto3-autoscaling (>=1.18.29)"]
autoscaling-plans = ["mypy-boto3-autoscaling-plans (>=1.18.29)"]
backup = ["mypy-boto3-backup (>=1.18.29)"]
batch = ["mypy-boto3-batch (>=1.18.29)"]
braket = ["mypy-boto3-braket (>=1.18.29)"]
budgets = ["mypy-boto3-budgets (>=1.18.29)"]
ce = ["mypy-boto3-ce (>=1.18.29)"]
chime = ["mypy-boto3-chime (>=1.18.29)"]
chime-sdk-identity = ["mypy-boto3-chime-sdk-identity (>=1.18.29)"]
chime-sdk-messaging = ["mypy-boto3-chime-sdk-messaging (>=1.18.29)"]
cloud9 = ["mypy-boto3-cloud9 (>=1.18.29)"]
clouddirectory = ["mypy-boto3-clouddirectory (>=1.18.29)"]
cloudformation = ["mypy-boto3-cloudformation (>=1.18.29)"]
cloudfront = ["mypy-boto3-cloudfront (>=1.18.29)"]
cloudhsm = ["mypy-boto3-cloudhsm (>=1.18.29)"]
cloudhsmv2 = ["mypy-boto3-cloudhsmv2 (>=1.18.29)"]
cloudsearch = ["mypy-boto3-cloudsearch (>=1.18.29)"]
cloudsearchdomain = ["mypy-boto3-cloudsearchdomain (>=1.18.29)"]
cloudtrail = ["mypy-boto3-cloudtrail (>=1.18.29)"]
cloudwatch = ["mypy-boto3-cloudwatch (>=1.18.29)"]
codeartifact = ["mypy-boto3-codeartifact (>=1.18.29)"]
codebuild = ["mypy-boto3-codebuild (>=1.18.29)"]
codecommit = ["mypy-boto3-codecommit (>=1.18.29)"]
codedeploy = ["mypy-boto3-codedeploy (>=1.18.29)"]
codeguru-reviewer = ["mypy-boto3-codeguru-reviewer (>=1.18.29)"]
codeguruprofiler = ["mypy-boto3-codeguruprofiler (>=1.18.29)"]
codepipeline = ["mypy-boto3-codepipeline (>=1.18.29)"]
codestar = ["mypy-boto3-codestar (>=1.18.29)"]
codestar-connections = ["mypy-boto3-codestar-connections (>=1.18.29)"]
codestar-notifications = ["mypy-boto3-codestar-notifications (>=1.18.29)"]
cognito-identity = ["mypy-boto3-cognito-identity (>=1.18.29)"]
cognito-idp = ["mypy-boto3-cognito-idp (>=1.18.29)"]
cognito-sync = ["mypy-boto3-cognito-sync (>=1.18.29)"]
comprehend = ["mypy-boto3-comprehend (>=1.18.29)"]
comprehendmedical = ["mypy-boto3-comprehendmedical (>=1.18.29)"]
compute-optimizer = ["mypy-boto3-compute-optimizer (>=1.18.29)"]
config = ["mypy-boto3-config (>=1.18.29)"]
connect = ["mypy-boto3-connect (>=1.18.29)"]
connect-contact-lens = ["mypy-boto3-connect-contact-lens (>=1.18.29)"]
connectparticipant = ["mypy-boto3-connectparticipant (>=1.18.29)"]
cur = ["mypy-boto3-cur (>=1.18.29)"]
customer-profiles = ["mypy-boto3-customer-profiles (>=1.18.29)"]
databrew = ["mypy-boto3-databrew (>=1.18.29)"]
dataexchange = ["mypy-boto3-dataexchange (>=1.18.29)"]
datapipeline = ["mypy-boto3-datapipeline (>=1.18.29)"]
datasync = ["mypy-boto3-datasync (>=1.18.29)"]
dax = ["mypy-boto3-dax (>=1.18.29)"]
detective = ["mypy-boto3-detective (>=1.18.29)"]
devicefarm = ["mypy-boto3-devicefarm (>=1.18.29)"]
devops-guru = ["mypy-boto3-devops-guru (>=1.18.29)"]
directconnect = ["mypy-boto3-directconnect (>=1.18.29)"]
discovery = ["mypy-boto3-discovery (>=1.18.29)"]
dlm = ["mypy-boto3-dlm (>=1.18.29)"]
dms = ["mypy-boto3-dms (>=1.18.29)"]
docdb = ["mypy-boto3-docdb (>=1.18.29)"]
ds = ["mypy-boto3-ds (>=1.18.29)"]
dynamodb = ["mypy-boto3-dynamodb (>=1.18.29)"]
dynamodbstreams = ["mypy-boto3-dynamodbstreams (>=1.18.29)"]
ebs = ["mypy-boto3-ebs (>=1.18.29)"]
ec2 = ["mypy-boto3-ec2 (>=1.18.29)"]
ec2-instance-connect = ["mypy-boto3-ec2-instance-connect (>=1.18.29)"]
ecr = ["mypy-boto3-ecr (>=1.18.29)"]
ecr-public = ["mypy-boto3-ecr-public (>=1.18.29)"]
ecs = ["mypy-boto3-ecs (>=1.18.29)"]
efs = ["mypy-boto3-efs (>=1.18.29)"]
eks = ["mypy-boto3-eks (>=1.18.29)"]
elastic-inference = ["mypy-boto3-elastic-inference (>=1.18.29)"]
elasticache = ["mypy-boto3-elasticache (>=1.18.29)"]
elasticbeanstalk = ["mypy-boto3-elasticbeanstalk (>=1.18.29)"]
elastictranscoder = ["mypy-boto3-elastictranscoder (>=1.18.29)"]
elb = ["mypy-boto3-elb (>=1.18.29)"]
elbv2 = ["mypy-boto3-elbv2 (>=1.18.29)"]
emr = ["mypy-boto3-emr (>=1.18.29)"]
emr-containers = ["mypy-boto3-emr-containers (>=1.18.29)"]
es = ["mypy-boto3-es (>=1.18.29)"]
essential = ["mypy-boto3-cloudformation (>=1.18.29)", "mypy-boto3-dynamodb (>=1.18.29)", "mypy-boto3-ec2 (>=1.18.29)", "mypy-boto3-lambda (>=1.18.29)", "mypy-boto3-rds (>=1.18.29)", "mypy-boto3-s3 (>=1.18.29)", "mypy-boto3-sqs (>=1.18.29)"]
events = ["mypy-boto3-events (>=1.18.29)"]
finspace = ["mypy-boto3-finspace (>=1.18.29)"]
finspace-data = ["mypy-boto3-finspace-data (>=1.18.29)"]
firehose = ["mypy-boto3-firehose (>=1.18.29)"]
fis = ["mypy-boto3-fis (>=1.18.29)"]
fms = ["mypy-boto3-fms (>=1.18.29)"]
forecast = ["mypy-boto3-forecast (>=1.18.29)"]
forecastquery = ["mypy-boto3-forecastquery (>=1.18.29)"]
frauddetector = ["mypy-boto3-frauddetector (>=1.18.29)"]
fsx = ["mypy-boto3-fsx (>=1.18.29)"]
gamelift = ["mypy-boto3-gamelift (>=1.18.29)"]
glacier = ["mypy-boto3-glacier (>=1.18.29)"]
globalaccelerator = ["mypy-boto3-globalaccelerator (>=1.18.29)"]
glue = ["mypy-boto3-glue (>=1.18.29)"]
greengrass = ["mypy-boto3-greengrass (>=1.18.29)"]
greengrassv2 = ["mypy-boto3-greengrassv2 (>=1.18.29)"]
groundstation = ["mypy-boto3-groundstation (>=1.18.29)"]
guardduty = ["mypy-boto3-guardduty (>=1.18.29)"]
health = ["mypy-boto3-health (>=1.18.29)"]
healthlake = ["mypy-boto3-healthlake (>=1.18.29)"]
honeycode = ["mypy-boto3-honeycode (>=1.18.29)"]
iam = ["mypy-boto3-iam (>=1.18.29)"]
identitystore = ["mypy-boto3-identitystore (>=1.18.29)"]
imagebuilder = ["mypy-boto3-imagebuilder (>=1.18.29)"]
importexport = ["mypy-boto3-importexport (>=1.18.29)"]
inspector = ["mypy-boto3-inspector (>=1.18.29)"]
iot = ["mypy-boto3-iot (>=1.18.29)"]
iot-data = ["mypy-boto3-iot-data (>=1.18.29)"]
iot-jobs-data = ["mypy-boto3-iot-jobs-data (>=1.18.29)"]
iot1click-devices = ["mypy-boto3-iot1click-devices (>=1.18.29)"]
iot1click-projects = ["mypy-boto3-iot1click-projects (>=1.18.29)"]
iotanalytics = ["mypy-boto3-iotanalytics (>=1.18.29)"]
iotdeviceadvisor = ["mypy-boto3-iotdeviceadvisor (>=1.18.29)"]
iotevents = ["mypy-boto3-iotevents (>=1.18.29)"]
iotevents-data = ["mypy-boto3-iotevents-data (>=1.18.29)"]
iotfleethub = ["mypy-boto3-iotfleethub (>=1.18.29)"]
iotsecuretunneling = ["mypy-boto3-iotsecuretunneling (>=1.18.29)"]
iotsitewise = ["mypy-boto3-iotsitewise (>=1.18.29)"]
iotthingsgraph = ["mypy-boto3-iotthingsgraph (>=1.18.29)"]
iotwireless = ["mypy-boto3-iotwireless (>=1.18.29)"]
ivs = ["mypy-boto3-ivs (>=1.18.29)"]
kafka = ["mypy-boto3-kafka (>=1.18.29)"]
kendra = ["mypy-boto3-kendra (>=1.18.29)"]
kinesis = ["mypy-boto3-kinesis (>=1.18.29)"]
kinesis-video-archived-media = ["mypy-boto3-kinesis-video-archived-media (>=1.18.29)"]
kinesis-video-media = ["mypy-boto3-kinesis-video-media (>=1.18.29)"]
kinesis-video-signaling = ["mypy-boto3-kinesis-video-signaling (>=1.18.29)"]
kinesisanalytics = ["mypy-boto3-kinesisanalytics (>=1.18.29)"]
kinesisanalyticsv2 = ["mypy-boto3-kinesisanalyticsv2 (>=1.18.29)"]
kinesisvideo = ["mypy-boto3-kinesisvideo (>=1.18.29)"]
kms = ["mypy-boto3-kms (>=1.18.29)"]
lakeformation = ["mypy-boto3-lakeformation (>=1.18.29)"]
lambda = ["mypy-boto3-lambda (>=1.18.29)"]
lex-models = ["mypy-boto3-lex-models (>=1.18.29)"]
lex-runtime = ["mypy-boto3-lex-runtime (>=1.18.29)"]
lexv2-models = ["mypy-boto3-lexv2-models (>=1.18.29)"]
lexv2-runtime = ["mypy-boto3-lexv2-runtime (>=1.18.29)"]
license-manager = ["mypy-boto3-license-manager (>=1.18.29)"]
lightsail = ["mypy-boto3-lightsail (>=1.18.29)"]
location = ["mypy-boto3-location (>=1.18.29)"]
logs = ["mypy-boto3-logs (>=1.18.29)"]
lookoutequipment = ["mypy-boto3-lookoutequipment (>=1.18.29)"]
lookoutmetrics = ["mypy-boto3-lookoutmetrics (>=1.18.29)"]
lookoutvision = ["mypy-boto3-lookoutvision (>=1.18.29)"]
machinelearning = ["mypy-boto3-machinelearning (>=1.18.29)"]
macie = ["mypy-boto3-macie (>=1.18.29)"]
macie2 = ["mypy-boto3-macie2 (>=1.18.29)"]
managedblockchain = ["mypy-boto3-managedblockchain (>=1.18.29)"]
marketplace-catalog = ["mypy-boto3-marketplace-catalog (>=1.18.29)"]
marketplace-entitlement = ["mypy-boto3-marketplace-entitlement (>=1.18.29)"]
marketplacecommerceanalytics = ["mypy-boto3-marketplacecommerceanalytics (>=1.18.29)"]
mediaconnect = ["mypy-boto3-mediaconnect (>=1.18.29)"]
mediaconvert = ["mypy-boto3-mediaconvert (>=1.18.29)"]
medialive = ["mypy-boto3-medialive (>=1.18.29)"]
mediapackage = ["mypy-boto3-mediapackage (>=1.18.29)"]
mediapackage-vod = ["mypy-boto3-mediapackage-vod (>=1.18.29)"]
mediastore = ["mypy-boto3-mediastore (>=1.18.29)"]
mediastore-data = ["mypy-boto3-mediastore-data (>=1.18.29)"]
mediatailor = ["mypy-boto3-mediatailor (>=1.18.29)"]
memorydb = ["mypy-boto3-memorydb (>=1.18.29)"]
meteringmarketplace = ["mypy-boto3-meteringmarketplace (>=1.18.29)"]
mgh = ["mypy-boto3-mgh (>=1.18.29)"]
mgn = ["mypy-boto3-mgn (>=1.18.29)"]
migrationhub-config = ["mypy-boto3-migrationhub-config (>=1.18.29)"]
mobile = ["mypy-boto3-mobile (>=1.18.29)"]
mq = ["mypy-boto3-mq (>=1.18.29)"]
mturk = ["mypy-boto3-mturk (>=1.18.29)"]
mwaa = ["mypy-boto3-mwaa (>=1.18.29)"]
neptune = ["mypy-boto3-neptune (>=1.18.29)"]
network-firewall = ["mypy-boto3-network-firewall (>=1.18.29)"]
networkmanager = ["mypy-boto3-networkmanager (>=1.18.29)"]
nimble = ["mypy-boto3-nimble (>=1.18.29)"]
opsworks = ["mypy-boto3-opsworks (>=1.18.29)"]
opsworkscm = ["mypy-boto3-opsworkscm (>=1.18.29)"]
organizations = ["mypy-boto3-organizations (>=1.18.29)"]
outposts = ["mypy-boto3-outposts (>=1.18.29)"]
personalize = ["mypy-boto3-personalize (>=1.18.29)"]
personalize-events = ["mypy-boto3-personalize-events (>=1.18.29)"]
personalize-runtime = ["mypy-boto3-personalize-runtime (>=1.18.29)"]
pi = ["mypy-boto3-pi (>=1.18.29)"]
pinpoint = ["mypy-boto3-pinpoint (>=1.18.29)"]
pinpoint-email = ["mypy-boto3-pinpoint-email (>=1.18.29)"]
pinpoint-sms-voice = ["mypy-boto3-pinpoint-sms-voice (>=1.18.29)"]
polly = ["mypy-boto3-polly (>=1.18.29)"]
pricing = ["mypy-boto3-pricing (>=1.18.29)"]
proton = ["mypy-boto3-proton (>=1.18.29)"]
qldb = ["mypy-boto3-qldb (>=1.18.29)"]
qldb-session = ["mypy-boto3-qldb-session (>=1.18.29)"]
quicksight = ["mypy-boto3-quicksight (>=1.18.29)"]
ram = ["mypy-boto3-ram (>=1.18.29)"]
rds = ["mypy-boto3-rds (>=1.18.29)"]
rds-data = ["mypy-boto3-rds-data (>=1.18.29)"]
redshift = ["mypy-boto3-redshift (>=1.18.29)"]
redshift-data = ["mypy-boto3-redshift-data (>=1.18.29)"]
rekognition = ["mypy-boto3-rekognition (>=1.18.29)"]
resource-groups = ["mypy-boto3-resource-groups (>=1.18.29)"]
resourcegroupstaggingapi = ["mypy-boto3-resourcegroupstaggingapi (>=1.18.29)"]
robomaker = ["mypy-boto3-robomaker (>=1.18.29)"]
route53 = ["mypy-boto3-route53 (>=1.18.29)"]
route53-recovery-cluster = ["mypy-boto3-route53-recovery-cluster (>=1.18.29)"]
route53-recovery-control-config = ["mypy-boto3-route53-recovery-control-config (>=1.18.29)"]
route53-recovery-readiness = ["mypy-boto3-route53-recovery-readiness (>=1.18.29)"]
route53domains = ["mypy-boto3-route53domains (>=1.18.29)"]
route53resolver = ["mypy-boto3-route53resolver (>=1.18.29)"]
s3 = ["mypy-boto3-s3 (>=1.18.29)"]
s3control = ["mypy-boto3-s3control (>=1.18.29)"]
s3outposts = ["mypy-boto3-s3outposts (>=1.18.29)"]
sagemaker = ["mypy-boto3-sagemaker (>=1.18.29)"]
sagemaker-a2i-runtime = ["mypy-boto3-sagemaker-a2i-runtime (>=1.18.29)"]
sagemaker-edge = ["mypy-boto3-sagemaker-edge (>=1.18.29)"]
sagemaker-featurestore-runtime = ["mypy-boto3-sagemaker-featurestore-runtime (>=1.18.29)"]
sagemaker-runtime = ["mypy-boto3-sagemaker-runtime (>=1.18.29)"]
savingsplans = ["mypy-boto3-savingsplans (>=1.18.29)"]
schemas = ["mypy-boto3-schemas (>=1.18.29)"]
sdb = ["mypy-boto3-sdb (>=1.18.29)"]
secretsmanager = ["mypy-boto3-secretsmanager (>=1.18.29)"]
securityhub = ["mypy-boto3-securityhub (>=1.18.29)"]
serverlessrepo = ["mypy-boto3-serverlessrepo (>=1.18.29)"]
service-quotas = ["mypy-boto3-service-quotas (>=1.18.29)"]
servicecatalog = ["mypy-boto3-servicecatalog (>=1.18.29)"]
servicecatalog-appregistry = ["mypy-boto3-servicecatalog-appregistry (>=1.18.29)"]
servicediscovery = ["mypy-boto3-servicediscovery (>=1.18.29)"]
ses = ["mypy-boto3-ses (>=1.18.29)"]
sesv2 = ["mypy-boto3-sesv2 (>=1.18.29)"]
shield = ["mypy-boto3-shield (>=1.18.29)"]
signer = ["mypy-boto3-signer (>=1.18.29)"]
sms = ["mypy-boto3-sms (>=1.18.29)"]
sms-voice = ["mypy-boto3-sms-voice (>=1.18.29)"]
snow-device-management = ["mypy-boto3-snow-device-management (>=1.18.29)"]
snowball = ["mypy-boto3-snowball (>=1.18.29)"]
sns = ["mypy-boto3-sns (>=1.18.29)"]
sqs = ["mypy-boto3-sqs (>=1.18.29)"]
ssm = ["mypy-boto3-ssm (>=1.18.29)"]
ssm-contacts = ["mypy-boto3-ssm-contacts (>=1.18.29)"]
ssm-incidents = ["mypy-boto3-ssm-incidents (>=1.18.29)"]
sso = ["mypy-boto3-sso (>=1.18.29)"]
sso-admin = ["mypy-boto3-sso-admin (>=1.18.29)"]
sso-oidc = ["mypy-boto3-sso-oidc (>=1.18.29)"]
stepfunctions = ["mypy-boto3-stepfunctions (>=1.18.29)"]
storagegateway = ["mypy-boto3-storagegateway (>=1.18.29)"]
sts = ["mypy-boto3-sts (>=1.18.29)"]
support = ["mypy-boto3-support (>=1.18.29)"]
swf = ["mypy-boto3-swf (>=1.18.29)"]
synthetics = ["mypy-boto3-synthetics (>=1.18.29)"]
textract = ["mypy-boto3-textract (>=1.18.29)"]
timestream-query = ["mypy-boto3-timestream-query (>=1.18.29)"]
timestream-write = ["mypy-boto3-timestream-write (>=1.18.29)"]
transcribe = ["mypy-boto3-transcribe (>=1.18.29)"]
transfer = ["mypy-boto3-transfer (>=1.18.29)"]
translate = ["mypy-boto3-translate (>=1.18.29)"]
waf = ["mypy-boto3-waf (>=1.18.29)"]
waf-regional = ["mypy-boto3-waf-regional (>=1.18.29)"]
wafv2 = ["mypy-boto3-wafv2 (>=1.18.29)"]
wellarchitected = ["mypy-boto3-wellarchitected (>=1.18.29)"]
workdocs = ["mypy-boto3-workdocs (>=1.18.29)"]
worklink = ["mypy-boto3-worklink (>=1.18.29)"]
workmail = ["mypy-boto3-workmail (>=1.18.29)"]
workmailmessageflow = ["mypy-boto3-workmailmessageflow (>=1.18.29)"]
workspaces = ["mypy-boto3-workspaces (>=1.18.29)"]
xray = ["mypy-boto3-xray (>=1.18.29)"]
[[package]]
name = "botocore"
version = "1.21.34"
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.11.24)"]
[[package]]
name = "botocore-stubs"
version = "1.21.34"
description = "Type annotations for botocore 1.21.34, generated by mypy-boto3-builder 5.2.0"
category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "click"
version = "8.0.1"
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 = "flake8"
version = "3.9.2"
description = "the modular source code checker: pep8 pyflakes and co"
category = "dev"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[package.dependencies]
mccabe = ">=0.6.0,<0.7.0"
pycodestyle = ">=2.7.0,<2.8.0"
pyflakes = ">=2.3.0,<2.4.0"
[[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-ec2"
version = "1.18.34"
description = "Type annotations for boto3.EC2 1.18.34 service, generated by mypy-boto3-builder 5.2.0"
category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-efs"
version = "1.18.34"
description = "Type annotations for boto3.EFS 1.18.34 service, generated by mypy-boto3-builder 5.2.0"
category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-rds"
version = "1.18.34"
description = "Type annotations for boto3.RDS 1.18.34 service, generated by mypy-boto3-builder 5.2.0"
category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "mypy-boto3-sqs"
version = "1.18.34"
description = "Type annotations for boto3.SQS 1.18.34 service, generated by mypy-boto3-builder 5.2.0"
category = "dev"
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 = "nixops"
version = "2.0.0"
description = "NixOS cloud provisioning and deployment tool"
category = "main"
optional = false
python-versions = "^3.7"
develop = false
[package.dependencies]
pluggy = "^0.13.1"
PrettyTable = "^0.7.2"
typeguard = "^2.7.1"
typing-extensions = "^3.7.4"
[package.source]
type = "git"
url = "https://github.com/NixOS/nixops.git"
reference = "master"
resolved_reference = "35ac02085169bc2372834d6be6cf4c1bdf820d09"
[[package]]
name = "nixos-modules-contrib"
version = "0.1.0"
description = "NixOS modules that don't quite belong in NixOS."
category = "main"
optional = false
python-versions = "^3.7"
develop = false
[package.dependencies]
nixops = {git = "https://github.com/NixOS/nixops.git", rev = "master"}
[package.source]
type = "git"
url = "https://github.com/nix-community/nixos-modules-contrib.git"
reference = "master"
resolved_reference = "81a1c2ef424dcf596a97b2e46a58ca73a1dd1ff8"
[[package]]
name = "nose"
version = "1.3.7"
description = "nose extends unittest to make testing easier"
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "ovh"
version = "0.5.0"
description = "\"Official OVH.com API wrapper\""
category = "main"
optional = false
python-versions = "*"
[package.extras]
dev = ["coverage (==3.7.1)", "mock (==1.0.1)", "nose (==1.3.3)", "yanc (==0.2.4)", "Sphinx (==1.2.2)", "coveralls (==0.4.4)", "setuptools (>=30.3.0)", "wheel"]
test = ["coverage (==3.7.1)", "mock (==1.0.1)", "nose (==1.3.3)", "yanc (==0.2.4)"]
[[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 = "pluggy"
version = "0.13.1"
description = "plugin and hook calling mechanisms for python"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[package.extras]
dev = ["pre-commit", "tox"]
[[package]]
name = "prettytable"
version = "0.7.2"
description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format."
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "pycodestyle"
version = "2.7.0"
description = "Python style guide checker"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pyflakes"
version = "2.3.1"
description = "passive checker of Python programs"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[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.8.28"
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 = "typed-ast"
version = "1.4.3"
description = "a fork of Python 2 and 3 ast modules with type comment support"
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "typeguard"
version = "2.12.1"
description = "Run-time type checker for Python"
category = "main"
optional = false
python-versions = ">=3.5.3"
[package.extras]
doc = ["sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"]
test = ["pytest", "typing-extensions", "mypy"]
[[package]]
name = "typing-extensions"
version = "3.10.0.2"
description = "Backported and Experimental Type Hints for Python 3.5+"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "urllib3"
version = "1.26.6"
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 = "f3100c23d31736f28d64a75b1cb92ddc54edafed53640df95215ec5a38d0f0f8"
[metadata.files]
appdirs = [
{file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"},
{file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"},
]
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-19.10b0-py36-none-any.whl", hash = "sha256:1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b"},
{file = "black-19.10b0.tar.gz", hash = "sha256:c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539"},
]
boto = [
{file = "boto-2.49.0-py2.py3-none-any.whl", hash = "sha256:147758d41ae7240dc989f0039f27da8ca0d53734be0eb869ef16e3adcfa462e8"},
{file = "boto-2.49.0.tar.gz", hash = "sha256:ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a"},
]
boto3 = [
{file = "boto3-1.18.34-py3-none-any.whl", hash = "sha256:658ddf4ba552f654fd4d48335fa95ff4e3e1a4e82f90021a1a1d3de4a5428ba4"},
{file = "boto3-1.18.34.tar.gz", hash = "sha256:5116e9bdec19adcc5531a9b7b535be77d5314eef092aaf7033ace48a9be65036"},
]
boto3-stubs = [
{file = "boto3-stubs-1.18.34.tar.gz", hash = "sha256:c44065a0a442fb3e3bac06a66402c133a274fa0178051e3dbd9e1054f4a9bae6"},
{file = "boto3_stubs-1.18.34-py3-none-any.whl", hash = "sha256:f638def3abed06cbda4ee3e9ad51fa7eab41eb8c4b5f601c508d7781b3fb07a8"},
]
botocore = [
{file = "botocore-1.21.34-py3-none-any.whl", hash = "sha256:1b4999fb0e1a4c050c4d9118ebdaac8d83761ef32c3c0f13a25f9204045998fe"},
{file = "botocore-1.21.34.tar.gz", hash = "sha256:ec2cdf1c8ed64a7f392f352125d248c76103fa9d137b275b7c76836776cedf56"},
]
botocore-stubs = [
{file = "botocore-stubs-1.21.34.tar.gz", hash = "sha256:a1872568278c7418b737d0d85f900996578460bee9907ea9e83157a28377653b"},
{file = "botocore_stubs-1.21.34-py3-none-any.whl", hash = "sha256:7133ec8b519ed49b8d361806029b532ee1a0233b31db8e8222b93c3dedebd6c9"},
]
click = [
{file = "click-8.0.1-py3-none-any.whl", hash = "sha256:fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6"},
{file = "click-8.0.1.tar.gz", hash = "sha256:8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a"},
]
colorama = [
{file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
{file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
]
flake8 = [
{file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"},
{file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"},
]
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-ec2 = [
{file = "mypy-boto3-ec2-1.18.34.tar.gz", hash = "sha256:d5cbeec035743a476c111c3730793595b4306b14de42b40ce56513a65b32dd5b"},
{file = "mypy_boto3_ec2-1.18.34-py3-none-any.whl", hash = "sha256:618473a04ad1c0ef986101dfe636fd6a49694147fda934be6aa76ae470b797b5"},
]
mypy-boto3-efs = [
{file = "mypy-boto3-efs-1.18.34.tar.gz", hash = "sha256:59d867e416544dfc35828ffb64edc7e90804aed67b44f52feeb6e54e85b96d5a"},
{file = "mypy_boto3_efs-1.18.34-py3-none-any.whl", hash = "sha256:f9dd1b0112123166206f0fe7725f34ecfc5d920c958d199efcea9d4095377d75"},
]
mypy-boto3-rds = [
{file = "mypy-boto3-rds-1.18.34.tar.gz", hash = "sha256:bbd36d4d9bb7d87f42ec9119d88bf511f043162d8a42ed65b6fde3a365b3a144"},
{file = "mypy_boto3_rds-1.18.34-py3-none-any.whl", hash = "sha256:5aa7a84841c956ce8b932edfc316c3ea844cc7c880cdc45c9fa51dfafcb75947"},
]
mypy-boto3-sqs = [
{file = "mypy-boto3-sqs-1.18.34.tar.gz", hash = "sha256:e2bdd2272e0f6dc4256b634e41d31a7467c64801cb5d4414a605ef4d569b126e"},
{file = "mypy_boto3_sqs-1.18.34-py3-none-any.whl", hash = "sha256:32ab62e9ccc49777fd50684b02737befc7bbda5a015216c04c3792bb0a09e76c"},
]
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"},
]
nixops = []
nixos-modules-contrib = []
nose = [
{file = "nose-1.3.7-py2-none-any.whl", hash = "sha256:dadcddc0aefbf99eea214e0f1232b94f2fa9bd98fa8353711dacb112bfcbbb2a"},
{file = "nose-1.3.7-py3-none-any.whl", hash = "sha256:9ff7c6cc443f8c51994b34a667bbcf45afd6d945be7477b52e97516fd17c53ac"},
{file = "nose-1.3.7.tar.gz", hash = "sha256:f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98"},
]
ovh = [
{file = "ovh-0.5.0-py2.py3-none-any.whl", hash = "sha256:03c7a5e7a62e7bc09b899f7692c694360be7db93ebe44428d6605fccda244692"},
{file = "ovh-0.5.0.tar.gz", hash = "sha256:f74d190c4bff0953d76124cb8ed319a8a999138720e42957f0db481ef4746ae8"},
]
pathspec = [
{file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
{file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
]
pluggy = [
{file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"},
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},
]
prettytable = [
{file = "prettytable-0.7.2.tar.bz2", hash = "sha256:853c116513625c738dc3ce1aee148b5b5757a86727e67eff6502c7ca59d43c36"},
{file = "prettytable-0.7.2.tar.gz", hash = "sha256:2d5460dc9db74a32bcc8f9f67de68b2c4f4d2f01fa3bd518764c69156d9cacd9"},
{file = "prettytable-0.7.2.zip", hash = "sha256:a53da3b43d7a5c229b5e3ca2892ef982c46b7923b51e98f0db49956531211c4f"},
]
pycodestyle = [
{file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"},
{file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"},
]
pyflakes = [
{file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"},
{file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"},
]
python-dateutil = [
{file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
{file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
]
regex = [
{file = "regex-2021.8.28-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9d05ad5367c90814099000442b2125535e9d77581855b9bee8780f1b41f2b1a2"},
{file = "regex-2021.8.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3bf1bc02bc421047bfec3343729c4bbbea42605bcfd6d6bfe2c07ade8b12d2a"},
{file = "regex-2021.8.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f6a808044faae658f546dd5f525e921de9fa409de7a5570865467f03a626fc0"},
{file = "regex-2021.8.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a617593aeacc7a691cc4af4a4410031654f2909053bd8c8e7db837f179a630eb"},
{file = "regex-2021.8.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:79aef6b5cd41feff359acaf98e040844613ff5298d0d19c455b3d9ae0bc8c35a"},
{file = "regex-2021.8.28-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0fc1f8f06977c2d4f5e3d3f0d4a08089be783973fc6b6e278bde01f0544ff308"},
{file = "regex-2021.8.28-cp310-cp310-win32.whl", hash = "sha256:6eebf512aa90751d5ef6a7c2ac9d60113f32e86e5687326a50d7686e309f66ed"},
{file = "regex-2021.8.28-cp310-cp310-win_amd64.whl", hash = "sha256:ac88856a8cbccfc14f1b2d0b829af354cc1743cb375e7f04251ae73b2af6adf8"},
{file = "regex-2021.8.28-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:c206587c83e795d417ed3adc8453a791f6d36b67c81416676cad053b4104152c"},
{file = "regex-2021.8.28-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8690ed94481f219a7a967c118abaf71ccc440f69acd583cab721b90eeedb77c"},
{file = "regex-2021.8.28-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:328a1fad67445550b982caa2a2a850da5989fd6595e858f02d04636e7f8b0b13"},
{file = "regex-2021.8.28-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c7cb4c512d2d3b0870e00fbbac2f291d4b4bf2634d59a31176a87afe2777c6f0"},
{file = "regex-2021.8.28-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66256b6391c057305e5ae9209941ef63c33a476b73772ca967d4a2df70520ec1"},
{file = "regex-2021.8.28-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8e44769068d33e0ea6ccdf4b84d80c5afffe5207aa4d1881a629cf0ef3ec398f"},
{file = "regex-2021.8.28-cp36-cp36m-win32.whl", hash = "sha256:08d74bfaa4c7731b8dac0a992c63673a2782758f7cfad34cf9c1b9184f911354"},
{file = "regex-2021.8.28-cp36-cp36m-win_amd64.whl", hash = "sha256:abb48494d88e8a82601af905143e0de838c776c1241d92021e9256d5515b3645"},
{file = "regex-2021.8.28-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b4c220a1fe0d2c622493b0a1fd48f8f991998fb447d3cd368033a4b86cf1127a"},
{file = "regex-2021.8.28-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4a332404baa6665b54e5d283b4262f41f2103c255897084ec8f5487ce7b9e8e"},
{file = "regex-2021.8.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c61dcc1cf9fd165127a2853e2c31eb4fb961a4f26b394ac9fe5669c7a6592892"},
{file = "regex-2021.8.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ee329d0387b5b41a5dddbb6243a21cb7896587a651bebb957e2d2bb8b63c0791"},
{file = "regex-2021.8.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60667673ff9c249709160529ab39667d1ae9fd38634e006bec95611f632e759"},
{file = "regex-2021.8.28-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b844fb09bd9936ed158ff9df0ab601e2045b316b17aa8b931857365ea8586906"},
{file = "regex-2021.8.28-cp37-cp37m-win32.whl", hash = "sha256:4cde065ab33bcaab774d84096fae266d9301d1a2f5519d7bd58fc55274afbf7a"},
{file = "regex-2021.8.28-cp37-cp37m-win_amd64.whl", hash = "sha256:1413b5022ed6ac0d504ba425ef02549a57d0f4276de58e3ab7e82437892704fc"},
{file = "regex-2021.8.28-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ed4b50355b066796dacdd1cf538f2ce57275d001838f9b132fab80b75e8c84dd"},
{file = "regex-2021.8.28-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28fc475f560d8f67cc8767b94db4c9440210f6958495aeae70fac8faec631797"},
{file = "regex-2021.8.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bdc178caebd0f338d57ae445ef8e9b737ddf8fbc3ea187603f65aec5b041248f"},
{file = "regex-2021.8.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:999ad08220467b6ad4bd3dd34e65329dd5d0df9b31e47106105e407954965256"},
{file = "regex-2021.8.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:808ee5834e06f57978da3e003ad9d6292de69d2bf6263662a1a8ae30788e080b"},
{file = "regex-2021.8.28-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d5111d4c843d80202e62b4fdbb4920db1dcee4f9366d6b03294f45ed7b18b42e"},
{file = "regex-2021.8.28-cp38-cp38-win32.whl", hash = "sha256:473858730ef6d6ff7f7d5f19452184cd0caa062a20047f6d6f3e135a4648865d"},
{file = "regex-2021.8.28-cp38-cp38-win_amd64.whl", hash = "sha256:31a99a4796bf5aefc8351e98507b09e1b09115574f7c9dbb9cf2111f7220d2e2"},
{file = "regex-2021.8.28-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:04f6b9749e335bb0d2f68c707f23bb1773c3fb6ecd10edf0f04df12a8920d468"},
{file = "regex-2021.8.28-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b006628fe43aa69259ec04ca258d88ed19b64791693df59c422b607b6ece8bb"},
{file = "regex-2021.8.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:121f4b3185feaade3f85f70294aef3f777199e9b5c0c0245c774ae884b110a2d"},
{file = "regex-2021.8.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a577a21de2ef8059b58f79ff76a4da81c45a75fe0bfb09bc8b7bb4293fa18983"},
{file = "regex-2021.8.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1743345e30917e8c574f273f51679c294effba6ad372db1967852f12c76759d8"},
{file = "regex-2021.8.28-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e1e8406b895aba6caa63d9fd1b6b1700d7e4825f78ccb1e5260551d168db38ed"},
{file = "regex-2021.8.28-cp39-cp39-win32.whl", hash = "sha256:ed283ab3a01d8b53de3a05bfdf4473ae24e43caee7dcb5584e86f3f3e5ab4374"},
{file = "regex-2021.8.28-cp39-cp39-win_amd64.whl", hash = "sha256:610b690b406653c84b7cb6091facb3033500ee81089867ee7d59e675f9ca2b73"},
{file = "regex-2021.8.28.tar.gz", hash = "sha256:f585cbbeecb35f35609edccb95efd95a3e35824cd7752b586503f7e6087303f1"},
]
s3transfer = [
{file = "s3transfer-0.5.0-py3-none-any.whl", hash = "sha256:9c1dc369814391a6bda20ebbf4b70a0f34630592c9aa520856bf384916af2803"},
{file = "s3transfer-0.5.0.tar.gz", hash = "sha256:50ed823e1dc5868ad40c8dc92072f757aa0e653a192845c94a3b676f4a62da4c"},
]
six = [
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
]
toml = [
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
]
typed-ast = [
{file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:2068531575a125b87a41802130fa7e29f26c09a2833fea68d9a40cf33902eba6"},
{file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:c907f561b1e83e93fad565bac5ba9c22d96a54e7ea0267c708bffe863cbe4075"},
{file = "typed_ast-1.4.3-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:1b3ead4a96c9101bef08f9f7d1217c096f31667617b58de957f690c92378b528"},
{file = "typed_ast-1.4.3-cp35-cp35m-win32.whl", hash = "sha256:dde816ca9dac1d9c01dd504ea5967821606f02e510438120091b84e852367428"},
{file = "typed_ast-1.4.3-cp35-cp35m-win_amd64.whl", hash = "sha256:777a26c84bea6cd934422ac2e3b78863a37017618b6e5c08f92ef69853e765d3"},
{file = "typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f"},
{file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:52b1eb8c83f178ab787f3a4283f68258525f8d70f778a2f6dd54d3b5e5fb4341"},
{file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:01ae5f73431d21eead5015997ab41afa53aa1fbe252f9da060be5dad2c730ace"},
{file = "typed_ast-1.4.3-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:c190f0899e9f9f8b6b7863debfb739abcb21a5c054f911ca3596d12b8a4c4c7f"},
{file = "typed_ast-1.4.3-cp36-cp36m-win32.whl", hash = "sha256:398e44cd480f4d2b7ee8d98385ca104e35c81525dd98c519acff1b79bdaac363"},
{file = "typed_ast-1.4.3-cp36-cp36m-win_amd64.whl", hash = "sha256:bff6ad71c81b3bba8fa35f0f1921fb24ff4476235a6e94a26ada2e54370e6da7"},
{file = "typed_ast-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0fb71b8c643187d7492c1f8352f2c15b4c4af3f6338f21681d3681b3dc31a266"},
{file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e"},
{file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04"},
{file = "typed_ast-1.4.3-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899"},
{file = "typed_ast-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:aee0c1256be6c07bd3e1263ff920c325b59849dc95392a05f258bb9b259cf39c"},
{file = "typed_ast-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9ad2c92ec681e02baf81fdfa056fe0d818645efa9af1f1cd5fd6f1bd2bdfd805"},
{file = "typed_ast-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b36b4f3920103a25e1d5d024d155c504080959582b928e91cb608a65c3a49e1a"},
{file = "typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl", hash = "sha256:067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff"},
{file = "typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41"},
{file = "typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39"},
{file = "typed_ast-1.4.3-cp38-cp38-win32.whl", hash = "sha256:f2362f3cb0f3172c42938946dbc5b7843c2a28aec307c49100c8b38764eb6927"},
{file = "typed_ast-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:dd4a21253f42b8d2b48410cb31fe501d32f8b9fbeb1f55063ad102fe9c425e40"},
{file = "typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3"},
{file = "typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl", hash = "sha256:2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4"},
{file = "typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0"},
{file = "typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3"},
{file = "typed_ast-1.4.3-cp39-cp39-win32.whl", hash = "sha256:209596a4ec71d990d71d5e0d312ac935d86930e6eecff6ccc7007fe54d703808"},
{file = "typed_ast-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c"},
{file = "typed_ast-1.4.3.tar.gz", hash = "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65"},
]
typeguard = [
{file = "typeguard-2.12.1-py3-none-any.whl", hash = "sha256:cc15ef2704c9909ef9c80e19c62fb8468c01f75aad12f651922acf4dbe822e02"},
{file = "typeguard-2.12.1.tar.gz", hash = "sha256:c2af8b9bdd7657f4bd27b45336e7930171aead796711bc4cfc99b4731bb9d051"},
]
typing-extensions = [
{file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"},
{file = "typing_extensions-3.10.0.2-py3-none-any.whl", hash = "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34"},
{file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"},
]
urllib3 = [
{file = "urllib3-1.26.6-py2.py3-none-any.whl", hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4"},
{file = "urllib3-1.26.6.tar.gz", hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f"},
]