generated from Choate-Robotics/7407-DriveCode-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
poetry.lock
1269 lines (1164 loc) · 85.1 KB
/
poetry.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is automatically @generated by Poetry and should not be changed by hand.
[[package]]
name = "attrs"
version = "22.2.0"
description = "Classes Without Boilerplate"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"},
{file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"},
]
[package.extras]
cov = ["attrs[tests]", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"]
dev = ["attrs[docs,tests]"]
docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope.interface"]
tests = ["attrs[tests-no-zope]", "zope.interface"]
tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"]
[[package]]
name = "bcrypt"
version = "4.0.1"
description = "Modern password hashing for your software and your servers"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "bcrypt-4.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3"},
{file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2"},
{file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535"},
{file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e"},
{file = "bcrypt-4.0.1-cp36-abi3-win32.whl", hash = "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab"},
{file = "bcrypt-4.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9"},
{file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c"},
{file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b"},
{file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d"},
{file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d"},
{file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215"},
{file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c"},
{file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda"},
{file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665"},
{file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71"},
{file = "bcrypt-4.0.1.tar.gz", hash = "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"},
]
[package.extras]
tests = ["pytest (>=3.2.1,!=3.3.0)"]
typecheck = ["mypy"]
[[package]]
name = "black"
version = "22.12.0"
description = "The uncompromising code formatter."
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d"},
{file = "black-22.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351"},
{file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"},
{file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"},
{file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"},
{file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"},
{file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"},
{file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"},
{file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"},
{file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"},
{file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"},
{file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"},
]
[package.dependencies]
click = ">=8.0.0"
mypy-extensions = ">=0.4.3"
pathspec = ">=0.9.0"
platformdirs = ">=2"
tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
[package.extras]
colorama = ["colorama (>=0.4.3)"]
d = ["aiohttp (>=3.7.4)"]
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
uvloop = ["uvloop (>=0.15.2)"]
[[package]]
name = "cffi"
version = "1.15.1"
description = "Foreign Function Interface for Python calling C code."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"},
{file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"},
{file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"},
{file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"},
{file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"},
{file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"},
{file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"},
{file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"},
{file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"},
{file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"},
{file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"},
{file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"},
{file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"},
{file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"},
{file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"},
{file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"},
{file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"},
{file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"},
{file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"},
{file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"},
{file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"},
{file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"},
{file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"},
{file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"},
{file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"},
{file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"},
{file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"},
{file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"},
{file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"},
{file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"},
{file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"},
{file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"},
{file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"},
{file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"},
{file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"},
{file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"},
{file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"},
{file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"},
{file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"},
{file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"},
{file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"},
]
[package.dependencies]
pycparser = "*"
[[package]]
name = "cfgv"
version = "3.3.1"
description = "Validate configuration and produce human readable error messages."
category = "main"
optional = false
python-versions = ">=3.6.1"
files = [
{file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"},
{file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"},
]
[[package]]
name = "click"
version = "8.1.3"
description = "Composable command line interface toolkit"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
]
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "colorama"
version = "0.4.6"
description = "Cross-platform colored terminal text."
category = "main"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
files = [
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
]
[[package]]
name = "cryptography"
version = "39.0.2"
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "cryptography-39.0.2-cp36-abi3-macosx_10_12_universal2.whl", hash = "sha256:2725672bb53bb92dc7b4150d233cd4b8c59615cd8288d495eaa86db00d4e5c06"},
{file = "cryptography-39.0.2-cp36-abi3-macosx_10_12_x86_64.whl", hash = "sha256:23df8ca3f24699167daf3e23e51f7ba7334d504af63a94af468f468b975b7dd7"},
{file = "cryptography-39.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:eb40fe69cfc6f5cdab9a5ebd022131ba21453cf7b8a7fd3631f45bbf52bed612"},
{file = "cryptography-39.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc0521cce2c1d541634b19f3ac661d7a64f9555135e9d8af3980965be717fd4a"},
{file = "cryptography-39.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffd394c7896ed7821a6d13b24657c6a34b6e2650bd84ae063cf11ccffa4f1a97"},
{file = "cryptography-39.0.2-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:e8a0772016feeb106efd28d4a328e77dc2edae84dfbac06061319fdb669ff828"},
{file = "cryptography-39.0.2-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8f35c17bd4faed2bc7797d2a66cbb4f986242ce2e30340ab832e5d99ae60e011"},
{file = "cryptography-39.0.2-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b49a88ff802e1993b7f749b1eeb31134f03c8d5c956e3c125c75558955cda536"},
{file = "cryptography-39.0.2-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c682e736513db7d04349b4f6693690170f95aac449c56f97415c6980edef5"},
{file = "cryptography-39.0.2-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:d7d84a512a59f4412ca8549b01f94be4161c94efc598bf09d027d67826beddc0"},
{file = "cryptography-39.0.2-cp36-abi3-win32.whl", hash = "sha256:c43ac224aabcbf83a947eeb8b17eaf1547bce3767ee2d70093b461f31729a480"},
{file = "cryptography-39.0.2-cp36-abi3-win_amd64.whl", hash = "sha256:788b3921d763ee35dfdb04248d0e3de11e3ca8eb22e2e48fef880c42e1f3c8f9"},
{file = "cryptography-39.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d15809e0dbdad486f4ad0979753518f47980020b7a34e9fc56e8be4f60702fac"},
{file = "cryptography-39.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:50cadb9b2f961757e712a9737ef33d89b8190c3ea34d0fb6675e00edbe35d074"},
{file = "cryptography-39.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:103e8f7155f3ce2ffa0049fe60169878d47a4364b277906386f8de21c9234aa1"},
{file = "cryptography-39.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:6236a9610c912b129610eb1a274bdc1350b5df834d124fa84729ebeaf7da42c3"},
{file = "cryptography-39.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e944fe07b6f229f4c1a06a7ef906a19652bdd9fd54c761b0ff87e83ae7a30354"},
{file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:35d658536b0a4117c885728d1a7032bdc9a5974722ae298d6c533755a6ee3915"},
{file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:30b1d1bfd00f6fc80d11300a29f1d8ab2b8d9febb6ed4a38a76880ec564fae84"},
{file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:e029b844c21116564b8b61216befabca4b500e6816fa9f0ba49527653cae2108"},
{file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fa507318e427169ade4e9eccef39e9011cdc19534f55ca2f36ec3f388c1f70f3"},
{file = "cryptography-39.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8bc0008ef798231fac03fe7d26e82d601d15bd16f3afaad1c6113771566570f3"},
{file = "cryptography-39.0.2.tar.gz", hash = "sha256:bc5b871e977c8ee5a1bbc42fa8d19bcc08baf0c51cbf1586b0e87a2694dde42f"},
]
[package.dependencies]
cffi = ">=1.12"
[package.extras]
docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"]
docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"]
pep8test = ["black", "check-manifest", "mypy", "ruff", "types-pytz", "types-requests"]
sdist = ["setuptools-rust (>=0.11.4)"]
ssh = ["bcrypt (>=3.1.5)"]
test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-shard (>=0.1.2)", "pytest-subtests", "pytest-xdist", "pytz"]
test-randomorder = ["pytest-randomly"]
tox = ["tox"]
[[package]]
name = "distlib"
version = "0.3.6"
description = "Distribution utilities"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"},
{file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"},
]
[[package]]
name = "docutils"
version = "0.19"
description = "Docutils -- Python Documentation Utilities"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "docutils-0.19-py3-none-any.whl", hash = "sha256:5e1de4d849fee02c63b040a4a3fd567f4ab104defd8a5511fbbc24a8a017efbc"},
{file = "docutils-0.19.tar.gz", hash = "sha256:33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6"},
]
[[package]]
name = "exceptiongroup"
version = "1.1.1"
description = "Backport of PEP 654 (exception groups)"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"},
{file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"},
]
[package.extras]
test = ["pytest (>=6)"]
[[package]]
name = "filelock"
version = "3.10.0"
description = "A platform independent file lock."
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "filelock-3.10.0-py3-none-any.whl", hash = "sha256:e90b34656470756edf8b19656785c5fea73afa1953f3e1b0d645cef11cab3182"},
{file = "filelock-3.10.0.tar.gz", hash = "sha256:3199fd0d3faea8b911be52b663dfccceb84c95949dd13179aa21436d1a79c4ce"},
]
[package.extras]
docs = ["furo (>=2022.12.7)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"]
testing = ["covdefaults (>=2.3)", "coverage (>=7.2.1)", "pytest (>=7.2.2)", "pytest-cov (>=4)", "pytest-timeout (>=2.1)"]
[[package]]
name = "flake8"
version = "6.0.0"
description = "the modular source code checker: pep8 pyflakes and co"
category = "main"
optional = false
python-versions = ">=3.8.1"
files = [
{file = "flake8-6.0.0-py2.py3-none-any.whl", hash = "sha256:3833794e27ff64ea4e9cf5d410082a8b97ff1a06c16aa3d2027339cd0f1195c7"},
{file = "flake8-6.0.0.tar.gz", hash = "sha256:c61007e76655af75e6785a931f452915b371dc48f56efd765247c8fe68f2b181"},
]
[package.dependencies]
mccabe = ">=0.7.0,<0.8.0"
pycodestyle = ">=2.10.0,<2.11.0"
pyflakes = ">=3.0.0,<3.1.0"
[[package]]
name = "identify"
version = "2.5.21"
description = "File identification library for Python"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "identify-2.5.21-py2.py3-none-any.whl", hash = "sha256:69edcaffa8e91ae0f77d397af60f148b6b45a8044b2cc6d99cafa5b04793ff00"},
{file = "identify-2.5.21.tar.gz", hash = "sha256:7671a05ef9cfaf8ff63b15d45a91a1147a03aaccb2976d4e9bd047cbbc508471"},
]
[package.extras]
license = ["ukkonen"]
[[package]]
name = "iniconfig"
version = "2.0.0"
description = "brain-dead simple config-ini parsing"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
{file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
]
[[package]]
name = "isort"
version = "5.12.0"
description = "A Python utility / library to sort Python imports."
category = "main"
optional = false
python-versions = ">=3.8.0"
files = [
{file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"},
{file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"},
]
[package.extras]
colors = ["colorama (>=0.4.3)"]
pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"]
plugins = ["setuptools"]
requirements-deprecated-finder = ["pip-api", "pipreqs"]
[[package]]
name = "m2r2"
version = "0.3.3.post2"
description = "Markdown and reStructuredText in a single file."
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "m2r2-0.3.3.post2-py3-none-any.whl", hash = "sha256:86157721eb6eabcd54d4eea7195890cc58fa6188b8d0abea633383cfbb5e11e3"},
{file = "m2r2-0.3.3.post2.tar.gz", hash = "sha256:e62bcb0e74b3ce19cda0737a0556b04cf4a43b785072fcef474558f2c1482ca8"},
]
[package.dependencies]
docutils = ">=0.19"
mistune = "0.8.4"
[[package]]
name = "mccabe"
version = "0.7.0"
description = "McCabe checker, plugin for flake8"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"},
{file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"},
]
[[package]]
name = "mistune"
version = "0.8.4"
description = "The fastest markdown parser in pure Python"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"},
{file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"},
]
[[package]]
name = "mypy-extensions"
version = "1.0.0"
description = "Type system extensions for programs checked with the mypy type checker."
category = "main"
optional = false
python-versions = ">=3.5"
files = [
{file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"},
{file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
]
[[package]]
name = "nodeenv"
version = "1.7.0"
description = "Node.js virtual environment builder"
category = "main"
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
files = [
{file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"},
{file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"},
]
[package.dependencies]
setuptools = "*"
[[package]]
name = "packaging"
version = "23.0"
description = "Core utilities for Python packages"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"},
{file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"},
]
[[package]]
name = "paramiko"
version = "3.1.0"
description = "SSH2 protocol library"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "paramiko-3.1.0-py3-none-any.whl", hash = "sha256:f0caa660e797d9cd10db6fc6ae81e2c9b2767af75c3180fcd0e46158cd368d7f"},
{file = "paramiko-3.1.0.tar.gz", hash = "sha256:6950faca6819acd3219d4ae694a23c7a87ee38d084f70c1724b0c0dbb8b75769"},
]
[package.dependencies]
bcrypt = ">=3.2"
cryptography = ">=3.3"
pynacl = ">=1.5"
[package.extras]
all = ["gssapi (>=1.4.1)", "invoke (>=2.0)", "pyasn1 (>=0.1.7)", "pywin32 (>=2.1.8)"]
gssapi = ["gssapi (>=1.4.1)", "pyasn1 (>=0.1.7)", "pywin32 (>=2.1.8)"]
invoke = ["invoke (>=2.0)"]
[[package]]
name = "pathspec"
version = "0.11.1"
description = "Utility library for gitignore style pattern matching of file paths."
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"},
{file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"},
]
[[package]]
name = "pint"
version = "0.20.1"
description = "Physical quantities module"
category = "main"
optional = false
python-versions = ">=3.8"
files = [
{file = "Pint-0.20.1-py3-none-any.whl", hash = "sha256:68afe65665542ee3ec99f69f043b1d39bfe7c6d61b786940157138fd08b838fb"},
{file = "Pint-0.20.1.tar.gz", hash = "sha256:387cf04078dc7dfe4a708033baad54ab61d82ab06c4ee3d4922b1e45d5626067"},
]
[package.extras]
babel = ["babel (<=2.8)"]
dask = ["dask"]
numpy = ["numpy (>=1.19.5)"]
pandas = ["pint-pandas (>=0.3)"]
test = ["pytest", "pytest-cov", "pytest-mpl", "pytest-subtests"]
uncertainties = ["uncertainties (>=3.1.6)"]
xarray = ["xarray"]
[[package]]
name = "platformdirs"
version = "3.1.1"
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "platformdirs-3.1.1-py3-none-any.whl", hash = "sha256:e5986afb596e4bb5bde29a79ac9061aa955b94fca2399b7aaac4090860920dd8"},
{file = "platformdirs-3.1.1.tar.gz", hash = "sha256:024996549ee88ec1a9aa99ff7f8fc819bb59e2c3477b410d90a16d32d6e707aa"},
]
[package.extras]
docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"]
test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"]
[[package]]
name = "pluggy"
version = "1.0.0"
description = "plugin and hook calling mechanisms for python"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
]
[package.extras]
dev = ["pre-commit", "tox"]
testing = ["pytest", "pytest-benchmark"]
[[package]]
name = "pre-commit"
version = "3.2.0"
description = "A framework for managing and maintaining multi-language pre-commit hooks."
category = "main"
optional = false
python-versions = ">=3.8"
files = [
{file = "pre_commit-3.2.0-py2.py3-none-any.whl", hash = "sha256:f712d3688102e13c8e66b7d7dbd8934a6dda157e58635d89f7d6fecdca39ce8a"},
{file = "pre_commit-3.2.0.tar.gz", hash = "sha256:818f0d998059934d0f81bb3667e3ccdc32da6ed7ccaac33e43dc231561ddaaa9"},
]
[package.dependencies]
cfgv = ">=2.0.0"
identify = ">=1.0.0"
nodeenv = ">=0.11.1"
pyyaml = ">=5.1"
virtualenv = ">=20.10.0"
[[package]]
name = "pycodestyle"
version = "2.10.0"
description = "Python style guide checker"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"},
{file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"},
]
[[package]]
name = "pycparser"
version = "2.21"
description = "C parser in Python"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
files = [
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
]
[[package]]
name = "pyflakes"
version = "3.0.1"
description = "passive checker of Python programs"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"},
{file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"},
]
[[package]]
name = "pyfrc"
version = "2023.0.1"
description = "Development tools library for python interpreter used for the FIRST Robotics Competition"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pyfrc-2023.0.1-py3-none-any.whl", hash = "sha256:c7bd541331b8fe12c25bc20a258928430fb5ddfb5436f02038679723f2ae5669"},
{file = "pyfrc-2023.0.1.tar.gz", hash = "sha256:857428111e07fa95dde599cebbb1dc7f3f27f54f10309ca4b7e96b4c71e26a80"},
]
[package.dependencies]
pint = ">=0.11.0"
pynetconsole = ">=2.0.2,<2.1.0"
pyntcore = ">=2023.1.1.0,<2024"
pytest = ">=3.9"
pytest-reraise = "*"
robotpy-hal = ">=2023.1.1.0,<2024"
robotpy-installer = ">=2023.0.0,<2024"
robotpy-wpiutil = ">=2023.1.1.0,<2024"
wpilib = ">=2023.1.1.0,<2024"
[[package]]
name = "pynacl"
version = "1.5.0"
description = "Python binding to the Networking and Cryptography (NaCl) library"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"},
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"},
{file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"},
{file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"},
{file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"},
{file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"},
{file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"},
]
[package.dependencies]
cffi = ">=1.4.1"
[package.extras]
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"]
[[package]]
name = "pynetconsole"
version = "2.0.4"
description = "A pure python implementation of a NetConsole listener"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "pynetconsole-2.0.4-py3-none-any.whl", hash = "sha256:3f6b51e3c943e900578ce92a85104d45784ea522863b025816cc7d580bd00069"},
{file = "pynetconsole-2.0.4.tar.gz", hash = "sha256:a02a9a6538b63ab63ffb480a0e5c1485aa5f393da6a20f780a6b082c971762d5"},
]
[[package]]
name = "pynetworktables"
version = "2021.0.0"
description = "A pure Python implementation of NetworkTables, used for robot communications in the FIRST Robotics Competition."
category = "main"
optional = false
python-versions = ">=3.5"
files = [
{file = "pynetworktables-2021.0.0-py3-none-any.whl", hash = "sha256:54604b1993515c43890be058263f158c1d168c69bedd802f0de644964cf3840d"},
{file = "pynetworktables-2021.0.0.tar.gz", hash = "sha256:91167948e66c29d5c90f85f3e249403f4d2ebf11368b93f9b968ef315388c73c"},
]
[[package]]
name = "pyntcore"
version = "2023.4.2.0"
description = "Binary wrappers for the FRC ntcore library"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "pyntcore-2023.4.2.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:ee121603b2a9657bfc9bd3a0db2d5e7b2b58c12694a555727f656a25d6c858d3"},
{file = "pyntcore-2023.4.2.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:9df4b869c030e64d68e662f72fdfca3ebde2d8357863a42d9465185f3acbed69"},
{file = "pyntcore-2023.4.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:94bb4750e28557a33c0b2b3c4e68805f3fc1db18649d86a01993486e5c39d876"},
{file = "pyntcore-2023.4.2.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:fd76b739413d44a50a7ba0ced357e6cf8ae698fc8a99b1c7e4ec46e397fc677f"},
{file = "pyntcore-2023.4.2.0-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:451bdfb9cd71989aee40b1ff8aeb25eaeadc6ca8525396c4a7b1dc020b50b974"},
{file = "pyntcore-2023.4.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:035a80f6bd6609e1cfdfec5fb857c095977e426ed503a5606afa0fffb7d494ae"},
{file = "pyntcore-2023.4.2.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:9e96e73b4590a134087886ffca281d5432052f25d38b2b653ba3a231ac6c7322"},
{file = "pyntcore-2023.4.2.0-cp37-cp37m-manylinux_2_35_x86_64.whl", hash = "sha256:b8685df56840ce76cab9df9dcddfd4330e4f98999ead6222a701d0c92fea0958"},
{file = "pyntcore-2023.4.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:dffc39b60c845bf1fe4834b844409d2869d71ac9117626e91e29d9cae412e2a2"},
{file = "pyntcore-2023.4.2.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:28d4d50a293314ecc79bef13065881d0f34ad5cd0c8cfeb95e9dd47ddebaf393"},
{file = "pyntcore-2023.4.2.0-cp38-cp38-manylinux_2_35_x86_64.whl", hash = "sha256:33034cd35014ce83ad3756dacf9268607b3f46ef2d60883f7017ae492eca5408"},
{file = "pyntcore-2023.4.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:2f008ba910b30ac34adcbb29e73536ff90435e4dc4ebde07b3101e044aaf3d8e"},
{file = "pyntcore-2023.4.2.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:e19823910e978b9cdcad0cea3c52da8b71b317f5956f29c4fa7d3ec6dfd38684"},
{file = "pyntcore-2023.4.2.0-cp39-cp39-manylinux_2_35_x86_64.whl", hash = "sha256:40da332eca12959859a1f56b93bcdd1813812f77521aad6fd0194f32cec905ea"},
{file = "pyntcore-2023.4.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:cdaea23fd8d8899fc906f2d69a8faaac468c07dc47cda7639e333b5cab8a9125"},
{file = "pyntcore-2023.4.2.0.tar.gz", hash = "sha256:d0e25088719d9342425d9c1b3c0f30909f78f81b7bde17000b7d9643495d35c2"},
]
[package.dependencies]
robotpy-wpinet = ">=2023.4.2,<2023.5.0"
robotpy-wpiutil = ">=2023.4.2,<2023.5.0"
[[package]]
name = "pytest"
version = "7.2.2"
description = "pytest: simple powerful testing with Python"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "pytest-7.2.2-py3-none-any.whl", hash = "sha256:130328f552dcfac0b1cec75c12e3f005619dc5f874f0a06e8ff7263f0ee6225e"},
{file = "pytest-7.2.2.tar.gz", hash = "sha256:c99ab0c73aceb050f68929bc93af19ab6db0558791c6a0715723abe9d0ade9d4"},
]
[package.dependencies]
attrs = ">=19.2.0"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""}
iniconfig = "*"
packaging = "*"
pluggy = ">=0.12,<2.0"
tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""}
[package.extras]
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"]
[[package]]
name = "pytest-reraise"
version = "2.1.2"
description = "Make multi-threaded pytest test cases fail when they should"
category = "main"
optional = false
python-versions = ">=3.6.1,<4.0.0"
files = [
{file = "pytest-reraise-2.1.2.tar.gz", hash = "sha256:5ab59bd0e2028be095289e6dfc9e36cc0b56936465278f3223e81bea0f2d1c70"},
{file = "pytest_reraise-2.1.2-py3-none-any.whl", hash = "sha256:c22430d33b2cc18905959d7af28978e371113fcc6ef67b5fec95efcd80b88c16"},
]
[package.dependencies]
pytest = ">=4.6"
[[package]]
name = "pyyaml"
version = "6.0"
description = "YAML parser and emitter for Python"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
{file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"},
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"},
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"},
{file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"},
{file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"},
{file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"},
{file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"},
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"},
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"},
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"},
{file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"},
{file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"},
{file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"},
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"},
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"},
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"},
{file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"},
{file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"},
{file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"},
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"},
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"},
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"},
{file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"},
{file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"},
{file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"},
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"},
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"},
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"},
{file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"},
{file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"},
{file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"},
{file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"},
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"},
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"},
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"},
{file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"},
{file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
{file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
]
[[package]]
name = "robotpy"
version = "2023.4.2.1"
description = "Meta package to make installing robotpy easier"
category = "main"
optional = false
python-versions = ">=3.7,<3.12"
files = [
{file = "robotpy-2023.4.2.1-py3-none-any.whl", hash = "sha256:ff497f5b6b5ae96313ea5a1f211f170891bd920fade8626dd1c0eb1e51044047"},
{file = "robotpy-2023.4.2.1.tar.gz", hash = "sha256:3bc69beef6e1142b698b2eef5701303c8629520866b4f13c7f02144c42737889"},
]
[package.dependencies]
pyfrc = {version = ">=2023.0.1,<2024.0.0", markers = "platform_machine != \"armv7l\""}
pyntcore = "2023.4.2.0"
robotpy-commands-v2 = {version = "2023.4.2.0", optional = true, markers = "extra == \"commands2\""}
robotpy-hal = "2023.4.2.0"
robotpy-halsim-gui = {version = "2023.4.2.0", markers = "platform_machine != \"armv7l\""}
robotpy-installer = {version = ">=2023.0.2,<2024.0.0", markers = "platform_machine != \"armv7l\""}
robotpy-wpilib-utilities = ">=2023.0.0,<2024"
robotpy-wpimath = "2023.4.2.1"
robotpy-wpiutil = "2023.4.2.0"
wpilib = "2023.4.2.0"
[package.extras]
all = ["numpy", "pyfrc (>=2023.0.1,<2024.0.0)", "pyntcore (==2023.4.2.0)", "robotpy-apriltag (==2023.4.2.0)", "robotpy-commands-v2 (==2023.4.2.0)", "robotpy-cscore (==2023.4.2.0)", "robotpy-ctre (>=2023.0.0,<2024.0.0)", "robotpy-hal (==2023.4.2.0)", "robotpy-halsim-ds-socket (==2023.4.2.0)", "robotpy-halsim-gui (==2023.4.2.0)", "robotpy-halsim-ws (==2023.4.2.0)", "robotpy-installer (>=2023.0.2,<2024.0.0)", "robotpy-navx (>=2023.0.1,<2024.0.0)", "robotpy-opencv", "robotpy-pathplannerlib (>=2023.0.0,<2024.0.0)", "robotpy-photonvision (>=2023.1.2,<2024.0.0)", "robotpy-playingwithfusion (>=2023.0.0,<2024.0.0)", "robotpy-rev (>=2023.1.1,<2024.0.0)", "robotpy-wpilib-utilities (>=2023.0.0,<2024)", "robotpy-wpimath (==2023.4.2.1)", "robotpy-wpiutil (==2023.4.2.0)", "wpilib (==2023.4.2.0)"]
apriltag = ["numpy", "robotpy-apriltag (==2023.4.2.0)", "robotpy-opencv"]
commands2 = ["robotpy-commands-v2 (==2023.4.2.0)"]
cscore = ["numpy", "robotpy-cscore (==2023.4.2.0)", "robotpy-opencv"]
ctre = ["robotpy-ctre (>=2023.0.0,<2024.0.0)"]
navx = ["robotpy-navx (>=2023.0.1,<2024.0.0)"]
pathplannerlib = ["robotpy-pathplannerlib (>=2023.0.0,<2024.0.0)"]
photonvision = ["robotpy-photonvision (>=2023.1.2,<2024.0.0)"]
playingwithfusion = ["robotpy-playingwithfusion (>=2023.0.0,<2024.0.0)"]
rev = ["robotpy-rev (>=2023.1.1,<2024.0.0)"]
sim = ["robotpy-halsim-ds-socket (==2023.4.2.0)", "robotpy-halsim-ws (==2023.4.2.0)"]
[[package]]
name = "robotpy-apriltag"
version = "2023.4.2.0"
description = "RobotPy bindings for WPILib's AprilTag library"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-apriltag-2023.4.2.0.tar.gz", hash = "sha256:bd1c248c475e7c17f5492e431c40dc8051c23b7ef1fbfa1256425d2e7e846625"},
{file = "robotpy_apriltag-2023.4.2.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:b5f242afabf493ab3dcb9ec4794e75ee7d595063584175837dd10eb30e707054"},
{file = "robotpy_apriltag-2023.4.2.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:19a9b3fd3764156397b304070421194d0eaa1053e898b07f8e244978709189e6"},
{file = "robotpy_apriltag-2023.4.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:98ff87990ed55bd64a5f4a97dfc21632427717c179ebf155d03690d7ac4e1eca"},
{file = "robotpy_apriltag-2023.4.2.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b9fa85314535823fdd3ac3274366ba1c0cb840fa8790fa460d18d03a53bfc865"},
{file = "robotpy_apriltag-2023.4.2.0-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:0871753a99e103ec4c1bac1488e9a9ef7377468e1561a4aa7c42c8c63b32cf82"},
{file = "robotpy_apriltag-2023.4.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:015b484bbdcf41732de15a27f1799de728716e0d9a67c8e35bfe8af89a99cd44"},
{file = "robotpy_apriltag-2023.4.2.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:0a620b2a21c4e1a1a56377821052ec9904e81121e20459a0ff9bcf575e6cc308"},
{file = "robotpy_apriltag-2023.4.2.0-cp37-cp37m-manylinux_2_35_x86_64.whl", hash = "sha256:c6bab3df4adf78c0cf9e61595686e3edd3b73786b6aa8f46884b6f84047715fb"},
{file = "robotpy_apriltag-2023.4.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3f76710a0fde09064753a57e1e7fd7675c75c9f602df13d6d3dce20b47518da6"},
{file = "robotpy_apriltag-2023.4.2.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:d3cbb36377f132e005346b9dc2a4591533d982bc10404786f8883c128fa80df1"},
{file = "robotpy_apriltag-2023.4.2.0-cp38-cp38-manylinux_2_35_x86_64.whl", hash = "sha256:260f6bf5a2b61e7dc6e7da168be3acc276de60fd20ca745c45f0224e61d95fe3"},
{file = "robotpy_apriltag-2023.4.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:7f806e7796f374cbebf2dd32ac156ff43d6ca7bd887d04046414fcb679e83f1a"},
{file = "robotpy_apriltag-2023.4.2.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:8643bc4027718c1dadb4f803cb3e474cfa8d07d94c272e51e863726b746d0149"},
{file = "robotpy_apriltag-2023.4.2.0-cp39-cp39-manylinux_2_35_x86_64.whl", hash = "sha256:75a3afc5ce74ba8759a1eaccde5449f2a7441f72d773a98f5fb05374c6293a94"},
{file = "robotpy_apriltag-2023.4.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:1d3979129e364e5f5a4e6aabd6c65a8669568a5a168ec687bcbd763b2bc5dca1"},
]
[package.dependencies]
robotpy-wpimath = ">=2023.4.2,<2023.5.0"
robotpy-wpiutil = ">=2023.4.2,<2023.5.0"
[[package]]
name = "robotpy-commands-v2"
version = "2023.4.2.0"
description = "WPILib command framework v2"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-commands-v2-2023.4.2.0.tar.gz", hash = "sha256:0135284613022af3840b1e926232d8550bf9f3efe34930bd7911ae2d293c7713"},
{file = "robotpy_commands_v2-2023.4.2.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:b3e53ed0fb84fe486a5b465e8871667e1b9225a1c98e10a66f7ac0e266104a75"},
{file = "robotpy_commands_v2-2023.4.2.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:2f2b3b14259810d12b16404fc15812f3210b333b03f1e24d50b274d913dfb032"},
{file = "robotpy_commands_v2-2023.4.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:9dffebab98a2754cdefcb73b08719d0f032b370f55a54688852c1ebe96c9f1a0"},
{file = "robotpy_commands_v2-2023.4.2.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:6a9316b83366bfdd6ec21e794806a47552a385b36e256ef0f07a78d8e0791348"},
{file = "robotpy_commands_v2-2023.4.2.0-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:4de455478cc0b08dbb5075dd17b3515c629f9a1b4b802b6f250ee4f2a7e571d4"},
{file = "robotpy_commands_v2-2023.4.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:39d3bf1261f46149e067623542abadf602f3d52281cbad6351eb1f161972a51b"},
{file = "robotpy_commands_v2-2023.4.2.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:e04c16659d8b0d157d601ff3e4439039e459baada39ac70ddb3a30de38b483f9"},
{file = "robotpy_commands_v2-2023.4.2.0-cp37-cp37m-manylinux_2_35_x86_64.whl", hash = "sha256:e768a04aa6983bd9dcd4b9be2f3f23a41814b2e5f7e31cb5d1de3bc841bad9b6"},
{file = "robotpy_commands_v2-2023.4.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f352cb331e746894bc70cb5d6be42803e5661d87f1e892dd9a86fc9cc5cb1603"},
{file = "robotpy_commands_v2-2023.4.2.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:f6a19cbb070769873f865d7f93873e42a6ee74d4b9d97dee6b2fb99e8322e3ec"},
{file = "robotpy_commands_v2-2023.4.2.0-cp38-cp38-manylinux_2_35_x86_64.whl", hash = "sha256:622cfcd24308fba9f044947fb27ca9f566b8ad4fe7dd8001a8ea6a1b8788de2f"},
{file = "robotpy_commands_v2-2023.4.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:fe11a2acd43fbc782a497ca88fea9db4233407b27dd4c1b96a8c10870f510b7a"},
{file = "robotpy_commands_v2-2023.4.2.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:0944bdcf1ba88fb610e3b13d3cccad4876ca214a5bfcee4f035f16a63dbccb3c"},
{file = "robotpy_commands_v2-2023.4.2.0-cp39-cp39-manylinux_2_35_x86_64.whl", hash = "sha256:3f8c1030a23d82065460a1f1bbc40248f3022d6b4adbdd3c57d6eb21b13a76ff"},
{file = "robotpy_commands_v2-2023.4.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:d4dd07fdbd0d23833afdd6c404da5c76c9e9c9d136516b629cad2e4681ede67d"},
]
[package.dependencies]
wpilib = ">=2023.4.2,<2023.5.0"
[[package]]
name = "robotpy-ctre"
version = "2023.1.0"
description = "Binary wrappers for the CTRE Phoenix library"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-ctre-2023.1.0.tar.gz", hash = "sha256:33536a86b44b4fda4cd1fc4e7b3db03ad9a71268b83f7a3f495d22d6875b6274"},
{file = "robotpy_ctre-2023.1.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:e87ae20ab680c495612469fb49413cfe34f58825ccb212288a01d6eb32ac115d"},
{file = "robotpy_ctre-2023.1.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:7459d541a695c8677717c805ffc6fef52c0c291a21a60d57b57b7d441fff7953"},
{file = "robotpy_ctre-2023.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:f7a4eea67a414e65f7a74fcb34eb3425ad90bbbfb5bde906586fb02af44c295e"},
{file = "robotpy_ctre-2023.1.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:8e0e66b4911f6ff68da6ec81b596cd8f59456058aab9894cf9dc074fc8eabe83"},
{file = "robotpy_ctre-2023.1.0-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:b87088fb1971cdef87e6aaee5b7983ab41456b865f7ddd1ff4de90f7ffb9b013"},
{file = "robotpy_ctre-2023.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:44a3f63c423c1610ac906b65175d0710318b2af1ca65ef785788919e6dbefe89"},
{file = "robotpy_ctre-2023.1.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:f79d43a8c1f27d162e694f1e4c3760385c8bfe51850e97807f9888acbaca7c42"},
{file = "robotpy_ctre-2023.1.0-cp37-cp37m-manylinux_2_35_x86_64.whl", hash = "sha256:6679ae819a82f0c95b3dc94955ced9942b32b0e74c135856bb4f01a09f32d64b"},
{file = "robotpy_ctre-2023.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:37af9e4f44cbd29d5bbc5675a5ed7b068e96cc48ac03372d04f027e8c933080b"},
{file = "robotpy_ctre-2023.1.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:3fb689294cbac1d091bc6c4ddbd25ecee3d5bbdb37a0971fa381b70c52f81eba"},
{file = "robotpy_ctre-2023.1.0-cp38-cp38-manylinux_2_35_x86_64.whl", hash = "sha256:fbfd1d5a6ef42f3e9bc3801a91b0b824335549618ca06de9ebbc5ee6d358a188"},
{file = "robotpy_ctre-2023.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:66912b31e3f4356f9ecde39f1bf96ddd0cec15b4e3b8c4c5241d63538aca5565"},
{file = "robotpy_ctre-2023.1.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:909f35f3640846c0330f512a3dc3be70037126178daa0b597f367aa86ca75954"},
{file = "robotpy_ctre-2023.1.0-cp39-cp39-manylinux_2_35_x86_64.whl", hash = "sha256:a20417163a88703da979deb8be5a937d04be4b32e1a998c5018a37fba9589994"},
{file = "robotpy_ctre-2023.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:bdf5c64fee67a2c1e20dbd3ce52c0edef45021408147f182f6b0903ea9b52ab6"},
]
[package.dependencies]
wpilib = ">=2023.1.1.0,<2024.0.0"
[[package]]
name = "robotpy-hal"
version = "2023.4.2.0"
description = "Binary wrapper for FRC HAL"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-hal-2023.4.2.0.tar.gz", hash = "sha256:ad01e0620bb7fbe180df96828c9b5ef12b8312f3665d17687429520667cd75a8"},
{file = "robotpy_hal-2023.4.2.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:d2b636ff2313594b0cbb6fda0a16398d019390f4b759c8ebbd024732305ebfad"},
{file = "robotpy_hal-2023.4.2.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:2cd7be0fbc6ff13c34e2eb414736c1021375c651ede5f27201568ddd21ee71e2"},
{file = "robotpy_hal-2023.4.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:7556a1d6ed31cf9f3481c69b962cf2e8445619ae68e6135248abe3d5ca84c187"},
{file = "robotpy_hal-2023.4.2.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:c3d0db3ae085f05ba4bc4dd6c1b5819c3b03fc00d06cd6c2d2fcd9e6187171db"},
{file = "robotpy_hal-2023.4.2.0-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:7fcbefefd6794d015fef148d4b4b7d1406de6b8db4611358f98a11fee5163aea"},
{file = "robotpy_hal-2023.4.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:7dbd7ce3c9c41bc4a76de48b2e6e813c8453165c0eea11be52c819c9f440acfb"},
{file = "robotpy_hal-2023.4.2.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:9dafec76221952f92ed2814cd3442d68cb4307c129b15980ab4c410b97f287b7"},
{file = "robotpy_hal-2023.4.2.0-cp37-cp37m-manylinux_2_35_x86_64.whl", hash = "sha256:4257aa29674315a5762cda7eaba71e8ac5f56c89522c7137617123464fa12af5"},
{file = "robotpy_hal-2023.4.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:69707a4e84fb315be684d7b60d4b2d6c49f690df6ffc0036e5759542cd082baf"},
{file = "robotpy_hal-2023.4.2.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf0839f12934e0995944ea895fef7bfbfa0288b7022ff5b81ecfbbb60ec7d5c2"},
{file = "robotpy_hal-2023.4.2.0-cp38-cp38-manylinux_2_35_x86_64.whl", hash = "sha256:bc7910cdda20cbc5d4a20328c9cb50feb2d5a34a1864a35defd98518f5ed0f6a"},
{file = "robotpy_hal-2023.4.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:57d01339df23776e62f35c2dc576aebd47b6ce5efbdd3307e18d3e89fc92a407"},
{file = "robotpy_hal-2023.4.2.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:80e1946f379abbbb8742212ee9a06c2fde5b6d67b7e034fc23a6626a129b3db6"},
{file = "robotpy_hal-2023.4.2.0-cp39-cp39-manylinux_2_35_x86_64.whl", hash = "sha256:2fff76a2de022cad8623f765b51e6bbe82bcdfa25ea688e7c8449a4bdb40f232"},
{file = "robotpy_hal-2023.4.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:1acb9a849b9efecaa9aa57003be3f8fe2c76f68e835114cc4bb5ade862ec8b29"},
]
[package.dependencies]
robotpy-wpiutil = ">=2023.4.2,<2023.5.0"
[[package]]
name = "robotpy-halsim-gui"
version = "2023.4.2.0"
description = "WPILib command framework"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-halsim-gui-2023.4.2.0.tar.gz", hash = "sha256:8ba4e5511a77d09864f8d207ccb0d85b494249dd48a5a0241d340db21c69a6e1"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86a2afa2f3ae61aae5bf33d03fb512926c50a510d020a8320ec62b8b933b0dc1"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:02d28f34482cc0d3bc4117e078771d86f2127662cab48e1e5d60767c917c0d20"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:950c4c395c20786e3beecc080e131de4c2f1038f925927c1b774e317ad4e0ac3"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b706122f02a5715187f1ba1d93d6e23c874bb3ebf95880726709645746e512c8"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:df028414ada8e17290b6bc4e01ed1feedb8af876d34eb48d83cb506616fb8e0b"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5d2d05fe248770ae08622e48d655376a5153e992ae944d5829ea455e12a01698"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:b248e27aeaead168a601aec424a3bc3647008c49b949e831b21d13c231dc1356"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp37-cp37m-manylinux_2_35_x86_64.whl", hash = "sha256:1f93c4c58c76e4b56b0209adfe7e5e6a75cceb403dcb1b6b205e6a08b4df5aa3"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:eb858aec65e3c16ecf66a5d60122a28e83cbbb4b037270ddad93bc0a64a57092"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:582c2ccc4a23d3b0b65aefa95ec75189fcbe5a6b6429ae051fe01a3fe664a112"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp38-cp38-manylinux_2_35_x86_64.whl", hash = "sha256:022da7c46f15860ce7bad2fac82a0faa15ad7e8c52b06e9d859d3395c56a06eb"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:b046addaa962d56d7e5a5f6fe49f8f675c8117542a90165bfe0c1ca3bf9864b8"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:afc2ee20ba9ad0b944e51af3ed0fad707ddcde76903de32c733f74154345cee4"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp39-cp39-manylinux_2_35_x86_64.whl", hash = "sha256:d560e8ea325f82cb060585ebb4456c916609fd3ec3c1c69d48b5e1a07c680a40"},
{file = "robotpy_halsim_gui-2023.4.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:f23429433ba6fa9b11ba6aee48d64cdfd9ac4900aa98b9848609c367e82d39cc"},
]
[package.dependencies]
pyntcore = ">=2023.4.2,<2023.5.0"
robotpy-hal = ">=2023.4.2,<2023.5.0"
robotpy-wpimath = ">=2023.4.2,<2023.5.0"
robotpy-wpiutil = ">=2023.4.2,<2023.5.0"
[[package]]
name = "robotpy-installer"
version = "2023.0.3"
description = "Installation utility program for RobotPy"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-installer-2023.0.3.tar.gz", hash = "sha256:f4e9f9ee0c7c1a6cb3ad661f8358fab764e9d1d85780e55f5a838d6575e46157"},
{file = "robotpy_installer-2023.0.3-py3-none-any.whl", hash = "sha256:6769ce1a5227443b28c08cd14341f5cde2ae6a1e073f56ff1787dee528aa11f9"},
]
[package.dependencies]
click = "*"
paramiko = "*"
[[package]]
name = "robotpy-photonvision"
version = "2023.3.0"
description = "RobotPy wrappers for photonvision"
category = "main"
optional = false
python-versions = ">=3.6"
files = [
{file = "robotpy-photonvision-2023.3.0.tar.gz", hash = "sha256:604b331b7b3416401f2fd0588f21de0314282d473f4ec14b1ce548da2b3bc722"},
{file = "robotpy_photonvision-2023.3.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:6c8e89a8eb2f13d80833708e74cd80faea4a1030d2533cbd0136f622a40ca567"},
{file = "robotpy_photonvision-2023.3.0-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:3dcab4380ac99f94cb75c896038bea43629523ab6cc48bf279a92e7102b451c5"},
{file = "robotpy_photonvision-2023.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:672fdf9c59936f55688095f1824dba337762895146b06bddf7bc7ce71b5a4539"},
{file = "robotpy_photonvision-2023.3.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:35e3233d143c9b568e777561e9467dbb87de3bb786558afd8fadb58e64a77b5c"},