-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpoetry.lock
3139 lines (2812 loc) · 165 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
# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand.
[[package]]
name = "maturin"
version = "0.14.15"
description = "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "maturin-0.14.15-py3-none-linux_armv6l.whl", hash = "sha256:366642ad2195419d07f53f620e4c8e3a67dacd1a1fd9e98f80eb92103726514b"},
{file = "maturin-0.14.15-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:043787e41a039c47e070e735336ead7161a17112d2ae35db1c6516ad362dc6d7"},
{file = "maturin-0.14.15-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:f99bb7629b175f58725fe4fad3f35efd3376c0933cd9254ab1d259300769b0b6"},
{file = "maturin-0.14.15-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:271e3159e24c2f6def956f6a2f3ec7e3021f4837e33f971c584776596b63c843"},
{file = "maturin-0.14.15-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:c9da505d981c1afd753e08736beb9b4f723ddeb33e4a7ace2918439a079ef003"},
{file = "maturin-0.14.15-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:82743c6a9329720b873063e1ada81256408ef94d665559e8b9a42d8e8c6bef46"},
{file = "maturin-0.14.15-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:e962053ed388b3c19faffa984728a6039865a9e797a28f9f3f6b87de0ffd08f3"},
{file = "maturin-0.14.15-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl", hash = "sha256:a408ddd181260e1fd8d16abd74b95973195f2cfb54c67ff333b39b82f43a99dc"},
{file = "maturin-0.14.15-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad869a487dd9113826d31139b99418dafb363ade88f76e95613add03e3c3b86d"},
{file = "maturin-0.14.15-py3-none-win32.whl", hash = "sha256:7dab9a78524477c68163f330f9eb5d06efe5695616b7e68ab4b3a3256e730f32"},
{file = "maturin-0.14.15-py3-none-win_amd64.whl", hash = "sha256:6b9c309ff7ff602a9a0c4ebe69c13ee48f53d2a1554021239ba26c468352c1ae"},
{file = "maturin-0.14.15-py3-none-win_arm64.whl", hash = "sha256:070ec4eadd533a92a47ec7cc9064248c1b82d01f4a795cb0b16a5781468b7ce9"},
{file = "maturin-0.14.15.tar.gz", hash = "sha256:3fa6007e66fbae1b891623af5900acb90b84c4530d712028b9f1bfa06c34d1a5"},
]
[package.dependencies]
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
[package.extras]
patchelf = ["patchelf"]
zig = ["ziglang (>=0.10.0,<0.11.0)"]
[[package]]
name = "mouseinfo"
version = "0.1.3"
description = "An application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "MouseInfo-0.1.3.tar.gz", hash = "sha256:2c62fb8885062b8e520a3cce0a297c657adcc08c60952eb05bc8256ef6f7f6e7"},
]
[package.dependencies]
pyperclip = "*"
python3-Xlib = {version = "*", markers = "platform_system == \"Linux\" and python_version >= \"3.0\""}
rubicon-objc = {version = "*", markers = "platform_system == \"Darwin\""}
[[package]]
name = "numpy"
version = "1.24.2"
description = "Fundamental package for array computing in Python"
category = "main"
optional = false
python-versions = ">=3.8"
files = [
{file = "numpy-1.24.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eef70b4fc1e872ebddc38cddacc87c19a3709c0e3e5d20bf3954c147b1dd941d"},
{file = "numpy-1.24.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d2859428712785e8a8b7d2b3ef0a1d1565892367b32f915c4a4df44d0e64f5"},
{file = "numpy-1.24.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6524630f71631be2dabe0c541e7675db82651eb998496bbe16bc4f77f0772253"},
{file = "numpy-1.24.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a51725a815a6188c662fb66fb32077709a9ca38053f0274640293a14fdd22978"},
{file = "numpy-1.24.2-cp310-cp310-win32.whl", hash = "sha256:2620e8592136e073bd12ee4536149380695fbe9ebeae845b81237f986479ffc9"},
{file = "numpy-1.24.2-cp310-cp310-win_amd64.whl", hash = "sha256:97cf27e51fa078078c649a51d7ade3c92d9e709ba2bfb97493007103c741f1d0"},
{file = "numpy-1.24.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7de8fdde0003f4294655aa5d5f0a89c26b9f22c0a58790c38fae1ed392d44a5a"},
{file = "numpy-1.24.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4173bde9fa2a005c2c6e2ea8ac1618e2ed2c1c6ec8a7657237854d42094123a0"},
{file = "numpy-1.24.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cecaed30dc14123020f77b03601559fff3e6cd0c048f8b5289f4eeabb0eb281"},
{file = "numpy-1.24.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a23f8440561a633204a67fb44617ce2a299beecf3295f0d13c495518908e910"},
{file = "numpy-1.24.2-cp311-cp311-win32.whl", hash = "sha256:e428c4fbfa085f947b536706a2fc349245d7baa8334f0c5723c56a10595f9b95"},
{file = "numpy-1.24.2-cp311-cp311-win_amd64.whl", hash = "sha256:557d42778a6869c2162deb40ad82612645e21d79e11c1dc62c6e82a2220ffb04"},
{file = "numpy-1.24.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d0a2db9d20117bf523dde15858398e7c0858aadca7c0f088ac0d6edd360e9ad2"},
{file = "numpy-1.24.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c72a6b2f4af1adfe193f7beb91ddf708ff867a3f977ef2ec53c0ffb8283ab9f5"},
{file = "numpy-1.24.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c29e6bd0ec49a44d7690ecb623a8eac5ab8a923bce0bea6293953992edf3a76a"},
{file = "numpy-1.24.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2eabd64ddb96a1239791da78fa5f4e1693ae2dadc82a76bc76a14cbb2b966e96"},
{file = "numpy-1.24.2-cp38-cp38-win32.whl", hash = "sha256:e3ab5d32784e843fc0dd3ab6dcafc67ef806e6b6828dc6af2f689be0eb4d781d"},
{file = "numpy-1.24.2-cp38-cp38-win_amd64.whl", hash = "sha256:76807b4063f0002c8532cfeac47a3068a69561e9c8715efdad3c642eb27c0756"},
{file = "numpy-1.24.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4199e7cfc307a778f72d293372736223e39ec9ac096ff0a2e64853b866a8e18a"},
{file = "numpy-1.24.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:adbdce121896fd3a17a77ab0b0b5eedf05a9834a18699db6829a64e1dfccca7f"},
{file = "numpy-1.24.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:889b2cc88b837d86eda1b17008ebeb679d82875022200c6e8e4ce6cf549b7acb"},
{file = "numpy-1.24.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f64bb98ac59b3ea3bf74b02f13836eb2e24e48e0ab0145bbda646295769bd780"},
{file = "numpy-1.24.2-cp39-cp39-win32.whl", hash = "sha256:63e45511ee4d9d976637d11e6c9864eae50e12dc9598f531c035265991910468"},
{file = "numpy-1.24.2-cp39-cp39-win_amd64.whl", hash = "sha256:a77d3e1163a7770164404607b7ba3967fb49b24782a6ef85d9b5f54126cc39e5"},
{file = "numpy-1.24.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:92011118955724465fb6853def593cf397b4a1367495e0b59a7e69d40c4eb71d"},
{file = "numpy-1.24.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9006288bcf4895917d02583cf3411f98631275bc67cce355a7f39f8c14338fa"},
{file = "numpy-1.24.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:150947adbdfeceec4e5926d956a06865c1c690f2fd902efede4ca6fe2e657c3f"},
{file = "numpy-1.24.2.tar.gz", hash = "sha256:003a9f530e880cb2cd177cba1af7220b9aa42def9c4afc2a2fc3ee6be7eb2b22"},
]
[[package]]
name = "opencv-python"
version = "4.7.0.72"
description = "Wrapper package for OpenCV python bindings."
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "opencv-python-4.7.0.72.tar.gz", hash = "sha256:3424794a711f33284581f3c1e4b071cfc827d02b99d6fd9a35391f517c453306"},
{file = "opencv_python-4.7.0.72-cp37-abi3-macosx_10_16_x86_64.whl", hash = "sha256:d4f8880440c433a0025d78804dda6901d1e8e541a561dda66892d90290aef881"},
{file = "opencv_python-4.7.0.72-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:7a297e7651e22eb17c265ddbbc80e2ba2a8ff4f4a1696a67c45e5f5798245842"},
{file = "opencv_python-4.7.0.72-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd08343654c6b88c5a8c25bf425f8025aed2e3189b4d7306b5861d32affaf737"},
{file = "opencv_python-4.7.0.72-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebfc0a3a2f57716e709028b992e4de7fd8752105d7a768531c4f434043c6f9ff"},
{file = "opencv_python-4.7.0.72-cp37-abi3-win32.whl", hash = "sha256:eda115797b114fc16ca6f182b91c5d984f0015c19bec3145e55d33d708e9bae1"},
{file = "opencv_python-4.7.0.72-cp37-abi3-win_amd64.whl", hash = "sha256:812af57553ec1c6709060c63f6b7e9ad07ddc0f592f3ccc6d00c71e0fe0e6376"},
]
[package.dependencies]
numpy = [
{version = ">=1.21.0", markers = "python_version <= \"3.9\" and platform_system == \"Darwin\" and platform_machine == \"arm64\""},
{version = ">=1.21.2", markers = "python_version >= \"3.10\""},
{version = ">=1.21.4", markers = "python_version >= \"3.10\" and platform_system == \"Darwin\""},
{version = ">=1.22.0", markers = "python_version >= \"3.11\""},
{version = ">=1.19.3", markers = "python_version >= \"3.6\" and platform_system == \"Linux\" and platform_machine == \"aarch64\" or python_version >= \"3.9\""},
{version = ">=1.17.0", markers = "python_version >= \"3.7\""},
{version = ">=1.17.3", markers = "python_version >= \"3.8\""},
]
[[package]]
name = "pillow"
version = "8.3.1"
description = "Python Imaging Library (Fork)"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "Pillow-8.3.1-1-cp36-cp36m-win_amd64.whl", hash = "sha256:fd7eef578f5b2200d066db1b50c4aa66410786201669fb76d5238b007918fb24"},
{file = "Pillow-8.3.1-1-cp37-cp37m-win_amd64.whl", hash = "sha256:75e09042a3b39e0ea61ce37e941221313d51a9c26b8e54e12b3ececccb71718a"},
{file = "Pillow-8.3.1-1-cp38-cp38-win_amd64.whl", hash = "sha256:c0e0550a404c69aab1e04ae89cca3e2a042b56ab043f7f729d984bf73ed2a093"},
{file = "Pillow-8.3.1-1-cp39-cp39-win_amd64.whl", hash = "sha256:479ab11cbd69612acefa8286481f65c5dece2002ffaa4f9db62682379ca3bb77"},
{file = "Pillow-8.3.1-1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:f156d6ecfc747ee111c167f8faf5f4953761b5e66e91a4e6767e548d0f80129c"},
{file = "Pillow-8.3.1-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:196560dba4da7a72c5e7085fccc5938ab4075fd37fe8b5468869724109812edd"},
{file = "Pillow-8.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29c9569049d04aaacd690573a0398dbd8e0bf0255684fee512b413c2142ab723"},
{file = "Pillow-8.3.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c088a000dfdd88c184cc7271bfac8c5b82d9efa8637cd2b68183771e3cf56f04"},
{file = "Pillow-8.3.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:fc214a6b75d2e0ea7745488da7da3c381f41790812988c7a92345978414fad37"},
{file = "Pillow-8.3.1-cp36-cp36m-win32.whl", hash = "sha256:a17ca41f45cf78c2216ebfab03add7cc350c305c38ff34ef4eef66b7d76c5229"},
{file = "Pillow-8.3.1-cp36-cp36m-win_amd64.whl", hash = "sha256:67b3666b544b953a2777cb3f5a922e991be73ab32635666ee72e05876b8a92de"},
{file = "Pillow-8.3.1-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:ff04c373477723430dce2e9d024c708a047d44cf17166bf16e604b379bf0ca14"},
{file = "Pillow-8.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9364c81b252d8348e9cc0cb63e856b8f7c1b340caba6ee7a7a65c968312f7dab"},
{file = "Pillow-8.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a2f381932dca2cf775811a008aa3027671ace723b7a38838045b1aee8669fdcf"},
{file = "Pillow-8.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d0da39795049a9afcaadec532e7b669b5ebbb2a9134576ebcc15dd5bdae33cc0"},
{file = "Pillow-8.3.1-cp37-cp37m-win32.whl", hash = "sha256:2b6dfa068a8b6137da34a4936f5a816aba0ecc967af2feeb32c4393ddd671cba"},
{file = "Pillow-8.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a4eef1ff2d62676deabf076f963eda4da34b51bc0517c70239fafed1d5b51500"},
{file = "Pillow-8.3.1-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:660a87085925c61a0dcc80efb967512ac34dbb256ff7dd2b9b4ee8dbdab58cf4"},
{file = "Pillow-8.3.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:15a2808e269a1cf2131930183dcc0419bc77bb73eb54285dde2706ac9939fa8e"},
{file = "Pillow-8.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:969cc558cca859cadf24f890fc009e1bce7d7d0386ba7c0478641a60199adf79"},
{file = "Pillow-8.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2ee77c14a0299d0541d26f3d8500bb57e081233e3fa915fa35abd02c51fa7fae"},
{file = "Pillow-8.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c11003197f908878164f0e6da15fce22373ac3fc320cda8c9d16e6bba105b844"},
{file = "Pillow-8.3.1-cp38-cp38-win32.whl", hash = "sha256:3f08bd8d785204149b5b33e3b5f0ebbfe2190ea58d1a051c578e29e39bfd2367"},
{file = "Pillow-8.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:70af7d222df0ff81a2da601fab42decb009dc721545ed78549cb96e3a1c5f0c8"},
{file = "Pillow-8.3.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:37730f6e68bdc6a3f02d2079c34c532330d206429f3cee651aab6b66839a9f0e"},
{file = "Pillow-8.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4bc3c7ef940eeb200ca65bd83005eb3aae8083d47e8fcbf5f0943baa50726856"},
{file = "Pillow-8.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c35d09db702f4185ba22bb33ef1751ad49c266534339a5cebeb5159d364f6f82"},
{file = "Pillow-8.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b2efa07f69dc395d95bb9ef3299f4ca29bcb2157dc615bae0b42c3c20668ffc"},
{file = "Pillow-8.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cc866706d56bd3a7dbf8bac8660c6f6462f2f2b8a49add2ba617bc0c54473d83"},
{file = "Pillow-8.3.1-cp39-cp39-win32.whl", hash = "sha256:9a211b663cf2314edbdb4cf897beeb5c9ee3810d1d53f0e423f06d6ebbf9cd5d"},
{file = "Pillow-8.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:c2a5ff58751670292b406b9f06e07ed1446a4b13ffced6b6cab75b857485cbc8"},
{file = "Pillow-8.3.1-pp36-pypy36_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c379425c2707078dfb6bfad2430728831d399dc95a7deeb92015eb4c92345eaf"},
{file = "Pillow-8.3.1-pp36-pypy36_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:114f816e4f73f9ec06997b2fde81a92cbf0777c9e8f462005550eed6bae57e63"},
{file = "Pillow-8.3.1-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8960a8a9f4598974e4c2aeb1bff9bdd5db03ee65fd1fce8adf3223721aa2a636"},
{file = "Pillow-8.3.1-pp37-pypy37_pp73-macosx_10_10_x86_64.whl", hash = "sha256:147bd9e71fb9dcf08357b4d530b5167941e222a6fd21f869c7911bac40b9994d"},
{file = "Pillow-8.3.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1fd5066cd343b5db88c048d971994e56b296868766e461b82fa4e22498f34d77"},
{file = "Pillow-8.3.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f4ebde71785f8bceb39dcd1e7f06bcc5d5c3cf48b9f69ab52636309387b097c8"},
{file = "Pillow-8.3.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:1c03e24be975e2afe70dfc5da6f187eea0b49a68bb2b69db0f30a61b7031cee4"},
{file = "Pillow-8.3.1.tar.gz", hash = "sha256:2cac53839bfc5cece8fdbe7f084d5e3ee61e1303cccc86511d351adcb9e2c792"},
]
[[package]]
name = "pyautogui"
version = "0.9.53"
description = "PyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks. For Windows, macOS, and Linux, on Python 3 and 2."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "PyAutoGUI-0.9.53.tar.gz", hash = "sha256:d31de8f712218d90be7fc98091fce1a12a3e9196e0c814eb9afd73bb2ec97035"},
]
[package.dependencies]
mouseinfo = "*"
pygetwindow = ">=0.0.5"
pymsgbox = "*"
pyobjc = {version = "*", markers = "platform_system == \"Darwin\""}
pyobjc-core = {version = "*", markers = "platform_system == \"Darwin\""}
pyscreeze = ">=0.1.21"
python3-Xlib = {version = "*", markers = "platform_system == \"Linux\" and python_version >= \"3.0\""}
PyTweening = ">=1.0.1"
[[package]]
name = "pygetwindow"
version = "0.0.9"
description = "A simple, cross-platform module for obtaining GUI information on application's windows."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "PyGetWindow-0.0.9.tar.gz", hash = "sha256:17894355e7d2b305cd832d717708384017c1698a90ce24f6f7fbf0242dd0a688"},
]
[package.dependencies]
pyrect = "*"
[[package]]
name = "pymsgbox"
version = "1.0.9"
description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "PyMsgBox-1.0.9.tar.gz", hash = "sha256:2194227de8bff7a3d6da541848705a155dcbb2a06ee120d9f280a1d7f51263ff"},
]
[[package]]
name = "pyobjc"
version = "9.1.1"
description = "Python<->ObjC Interoperability Module"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-9.1.1-py3-none-any.whl", hash = "sha256:5c4482728b9afa1a0e49bc57624dbdcd33d684b47f2a3e36d61cd31b27818e72"},
{file = "pyobjc-9.1.1.tar.gz", hash = "sha256:79071b1a71238708a34e87e50d5693c8a31206c567a125b0db7f500f841c64c9"},
]
[package.dependencies]
pyobjc-core = "9.1.1"
pyobjc-framework-Accessibility = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-Accounts = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-AddressBook = "9.1.1"
pyobjc-framework-AdServices = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-AdSupport = {version = "9.1.1", markers = "platform_release >= \"18.0\""}
pyobjc-framework-AppleScriptKit = "9.1.1"
pyobjc-framework-AppleScriptObjC = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-ApplicationServices = "9.1.1"
pyobjc-framework-AppTrackingTransparency = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-AudioVideoBridging = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-AuthenticationServices = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-AutomaticAssessmentConfiguration = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-Automator = "9.1.1"
pyobjc-framework-AVFoundation = {version = "9.1.1", markers = "platform_release >= \"11.0\""}
pyobjc-framework-AVKit = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-AVRouting = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-BackgroundAssets = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-BusinessChat = {version = "9.1.1", markers = "platform_release >= \"18.0\""}
pyobjc-framework-CalendarStore = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-CallKit = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-CFNetwork = "9.1.1"
pyobjc-framework-ClassKit = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-CloudKit = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-Cocoa = "9.1.1"
pyobjc-framework-Collaboration = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-ColorSync = {version = "9.1.1", markers = "platform_release >= \"17.0\""}
pyobjc-framework-Contacts = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-ContactsUI = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-CoreAudio = "9.1.1"
pyobjc-framework-CoreAudioKit = "9.1.1"
pyobjc-framework-CoreBluetooth = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-CoreData = "9.1.1"
pyobjc-framework-CoreHaptics = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-CoreLocation = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-CoreMedia = {version = "9.1.1", markers = "platform_release >= \"11.0\""}
pyobjc-framework-CoreMediaIO = {version = "9.1.1", markers = "platform_release >= \"11.0\""}
pyobjc-framework-CoreMIDI = "9.1.1"
pyobjc-framework-CoreML = {version = "9.1.1", markers = "platform_release >= \"17.0\""}
pyobjc-framework-CoreMotion = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-CoreServices = "9.1.1"
pyobjc-framework-CoreSpotlight = {version = "9.1.1", markers = "platform_release >= \"17.0\""}
pyobjc-framework-CoreText = "9.1.1"
pyobjc-framework-CoreWLAN = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-CryptoTokenKit = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-DataDetection = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-DeviceCheck = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-DictionaryServices = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-DiscRecording = "9.1.1"
pyobjc-framework-DiscRecordingUI = "9.1.1"
pyobjc-framework-DiskArbitration = "9.1.1"
pyobjc-framework-DVDPlayback = "9.1.1"
pyobjc-framework-EventKit = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-ExceptionHandling = "9.1.1"
pyobjc-framework-ExecutionPolicy = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-ExtensionKit = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-ExternalAccessory = {version = "9.1.1", markers = "platform_release >= \"17.0\""}
pyobjc-framework-FileProvider = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-FileProviderUI = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-FinderSync = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-FSEvents = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-GameCenter = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-GameController = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-GameKit = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-GameplayKit = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-HealthKit = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-ImageCaptureCore = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-IMServicePlugIn = {version = "9.1.1", markers = "platform_release >= \"11.0\""}
pyobjc-framework-InputMethodKit = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-InstallerPlugins = "9.1.1"
pyobjc-framework-InstantMessage = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-Intents = {version = "9.1.1", markers = "platform_release >= \"16.0\""}
pyobjc-framework-IntentsUI = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-IOBluetooth = "9.1.1"
pyobjc-framework-IOBluetoothUI = "9.1.1"
pyobjc-framework-IOSurface = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-iTunesLibrary = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-KernelManagement = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-LatentSemanticMapping = "9.1.1"
pyobjc-framework-LaunchServices = "9.1.1"
pyobjc-framework-libdispatch = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-libxpc = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-LinkPresentation = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-LocalAuthentication = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-LocalAuthenticationEmbeddedUI = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-MailKit = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-MapKit = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-MediaAccessibility = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-MediaLibrary = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-MediaPlayer = {version = "9.1.1", markers = "platform_release >= \"16.0\""}
pyobjc-framework-MediaToolbox = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-Metal = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-MetalFX = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-MetalKit = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-MetalPerformanceShaders = {version = "9.1.1", markers = "platform_release >= \"17.0\""}
pyobjc-framework-MetalPerformanceShadersGraph = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-MetricKit = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-MLCompute = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-ModelIO = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-MultipeerConnectivity = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-NaturalLanguage = {version = "9.1.1", markers = "platform_release >= \"18.0\""}
pyobjc-framework-NetFS = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-Network = {version = "9.1.1", markers = "platform_release >= \"18.0\""}
pyobjc-framework-NetworkExtension = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-NotificationCenter = {version = "9.1.1", markers = "platform_release >= \"14.0\""}
pyobjc-framework-OpenDirectory = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-OSAKit = "9.1.1"
pyobjc-framework-OSLog = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-PassKit = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-PencilKit = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-PHASE = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-Photos = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-PhotosUI = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-PreferencePanes = "9.1.1"
pyobjc-framework-PubSub = {version = "9.1.1", markers = "platform_release >= \"9.0\" and platform_release < \"18.0\""}
pyobjc-framework-PushKit = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-Quartz = "9.1.1"
pyobjc-framework-QuickLookThumbnailing = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-ReplayKit = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-SafariServices = {version = "9.1.1", markers = "platform_release >= \"15.0\""}
pyobjc-framework-SafetyKit = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-SceneKit = {version = "9.1.1", markers = "platform_release >= \"11.0\""}
pyobjc-framework-ScreenCaptureKit = {version = "9.1.1", markers = "platform_release >= \"21.4\""}
pyobjc-framework-ScreenSaver = "9.1.1"
pyobjc-framework-ScreenTime = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-ScriptingBridge = {version = "9.1.1", markers = "platform_release >= \"9.0\""}
pyobjc-framework-SearchKit = "9.1.1"
pyobjc-framework-Security = "9.1.1"
pyobjc-framework-SecurityFoundation = "9.1.1"
pyobjc-framework-SecurityInterface = "9.1.1"
pyobjc-framework-ServiceManagement = {version = "9.1.1", markers = "platform_release >= \"10.0\""}
pyobjc-framework-SharedWithYou = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-SharedWithYouCore = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-ShazamKit = {version = "9.1.1", markers = "platform_release >= \"21.0\""}
pyobjc-framework-Social = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-SoundAnalysis = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-Speech = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-SpriteKit = {version = "9.1.1", markers = "platform_release >= \"13.0\""}
pyobjc-framework-StoreKit = {version = "9.1.1", markers = "platform_release >= \"11.0\""}
pyobjc-framework-SyncServices = "9.1.1"
pyobjc-framework-SystemConfiguration = "9.1.1"
pyobjc-framework-SystemExtensions = {version = "9.1.1", markers = "platform_release >= \"19.0\""}
pyobjc-framework-ThreadNetwork = {version = "9.1.1", markers = "platform_release >= \"22.0\""}
pyobjc-framework-UniformTypeIdentifiers = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-UserNotifications = {version = "9.1.1", markers = "platform_release >= \"18.0\""}
pyobjc-framework-UserNotificationsUI = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-VideoSubscriberAccount = {version = "9.1.1", markers = "platform_release >= \"18.0\""}
pyobjc-framework-VideoToolbox = {version = "9.1.1", markers = "platform_release >= \"12.0\""}
pyobjc-framework-Virtualization = {version = "9.1.1", markers = "platform_release >= \"20.0\""}
pyobjc-framework-Vision = {version = "9.1.1", markers = "platform_release >= \"17.0\""}
pyobjc-framework-WebKit = "9.1.1"
[package.extras]
allbindings = ["pyobjc-core (==9.1.1)", "pyobjc-framework-AVFoundation (==9.1.1)", "pyobjc-framework-AVKit (==9.1.1)", "pyobjc-framework-AVRouting (==9.1.1)", "pyobjc-framework-Accessibility (==9.1.1)", "pyobjc-framework-Accounts (==9.1.1)", "pyobjc-framework-AdServices (==9.1.1)", "pyobjc-framework-AdSupport (==9.1.1)", "pyobjc-framework-AddressBook (==9.1.1)", "pyobjc-framework-AppTrackingTransparency (==9.1.1)", "pyobjc-framework-AppleScriptKit (==9.1.1)", "pyobjc-framework-AppleScriptObjC (==9.1.1)", "pyobjc-framework-ApplicationServices (==9.1.1)", "pyobjc-framework-AudioVideoBridging (==9.1.1)", "pyobjc-framework-AuthenticationServices (==9.1.1)", "pyobjc-framework-AutomaticAssessmentConfiguration (==9.1.1)", "pyobjc-framework-Automator (==9.1.1)", "pyobjc-framework-BackgroundAssets (==9.1.1)", "pyobjc-framework-BusinessChat (==9.1.1)", "pyobjc-framework-CFNetwork (==9.1.1)", "pyobjc-framework-CalendarStore (==9.1.1)", "pyobjc-framework-CallKit (==9.1.1)", "pyobjc-framework-ClassKit (==9.1.1)", "pyobjc-framework-CloudKit (==9.1.1)", "pyobjc-framework-Cocoa (==9.1.1)", "pyobjc-framework-Collaboration (==9.1.1)", "pyobjc-framework-ColorSync (==9.1.1)", "pyobjc-framework-Contacts (==9.1.1)", "pyobjc-framework-ContactsUI (==9.1.1)", "pyobjc-framework-CoreAudio (==9.1.1)", "pyobjc-framework-CoreAudioKit (==9.1.1)", "pyobjc-framework-CoreBluetooth (==9.1.1)", "pyobjc-framework-CoreData (==9.1.1)", "pyobjc-framework-CoreHaptics (==9.1.1)", "pyobjc-framework-CoreLocation (==9.1.1)", "pyobjc-framework-CoreMIDI (==9.1.1)", "pyobjc-framework-CoreML (==9.1.1)", "pyobjc-framework-CoreMedia (==9.1.1)", "pyobjc-framework-CoreMediaIO (==9.1.1)", "pyobjc-framework-CoreMotion (==9.1.1)", "pyobjc-framework-CoreServices (==9.1.1)", "pyobjc-framework-CoreSpotlight (==9.1.1)", "pyobjc-framework-CoreText (==9.1.1)", "pyobjc-framework-CoreWLAN (==9.1.1)", "pyobjc-framework-CryptoTokenKit (==9.1.1)", "pyobjc-framework-DVDPlayback (==9.1.1)", "pyobjc-framework-DataDetection (==9.1.1)", "pyobjc-framework-DeviceCheck (==9.1.1)", "pyobjc-framework-DictionaryServices (==9.1.1)", "pyobjc-framework-DiscRecording (==9.1.1)", "pyobjc-framework-DiscRecordingUI (==9.1.1)", "pyobjc-framework-DiskArbitration (==9.1.1)", "pyobjc-framework-EventKit (==9.1.1)", "pyobjc-framework-ExceptionHandling (==9.1.1)", "pyobjc-framework-ExecutionPolicy (==9.1.1)", "pyobjc-framework-ExtensionKit (==9.1.1)", "pyobjc-framework-ExternalAccessory (==9.1.1)", "pyobjc-framework-FSEvents (==9.1.1)", "pyobjc-framework-FileProvider (==9.1.1)", "pyobjc-framework-FileProviderUI (==9.1.1)", "pyobjc-framework-FinderSync (==9.1.1)", "pyobjc-framework-GameCenter (==9.1.1)", "pyobjc-framework-GameController (==9.1.1)", "pyobjc-framework-GameKit (==9.1.1)", "pyobjc-framework-GameplayKit (==9.1.1)", "pyobjc-framework-HealthKit (==9.1.1)", "pyobjc-framework-IMServicePlugIn (==9.1.1)", "pyobjc-framework-IOBluetooth (==9.1.1)", "pyobjc-framework-IOBluetoothUI (==9.1.1)", "pyobjc-framework-IOSurface (==9.1.1)", "pyobjc-framework-ImageCaptureCore (==9.1.1)", "pyobjc-framework-InputMethodKit (==9.1.1)", "pyobjc-framework-InstallerPlugins (==9.1.1)", "pyobjc-framework-InstantMessage (==9.1.1)", "pyobjc-framework-Intents (==9.1.1)", "pyobjc-framework-IntentsUI (==9.1.1)", "pyobjc-framework-KernelManagement (==9.1.1)", "pyobjc-framework-LatentSemanticMapping (==9.1.1)", "pyobjc-framework-LaunchServices (==9.1.1)", "pyobjc-framework-LinkPresentation (==9.1.1)", "pyobjc-framework-LocalAuthentication (==9.1.1)", "pyobjc-framework-LocalAuthenticationEmbeddedUI (==9.1.1)", "pyobjc-framework-MLCompute (==9.1.1)", "pyobjc-framework-MailKit (==9.1.1)", "pyobjc-framework-MapKit (==9.1.1)", "pyobjc-framework-MediaAccessibility (==9.1.1)", "pyobjc-framework-MediaLibrary (==9.1.1)", "pyobjc-framework-MediaPlayer (==9.1.1)", "pyobjc-framework-MediaToolbox (==9.1.1)", "pyobjc-framework-Metal (==9.1.1)", "pyobjc-framework-MetalFX (==9.1.1)", "pyobjc-framework-MetalKit (==9.1.1)", "pyobjc-framework-MetalPerformanceShaders (==9.1.1)", "pyobjc-framework-MetalPerformanceShadersGraph (==9.1.1)", "pyobjc-framework-MetricKit (==9.1.1)", "pyobjc-framework-ModelIO (==9.1.1)", "pyobjc-framework-MultipeerConnectivity (==9.1.1)", "pyobjc-framework-NaturalLanguage (==9.1.1)", "pyobjc-framework-NetFS (==9.1.1)", "pyobjc-framework-Network (==9.1.1)", "pyobjc-framework-NetworkExtension (==9.1.1)", "pyobjc-framework-NotificationCenter (==9.1.1)", "pyobjc-framework-OSAKit (==9.1.1)", "pyobjc-framework-OSLog (==9.1.1)", "pyobjc-framework-OpenDirectory (==9.1.1)", "pyobjc-framework-PHASE (==9.1.1)", "pyobjc-framework-PassKit (==9.1.1)", "pyobjc-framework-PencilKit (==9.1.1)", "pyobjc-framework-Photos (==9.1.1)", "pyobjc-framework-PhotosUI (==9.1.1)", "pyobjc-framework-PreferencePanes (==9.1.1)", "pyobjc-framework-PubSub (==9.1.1)", "pyobjc-framework-PushKit (==9.1.1)", "pyobjc-framework-Quartz (==9.1.1)", "pyobjc-framework-QuickLookThumbnailing (==9.1.1)", "pyobjc-framework-ReplayKit (==9.1.1)", "pyobjc-framework-SafariServices (==9.1.1)", "pyobjc-framework-SafetyKit (==9.1.1)", "pyobjc-framework-SceneKit (==9.1.1)", "pyobjc-framework-ScreenCaptureKit (==9.1.1)", "pyobjc-framework-ScreenSaver (==9.1.1)", "pyobjc-framework-ScreenTime (==9.1.1)", "pyobjc-framework-ScriptingBridge (==9.1.1)", "pyobjc-framework-SearchKit (==9.1.1)", "pyobjc-framework-Security (==9.1.1)", "pyobjc-framework-SecurityFoundation (==9.1.1)", "pyobjc-framework-SecurityInterface (==9.1.1)", "pyobjc-framework-ServiceManagement (==9.1.1)", "pyobjc-framework-SharedWithYou (==9.1.1)", "pyobjc-framework-SharedWithYouCore (==9.1.1)", "pyobjc-framework-ShazamKit (==9.1.1)", "pyobjc-framework-Social (==9.1.1)", "pyobjc-framework-SoundAnalysis (==9.1.1)", "pyobjc-framework-Speech (==9.1.1)", "pyobjc-framework-SpriteKit (==9.1.1)", "pyobjc-framework-StoreKit (==9.1.1)", "pyobjc-framework-SyncServices (==9.1.1)", "pyobjc-framework-SystemConfiguration (==9.1.1)", "pyobjc-framework-SystemExtensions (==9.1.1)", "pyobjc-framework-ThreadNetwork (==9.1.1)", "pyobjc-framework-UniformTypeIdentifiers (==9.1.1)", "pyobjc-framework-UserNotifications (==9.1.1)", "pyobjc-framework-UserNotificationsUI (==9.1.1)", "pyobjc-framework-VideoSubscriberAccount (==9.1.1)", "pyobjc-framework-VideoToolbox (==9.1.1)", "pyobjc-framework-Virtualization (==9.1.1)", "pyobjc-framework-Vision (==9.1.1)", "pyobjc-framework-WebKit (==9.1.1)", "pyobjc-framework-iTunesLibrary (==9.1.1)", "pyobjc-framework-libdispatch (==9.1.1)", "pyobjc-framework-libxpc (==9.1.1)"]
[[package]]
name = "pyobjc-core"
version = "9.1.1"
description = "Python<->ObjC Interoperability Module"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-core-9.1.1.tar.gz", hash = "sha256:4b6cb9053b5fcd3c0e76b8c8105a8110786b20f3403c5643a688c5ec51c55c6b"},
{file = "pyobjc_core-9.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4bd07049fd9fe5b40e4b7c468af9cf942508387faf383a5acb043d20627bad2c"},
{file = "pyobjc_core-9.1.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1a8307527621729ff2ab67860e7ed84f76ad0da881b248c2ef31e0da0088e4ba"},
{file = "pyobjc_core-9.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:083004d28b92ccb483a41195c600728854843b0486566aba2d6e63eef51f80e6"},
{file = "pyobjc_core-9.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d61e9517d451bc062a7fae8b3648f4deba4fa54a24926fa1cf581b90ef4ced5a"},
{file = "pyobjc_core-9.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:1626909916603a3b04c07c721cf1af0e0b892cec85bb3db98d05ba024f1786fc"},
{file = "pyobjc_core-9.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2dde96462b52e952515d142e2afbb6913624a02c13582047e06211e6c3993728"},
]
[[package]]
name = "pyobjc-framework-accessibility"
version = "9.1.1"
description = "Wrappers for the framework Accessibility on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-Accessibility-9.1.1.tar.gz", hash = "sha256:f013bbe542d5a648578cff20bb8f25490482d34d14cd40a6637759c98f5c049c"},
{file = "pyobjc_framework_Accessibility-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:faefcddf6638b958cd8535cf55d1138e3e911d8bfe782df6bbe4c8fa044613ee"},
{file = "pyobjc_framework_Accessibility-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:81f1ff185741c6405b6766b6327d3f9ecd9de660e5cab93875d47258aa8aecd2"},
{file = "pyobjc_framework_Accessibility-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a4c81c645b0326b1ac6792c5cadb1b86028160183b05425914f5886aa4c3b2a3"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-Quartz = ">=9.1.1"
[[package]]
name = "pyobjc-framework-accounts"
version = "9.1.1"
description = "Wrappers for the framework Accounts on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-Accounts-9.1.1.tar.gz", hash = "sha256:8329e0ec461399a603adbcaa58bb9ca44d96815699f1421c8da4527d37ae5f3d"},
{file = "pyobjc_framework_Accounts-9.1.1-py2.py3-none-any.whl", hash = "sha256:4d464f975e7f2d8ee7cf1a61013410b62ac8383de31ef795722aa8b574e27dc9"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-addressbook"
version = "9.1.1"
description = "Wrappers for the framework AddressBook on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AddressBook-9.1.1.tar.gz", hash = "sha256:8849edfe591dca4e6bfe45abcb7c451f2ee2ba4ecb8adc2f35d4e5bd14d66247"},
{file = "pyobjc_framework_AddressBook-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8344ac475f40eae5ac2195fbc5d5a1a380f4fa2ab340c983c21f2341ca1cf55f"},
{file = "pyobjc_framework_AddressBook-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d6091159b62aa0bcf6149efabd2d71a75915752db89ec6cad58aa8799a484ac6"},
{file = "pyobjc_framework_AddressBook-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:b8627bee7c82017dcf1cb667fd892b72f038f80072922ebe369dbfd3ca70d765"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-adservices"
version = "9.1.1"
description = "Wrappers for the framework AdServices on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AdServices-9.1.1.tar.gz", hash = "sha256:4e4284fa06072ad11cb73b906540259638f2c5122c23f2f897a6e008ec7a5b46"},
{file = "pyobjc_framework_AdServices-9.1.1-py2.py3-none-any.whl", hash = "sha256:9f60ea9150a8ca4e9511cd5c2786877b5e20f42d6418236341a4f5e8ca7dea8d"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-adsupport"
version = "9.1.1"
description = "Wrappers for the framework AdSupport on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AdSupport-9.1.1.tar.gz", hash = "sha256:d46e824b74706043494b17e7515030608938c89f1cc3c0c9530e3e010cf4f8f6"},
{file = "pyobjc_framework_AdSupport-9.1.1-py2.py3-none-any.whl", hash = "sha256:7777aaf53c281bb5f3ee3f26988609570ed2103836d708e7dde72014d02d4863"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-applescriptkit"
version = "9.1.1"
description = "Wrappers for the framework AppleScriptKit on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AppleScriptKit-9.1.1.tar.gz", hash = "sha256:49589d8c021aa6eb59240c6ea56477ffe423bb63f623011cc9e3aa6eed90184a"},
{file = "pyobjc_framework_AppleScriptKit-9.1.1-py2.py3-none-any.whl", hash = "sha256:d83c2362edbc5be22a89fc465d698aa113a0f201d3d3c2cb7b63478cd1e7220b"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-applescriptobjc"
version = "9.1.1"
description = "Wrappers for the framework AppleScriptObjC on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AppleScriptObjC-9.1.1.tar.gz", hash = "sha256:b1b6307599d964feebbdc9558f3f9cb758a692cb00dbd0e70bde6f71d1622097"},
{file = "pyobjc_framework_AppleScriptObjC-9.1.1-py2.py3-none-any.whl", hash = "sha256:b55c1de2b1712c0730f57a593e9c7943d5f90d5724065bda1aa77568a0a3b2f4"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-applicationservices"
version = "9.1.1"
description = "Wrappers for the framework ApplicationServices on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-ApplicationServices-9.1.1.tar.gz", hash = "sha256:50c613bee364150bbd6cd992ca32b0848a780922cb57d112f6a4a56e29802e19"},
{file = "pyobjc_framework_ApplicationServices-9.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9286c05d80a6aafc7388a4c2a35801db9ea6bab960acf2df079110debb659cb"},
{file = "pyobjc_framework_ApplicationServices-9.1.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3db1c79d7420052320529432e8562cd339a7ef0841df83a85bbf3648abb55b6b"},
{file = "pyobjc_framework_ApplicationServices-9.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:baf5a0d72c9e2d2a3b402823a2ea53eccdc27b8b9319d61cee7d753a30cb9411"},
{file = "pyobjc_framework_ApplicationServices-9.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7cc5aad93bb6b178f838fe9b78cdcf1217c7baab157b1f3525e0acf696cc3490"},
{file = "pyobjc_framework_ApplicationServices-9.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:a03434605873b9f83255a0b16bbc539d06afd77f5969a3b11a1fc293dfd56680"},
{file = "pyobjc_framework_ApplicationServices-9.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9f18e9b92674be0e503a2bd451a328693450e6f80ee510bbc375238b14117e24"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-Quartz = ">=9.1.1"
[[package]]
name = "pyobjc-framework-apptrackingtransparency"
version = "9.1.1"
description = "Wrappers for the framework AppTrackingTransparency on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AppTrackingTransparency-9.1.1.tar.gz", hash = "sha256:fe16ec15ecbc306dd88fb2957b59fcb4ef0a8b826efe5f51ebb7038cd4bec1df"},
{file = "pyobjc_framework_AppTrackingTransparency-9.1.1-py2.py3-none-any.whl", hash = "sha256:7550b75a734ada61e64ce1ea72ca8c71b2d23210c4bd215e34b5c3dd14d57fbc"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-audiovideobridging"
version = "9.1.1"
description = "Wrappers for the framework AudioVideoBridging on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AudioVideoBridging-9.1.1.tar.gz", hash = "sha256:b59c68574e2c7baee13c48b8a66c1b8279f4cc7219db49ab1a3fddd5366e83ee"},
{file = "pyobjc_framework_AudioVideoBridging-9.1.1-py2.py3-none-any.whl", hash = "sha256:b9129a59cbaa57a445822f0abea283bbe52a7553a1fb668ce4746927ad5ab888"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-authenticationservices"
version = "9.1.1"
description = "Wrappers for the framework AuthenticationServices on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AuthenticationServices-9.1.1.tar.gz", hash = "sha256:cc70578d3dacc1bb11316f3052d986737e997b7ce084380373a47e260c633a86"},
{file = "pyobjc_framework_AuthenticationServices-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3dcf71c28ea9c9911f82a6953bad23c9dba1ee86f86b72058baec181ce646cde"},
{file = "pyobjc_framework_AuthenticationServices-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:4916b5d25a2ca6c2efbc53c17e0fb05ad0bbc3f74ec30a44a957077bc52262c2"},
{file = "pyobjc_framework_AuthenticationServices-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8460c6322b2dbdd79765ec4ad18d0207c4504138a1aefa0393d5fe002650229e"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-automaticassessmentconfiguration"
version = "9.1.1"
description = "Wrappers for the framework AutomaticAssessmentConfiguration on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AutomaticAssessmentConfiguration-9.1.1.tar.gz", hash = "sha256:9b936e29c2585ebfe243c0cc3e762d432d32224100add996aa86ff3e14de594e"},
{file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:5e63150cb698eaca78cb2397666e180df57875139fc3357fb4093f54264588d2"},
{file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:e5e34475283b54de51a76338478a54ae05c082b64e36dd337da49b6d85b0d931"},
{file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:24b30677e3fa68e607582112fecfd0fa1c3263465a37b290f93646a553b4637a"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-automator"
version = "9.1.1"
description = "Wrappers for the framework Automator on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-Automator-9.1.1.tar.gz", hash = "sha256:cf07c1001e494ce099bfa5fb12da5546d31138b256b3bd03ff3549cbe4197170"},
{file = "pyobjc_framework_Automator-9.1.1-py2.py3-none-any.whl", hash = "sha256:284395b6b9e6b6183f0670f29f8b6d411b1e9ad482ae34405dae71bdcf6f3c46"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-avfoundation"
version = "9.1.1"
description = "Wrappers for the framework AVFoundation on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AVFoundation-9.1.1.tar.gz", hash = "sha256:db7505043139693628e2e84092af53c3876ec590ebfea67fd287e460e2427d35"},
{file = "pyobjc_framework_AVFoundation-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4eb7253a09f92fdde604af99b07dc5bbfeb47d0212d04924f4f253e21407bd42"},
{file = "pyobjc_framework_AVFoundation-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:af48d5db56f21e857f8473629cc9db38f7a13994f6d1d416ff8fdb62e6268a28"},
{file = "pyobjc_framework_AVFoundation-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:6b9d2e80b70e4c5547cf8f16117816f0bdf35acb67f2227e8d45168f1a5d97eb"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-CoreAudio = ">=9.1.1"
pyobjc-framework-CoreMedia = ">=9.1.1"
pyobjc-framework-Quartz = ">=9.1.1"
[[package]]
name = "pyobjc-framework-avkit"
version = "9.1.1"
description = "Wrappers for the framework AVKit on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AVKit-9.1.1.tar.gz", hash = "sha256:41e0d8dcf456ad25cbf4ef0bacbbaa88f85d60255668c438d4334805be8f57b3"},
{file = "pyobjc_framework_AVKit-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:dba38425886fe8ce30a1bc1c9499de1f4bdb1ac9f69f0c285a376bf155861c43"},
{file = "pyobjc_framework_AVKit-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b0ecc934e120489fae5da95c975e4cbb898398b29141c479803d8f2afd85c096"},
{file = "pyobjc_framework_AVKit-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3ce4a04e594777d140869893378830492692bfb9c0991af138ce054725ffb0fe"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-Quartz = ">=9.1.1"
[[package]]
name = "pyobjc-framework-avrouting"
version = "9.1.1"
description = "Wrappers for the framework AVRouting on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-AVRouting-9.1.1.tar.gz", hash = "sha256:8e0b6108aafa8e9ad78dfefb4f8a3136be08c5bcd8785861a807eddfeb94209b"},
{file = "pyobjc_framework_AVRouting-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:2d8ba60e23996fa567c82acb265a7f09f0aab6695f622a27c84ff1caa06386db"},
{file = "pyobjc_framework_AVRouting-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9ace50d396de3ee931200932bba356cdb5ef05ecc27b89776b9ae5534761eb41"},
{file = "pyobjc_framework_AVRouting-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:9c3aae86439cbefa3e2ea532eb43ca7b4bb065d34ec3df4e1d5b4ca8257a075d"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-backgroundassets"
version = "9.1.1"
description = "Wrappers for the framework BackgroundAssets on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-BackgroundAssets-9.1.1.tar.gz", hash = "sha256:382e0f74a98012c3efb6ed7bab829db77f8c99ad6aaf567e7dc9f37f8715d4f9"},
{file = "pyobjc_framework_BackgroundAssets-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:a0b4b2c310c4c387ad9fce8cf2db048435ae33fde60c15f032eb420c549fe1df"},
{file = "pyobjc_framework_BackgroundAssets-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:06dea3e1d7d40e7e212eb0610453865aa8ab9d22b7718d20ee0e52e63408f310"},
{file = "pyobjc_framework_BackgroundAssets-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:cad84c2de085f7b8092f4b5c810dfbfe7f50243223f65c6f676daf9195cfa1d0"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-businesschat"
version = "9.1.1"
description = "Wrappers for the framework BusinessChat on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-BusinessChat-9.1.1.tar.gz", hash = "sha256:dc95a88352f31043dd57a3785dba69e8000e1afb902f35646074b3aab509dfb3"},
{file = "pyobjc_framework_BusinessChat-9.1.1-py2.py3-none-any.whl", hash = "sha256:f23b576f0cf336dc2820705138c2ace08edd8eb5f0043f34a579c26b1b6ec80b"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-calendarstore"
version = "9.1.1"
description = "Wrappers for the framework CalendarStore on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CalendarStore-9.1.1.tar.gz", hash = "sha256:26b5154dc1990fb99090273e59c8c26d38d3d3fc1110cf9b9dbe772dee0b1130"},
{file = "pyobjc_framework_CalendarStore-9.1.1-py2.py3-none-any.whl", hash = "sha256:d949a965e0c4e218d3363d2ef9ebcbfebf9cfef5d704ce066cc057c329c19974"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-callkit"
version = "9.1.1"
description = "Wrappers for the framework CallKit on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CallKit-9.1.1.tar.gz", hash = "sha256:db74c10228440eee9f3563c038b46c53d89c1334665c33c0b05df676c85dbd7d"},
{file = "pyobjc_framework_CallKit-9.1.1-py2.py3-none-any.whl", hash = "sha256:b942a3473b4494dd2d678fc57bbc4eac4e0729f011cd456ea791b27a3471835c"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-cfnetwork"
version = "9.1.1"
description = "Wrappers for the framework CFNetwork on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CFNetwork-9.1.1.tar.gz", hash = "sha256:58614b1263f47ce87d7a4e8b9f3a798e99168b14fbaf028ec22fa9cddb1f04d5"},
{file = "pyobjc_framework_CFNetwork-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:e25e04c2a30e6a4396f16a9df4a5d0987eed409a49ef75e2f46adf26d97ad578"},
{file = "pyobjc_framework_CFNetwork-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:a0faf61a8db71106d021624fb68a37748c53c3c9784470dab2ea7bccbc0871ed"},
{file = "pyobjc_framework_CFNetwork-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:b8c21adabc32e761742174f6005882b84d5cb4d98a1c0bb0bb2edceb3091fe15"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-classkit"
version = "9.1.1"
description = "Wrappers for the framework ClassKit on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-ClassKit-9.1.1.tar.gz", hash = "sha256:891d4c2ec0c43c00fb038315ecc8899af226dc54d1d295cc3180eeccb8665f67"},
{file = "pyobjc_framework_ClassKit-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bbb43c19cbff458816ad9e35cd426c28123cdd35d3f5b69e7940225de40ea1a4"},
{file = "pyobjc_framework_ClassKit-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:feb12dcb447797cb637df6e1c90a44467b413b7450b4b8988e3a7f5d9918afdc"},
{file = "pyobjc_framework_ClassKit-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:e73adcb59fe2fd3c2d666b90099377aaff6a4bab053677ebaf8e47186276f1f7"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-cloudkit"
version = "9.1.1"
description = "Wrappers for the framework CloudKit on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CloudKit-9.1.1.tar.gz", hash = "sha256:af89dd16d269f790e5ee53f890093e46f6808c9f4557a4f6ea55ad4475acf447"},
{file = "pyobjc_framework_CloudKit-9.1.1-py2.py3-none-any.whl", hash = "sha256:b5ef2837d8b56075c523473f74a910e54193fd180d48b4def3abe9227fffe3e9"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Accounts = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-CoreData = ">=9.1.1"
pyobjc-framework-CoreLocation = ">=9.1.1"
[[package]]
name = "pyobjc-framework-cocoa"
version = "9.1.1"
description = "Wrappers for the Cocoa frameworks on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-Cocoa-9.1.1.tar.gz", hash = "sha256:345c32b6d1f3db45f635e400f2d0d6c0f0f7349d45ec823f76fc1df43d13caeb"},
{file = "pyobjc_framework_Cocoa-9.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9176a4276f3b4b4758e9b9ca10698be5341ceffaeaa4fa055133417179e6bc37"},
{file = "pyobjc_framework_Cocoa-9.1.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5e1e96fb3461f46ff951413515f2029e21be268b0e033db6abee7b64ec8e93d3"},
{file = "pyobjc_framework_Cocoa-9.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:083b195c496d30c6b9dd86126a6093c4b95e0138e9b052b13e54103fcc0b4872"},
{file = "pyobjc_framework_Cocoa-9.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a1b3333b1aa045608848bd68bbab4c31171f36aeeaa2fabeb4527c6f6f1e33cd"},
{file = "pyobjc_framework_Cocoa-9.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:54c017354671f0d955432986c42218e452ca69906a101c8e7acde8510432303a"},
{file = "pyobjc_framework_Cocoa-9.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:10c0075688ce95b92caf59e368585fffdcc98c919bc345067af070222f5d01d2"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
[[package]]
name = "pyobjc-framework-collaboration"
version = "9.1.1"
description = "Wrappers for the framework Collaboration on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-Collaboration-9.1.1.tar.gz", hash = "sha256:27e0a6aba7d21e88916259d0fe1e9e4594177f16261b08cd22bc277b35e8a7f1"},
{file = "pyobjc_framework_Collaboration-9.1.1-py2.py3-none-any.whl", hash = "sha256:09b0f474101b55fee825c79f7abdb36eaf20ff63af4775076a3f3bfa3c5837ec"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-colorsync"
version = "9.1.1"
description = "Wrappers for the framework ColorSync on Mac OS X"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-ColorSync-9.1.1.tar.gz", hash = "sha256:37fba1a608bcefb98863cad6d5b8e41238cf68fae55d9e0e60714f3baedc9c59"},
{file = "pyobjc_framework_ColorSync-9.1.1-py2.py3-none-any.whl", hash = "sha256:40b10afa8922f07bf8391a7bfe37c419b9bb9474261999e01d8a4a7949b5f792"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-contacts"
version = "9.1.1"
description = "Wrappers for the framework Contacts on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-Contacts-9.1.1.tar.gz", hash = "sha256:1ef8547fefe97bffd898c5768cb51a42ab13829443fd3e1fac8cfdf2c435bd83"},
{file = "pyobjc_framework_Contacts-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:33cfabd386fad9728d050ddb0778b60a077ae605a2fe58f00c3586671ae7b423"},
{file = "pyobjc_framework_Contacts-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:419394e31734548220c695dc30c7db67c51b336966665d17fa3d3e2f33f58e2b"},
{file = "pyobjc_framework_Contacts-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:edf3b76857f8b9eb2d0947f65abefef01b13771c493c82ecd2a600e17f0ad9c3"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-contactsui"
version = "9.1.1"
description = "Wrappers for the framework ContactsUI on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-ContactsUI-9.1.1.tar.gz", hash = "sha256:110f3bf9c4b96c4c90badf51bd74aa943f774bababd28a81e703d87939c9b939"},
{file = "pyobjc_framework_ContactsUI-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f3547342849cc14f66925b8ed46213b014872da6bad373327a235feb31f74b89"},
{file = "pyobjc_framework_ContactsUI-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6fbcca13cb0fe6e2c57cc192a59975b58f93cfaaf46292e85263f00a665facd3"},
{file = "pyobjc_framework_ContactsUI-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:162353f57244d0bdd83efa16b1f6c27580e40e34fc02f74a1c354fb520217711"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-Contacts = ">=9.1.1"
[[package]]
name = "pyobjc-framework-coreaudio"
version = "9.1.1"
description = "Wrappers for the framework CoreAudio on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CoreAudio-9.1.1.tar.gz", hash = "sha256:bb825b6f176a2cf6f3159f8bc6e778da8de59951fd4dad1d945334d6462fd691"},
{file = "pyobjc_framework_CoreAudio-9.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8cec87db901100d219c65f971a899e972e9beeda2859d673624f992509889013"},
{file = "pyobjc_framework_CoreAudio-9.1.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:63a0f2ea62191167b2559400dbe6fdfbd42753fb5393908c1747ab164a6511bb"},
{file = "pyobjc_framework_CoreAudio-9.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d6087cb43c36e948297443ab98fdc0675fcdc2388a67388705c5aa9a774ef8fd"},
{file = "pyobjc_framework_CoreAudio-9.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:63c571c1f841ad7679d7d7b48d797e41c305c8cccc70e78efbc871481bb20995"},
{file = "pyobjc_framework_CoreAudio-9.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:aaf83481c93c9f2789414be7d013aeca2ef84051d573105d4c8905350d9ed71d"},
{file = "pyobjc_framework_CoreAudio-9.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:02ccfb15259069ca6670574f0ad7f81fca8be54a06a8f8409451a9416b1d3f89"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-coreaudiokit"
version = "9.1.1"
description = "Wrappers for the framework CoreAudioKit on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CoreAudioKit-9.1.1.tar.gz", hash = "sha256:93bb29195ef5312ec21f200d758459faacc41fd807bc9ad80a8f49cec6747846"},
{file = "pyobjc_framework_CoreAudioKit-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:e76e3b78411d544d65bbd52bed18847782a68d7f9f8ce07bd93c837473b8ad31"},
{file = "pyobjc_framework_CoreAudioKit-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:4e509172b9f9967b2674ee41421fa6a28e65234bb12ef62297e56827583c68d9"},
{file = "pyobjc_framework_CoreAudioKit-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:d061f9f0306a149e47aaf890b7a03ca42d2c6d6fc509ad5d5e10d06ee60628f8"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
pyobjc-framework-CoreAudio = ">=9.1.1"
[[package]]
name = "pyobjc-framework-corebluetooth"
version = "9.1.1"
description = "Wrappers for the framework CoreBluetooth on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CoreBluetooth-9.1.1.tar.gz", hash = "sha256:4e5a256450bd9626311af64b6cf6752d0d9e7bc80242a915dea075180b350ca6"},
{file = "pyobjc_framework_CoreBluetooth-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b39e0bc5ad0b01fcf26853bd3bf2ab186ec6182073d00e0cadcf71cd48e047fb"},
{file = "pyobjc_framework_CoreBluetooth-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:60ef6d0a5a9abb0404f690dab4b670aa1265258500dc4fcc8129a37460e8f488"},
{file = "pyobjc_framework_CoreBluetooth-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:ae1593be5c2fbae3795a66b4006c5c47cb6c99da8d2e4a67e187248d733bacac"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-coredata"
version = "9.1.1"
description = "Wrappers for the framework CoreData on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CoreData-9.1.1.tar.gz", hash = "sha256:bee412788a355be20189573be0b08225a0eae38c302c50e85496900d7740a933"},
{file = "pyobjc_framework_CoreData-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:34820ed0dc461af08cde86771257d1745522be18ebc3943d28a6d4e794f7a193"},
{file = "pyobjc_framework_CoreData-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ae858c0dc23f49ed2270f52903c7622f8e9cbd5787539b69cb9eef34beff8479"},
{file = "pyobjc_framework_CoreData-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:cfa2c7a2125c99158cb94d7c56fe52494c5a7c225944dc5f5fc66a267f9f1a14"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-corehaptics"
version = "9.1.1"
description = "Wrappers for the framework CoreHaptics on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CoreHaptics-9.1.1.tar.gz", hash = "sha256:c28e6b6f9c6df4eb5265f8318ccadb917033b77f932a4e3d069625be23e85c17"},
{file = "pyobjc_framework_CoreHaptics-9.1.1-py2.py3-none-any.whl", hash = "sha256:18bc8671482205bd83cdccbe71dfb984e476809c8326e73ffe9333a39d880633"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-corelocation"
version = "9.1.1"
description = "Wrappers for the framework CoreLocation on macOS"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyobjc-framework-CoreLocation-9.1.1.tar.gz", hash = "sha256:e7fb6612535f9772cc698020303fc35ac72227958c17a1437aef6c04821d0e31"},
{file = "pyobjc_framework_CoreLocation-9.1.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:a942eaa95c595d5f2cd09f095330e2743e788ff1fa277e43980933441190e2fb"},
{file = "pyobjc_framework_CoreLocation-9.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:5b4ee6ebe22549723ffbba72d11c961e3dc0e2b041e3b2a7b4b56be996b6728a"},
{file = "pyobjc_framework_CoreLocation-9.1.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:08eb32754f07b401a434e34076b9677a15f0d7240b4ff43205389270862b859c"},
]
[package.dependencies]
pyobjc-core = ">=9.1.1"
pyobjc-framework-Cocoa = ">=9.1.1"
[[package]]
name = "pyobjc-framework-coremedia"
version = "9.1.1"
description = "Wrappers for the framework CoreMedia on macOS"
category = "main"