-
Notifications
You must be signed in to change notification settings - Fork 98
/
poetry.lock
5212 lines (4749 loc) · 394 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.6.1 and should not be changed by hand.
[[package]]
name = "acryl-datahub"
version = "0.8.45.2"
description = "A CLI to work with DataHub metadata"
optional = true
python-versions = ">=3.7"
files = [
{file = "acryl-datahub-0.8.45.2.tar.gz", hash = "sha256:40f773551c600352bcbbe08cfadd4f785c11c20fae0f7c18a658f50967b04ba7"},
{file = "acryl_datahub-0.8.45.2-py3-none-any.whl", hash = "sha256:8e1d1afdcf56f386e2b0f9636760e057f15b358956af51727d16fdacada83c2d"},
]
[package.dependencies]
aiohttp = "<4"
avro = ">=1.10.2,<1.11"
avro-gen3 = "0.7.6"
cached-property = "*"
click = ">=6.0.0"
click-default-group = "*"
click-spinner = "*"
Deprecated = "*"
docker = "*"
entrypoints = "*"
expandvars = ">=0.6.5"
humanfriendly = "*"
ijson = "*"
markupsafe = ">=1.1.1,<=2.0.1"
mixpanel = ">=4.9.0"
mypy-extensions = ">=0.4.3"
packaging = "*"
progressbar2 = "*"
psutil = ">=5.8.0"
pydantic = ">=1.5.1"
python-dateutil = ">=2.8.0"
PyYAML = "*"
ratelimiter = "*"
stackprinter = ">=0.2.6"
tabulate = "*"
termcolor = ">=1.0.0"
toml = ">=0.10.0"
types-Deprecated = "*"
types-termcolor = ">=1.0.0"
typing-extensions = {version = ">=3.10.0.2", markers = "python_version >= \"3.8\""}
typing-inspect = "*"
[package.extras]
airflow = ["Deprecated", "PyYAML", "aiohttp (<4)", "apache-airflow (>=1.10.2)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
all = ["Deprecated", "GeoAlchemy2", "GitPython (>2)", "JPype1", "Jinja2 (<3.1.0)", "PyAthena[sqlalchemy] (==2.4.1)", "PyYAML", "acryl-iceberg-legacy (==0.0.4)", "acryl-pyhive[hive] (>=0.6.12)", "acryl-pyhive[hive] (>=0.6.13)", "aiohttp (<4)", "apache-airflow (>=1.10.2)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "azure-identity (==1.10.0)", "boto3", "botocore (!=1.23.0)", "cached-property", "cachetools", "click (>=6.0.0)", "click-default-group", "click-spinner", "clickhouse-sqlalchemy (==0.1.8)", "confluent-kafka (<1.9.0)", "confluent-kafka (>=1.5.0)", "cryptography", "cx-Oracle", "databricks-dbapi", "deltalake", "docker", "elasticsearch (==7.13.4)", "entrypoints", "expandvars (>=0.6.5)", "fastavro (>=1.2.0)", "feast (==0.18.0)", "flask-openid (>=1.3.0)", "google-api-python-client", "google-cloud-bigquery", "google-cloud-logging (<3.1.2)", "gql (>=3.3.0)", "gql[requests] (>=3.3.0)", "great-expectations", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "grpcio (==1.44.0)", "grpcio-tools (==1.44.0)", "hdbcli (>=2.11.20)", "humanfriendly", "ijson", "lkml (>=1.3.0b5)", "looker-sdk (==22.2.1)", "markupsafe (>=1.1.1,<=2.0.1)", "more-itertools (>=8.12.0)", "moto[s3]", "msal", "msal (==1.16.0)", "networkx (>=2.6.2)", "okta (>=1.7.0,<1.8.0)", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "pyarrow (>=6.0.1)", "pydeequ (==1.0.1)", "pydruid (>=0.6.2)", "pymongo[srv] (>=3.11)", "pymysql (>=1.0.2)", "pyspark (==3.0.3)", "python-dateutil (>=2.8.0)", "python-ldap (>=2.4)", "ratelimiter", "redash-toolbelt", "requests", "simple-salesforce", "smart-open[s3] (>=5.2.1)", "snowflake-sqlalchemy (<=1.2.4)", "sql-metadata", "sql-metadata (==2.2.2)", "sqlalchemy", "sqlalchemy (==1.3.24)", "sqlalchemy-bigquery (>=1.4.1)", "sqlalchemy-hana (>=0.5.0)", "sqlalchemy-pytds (>=0.3)", "sqlalchemy-redshift", "sqlalchemy-vertica[vertica-python] (==0.0.5)", "sqllineage (==1.3.6)", "sqlparse", "stackprinter (>=0.2.6)", "tableauserverclient (>=0.17.0)", "tableschema (>=1.20.2)", "tabulate", "tenacity (>=8.0.1)", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "trino (>=0.308)", "trino[sqlalchemy] (>=0.308)", "types-Deprecated", "types-protobuf", "types-termcolor (>=1.0.0)", "types-ujson (>=4.2.1)", "ujson (>=4.3.0)", "wcmatch"]
athena = ["Deprecated", "PyAthena[sqlalchemy] (==2.4.1)", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
azure-ad = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
base = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
bigquery = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "google-api-python-client", "google-cloud-bigquery", "google-cloud-logging (<3.1.2)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "more-itertools (>=8.12.0)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlalchemy-bigquery (>=1.4.1)", "sqllineage (==1.3.6)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
bigquery-beta = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "google-api-python-client", "google-cloud-bigquery", "google-cloud-logging (<3.1.2)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "more-itertools (>=8.12.0)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sql-metadata", "sqlalchemy (==1.3.24)", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
bigquery-usage = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "cachetools", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "google-api-python-client", "google-cloud-bigquery", "google-cloud-logging (<3.1.2)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "more-itertools (>=8.12.0)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
circuit-breaker = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "gql (>=3.3.0)", "gql[requests] (>=3.3.0)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
clickhouse = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "clickhouse-sqlalchemy (==0.1.8)", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
clickhouse-usage = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "clickhouse-sqlalchemy (==0.1.8)", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
datahub-business-glossary = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
datahub-kafka = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "confluent-kafka (<1.9.0)", "confluent-kafka (>=1.5.0)", "docker", "entrypoints", "expandvars (>=0.6.5)", "fastavro (>=1.2.0)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
datahub-lineage-file = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
datahub-rest = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
dbt = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "boto3", "botocore (!=1.23.0)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
delta-lake = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "boto3", "botocore (!=1.23.0)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "deltalake", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "moto[s3]", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "pyarrow (>=6.0.1)", "pydeequ (==1.0.1)", "pyspark (==3.0.3)", "python-dateutil (>=2.8.0)", "ratelimiter", "smart-open[s3] (>=5.2.1)", "stackprinter (>=0.2.6)", "tableschema (>=1.20.2)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)", "types-ujson (>=4.2.1)", "ujson (>=4.3.0)", "wcmatch"]
dev = ["Deprecated", "GeoAlchemy2", "GitPython (>2)", "PyYAML", "acryl-iceberg-legacy (==0.0.4)", "acryl-pyhive[hive] (>=0.6.13)", "aiohttp (<4)", "apache-airflow[snowflake] (>=2.0.2)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "azure-identity (==1.10.0)", "black (>=21.12b0)", "boto3", "boto3-stubs[glue,s3,sagemaker,sts]", "botocore (!=1.23.0)", "build", "cached-property", "cachetools", "click (>=6.0.0)", "click-default-group", "click-spinner", "clickhouse-sqlalchemy (==0.1.8)", "confluent-kafka (<1.9.0)", "confluent-kafka (>=1.5.0)", "coverage (>=5.1)", "cx-Oracle", "databricks-dbapi", "deepdiff", "deltalake", "docker", "elasticsearch (==7.13.4)", "entrypoints", "expandvars (>=0.6.5)", "fastavro (>=1.2.0)", "feast (==0.18.0)", "flake8 (>=3.8.3)", "flake8-tidy-imports (>=4.3.0)", "flask-openid (>=1.3.0)", "freezegun", "google-api-python-client", "google-cloud-bigquery", "google-cloud-logging (<3.1.2)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "grpcio (==1.44.0)", "grpcio-tools (==1.44.0)", "humanfriendly", "ijson", "isort (>=5.7.0)", "jsonpickle", "lkml (>=1.3.0b5)", "looker-sdk (==22.2.1)", "markupsafe (>=1.1.1,<=2.0.1)", "mixpanel (>=4.9.0)", "more-itertools (>=8.12.0)", "moto[s3]", "msal (==1.16.0)", "mypy (>=0.981)", "mypy-extensions (>=0.4.3)", "networkx (>=2.6.2)", "okta (>=1.7.0,<1.8.0)", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "pyarrow (>=6.0.1)", "pydantic (>=1.5.1)", "pydantic (>=1.9.0,<1.10)", "pydeequ (==1.0.1)", "pydruid (>=0.6.2)", "pymysql (>=1.0.2)", "pyspark (==3.0.3)", "pytest (>=6.2.2)", "pytest-asyncio (>=0.16.0)", "pytest-cov (>=2.8.1)", "pytest-docker (>=0.10.3,<0.12)", "python-dateutil (>=2.8.0)", "python-ldap (>=2.4)", "ratelimiter", "redash-toolbelt", "requests", "requests-mock", "simple-salesforce", "smart-open[s3] (>=5.2.1)", "snowflake-sqlalchemy (<=1.2.4)", "sql-metadata", "sql-metadata (==2.2.2)", "sqlalchemy (==1.3.24)", "sqlalchemy-bigquery (>=1.4.1)", "sqlalchemy-redshift", "sqlalchemy-stubs", "sqlalchemy-vertica[vertica-python] (==0.0.5)", "sqllineage (==1.3.6)", "sqlparse", "stackprinter (>=0.2.6)", "tableauserverclient (>=0.17.0)", "tableschema (>=1.20.2)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "trino (>=0.308)", "trino[sqlalchemy] (>=0.308)", "twine", "types-Deprecated", "types-PyMySQL", "types-PyYAML", "types-cachetools", "types-click (==0.1.12)", "types-click-spinner", "types-dataclasses", "types-freezegun", "types-pkg-resources", "types-protobuf", "types-pyOpenSSL", "types-python-dateutil", "types-pytz", "types-requests", "types-six", "types-tabulate", "types-termcolor (>=1.0.0)", "types-toml", "types-ujson (>=4.2.1)", "typing-extensions (>=3.10.0.2)", "typing-extensions (>=3.7.4.3)", "typing-inspect", "ujson (>=4.3.0)", "wcmatch"]
dev-airflow1 = ["Deprecated", "GeoAlchemy2", "GitPython (>2)", "PyYAML", "WTForms (==2.3.3)", "acryl-iceberg-legacy (==0.0.4)", "acryl-pyhive[hive] (>=0.6.13)", "aiohttp (<4)", "apache-airflow (==1.10.15)", "apache-airflow-backport-providers-snowflake", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "azure-identity (==1.10.0)", "black (>=21.12b0)", "boto3", "boto3-stubs[glue,s3,sagemaker,sts]", "botocore (!=1.23.0)", "build", "cached-property", "cachetools", "click (>=6.0.0)", "click-default-group", "click-spinner", "clickhouse-sqlalchemy (==0.1.8)", "confluent-kafka (<1.9.0)", "confluent-kafka (>=1.5.0)", "coverage (>=5.1)", "cx-Oracle", "databricks-dbapi", "deepdiff", "deltalake", "docker", "elasticsearch (==7.13.4)", "entrypoints", "expandvars (>=0.6.5)", "fastavro (>=1.2.0)", "flake8 (>=3.8.3)", "flake8-tidy-imports (>=4.3.0)", "freezegun", "google-api-python-client", "google-cloud-bigquery", "google-cloud-logging (<3.1.2)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "grpcio (==1.44.0)", "grpcio-tools (==1.44.0)", "humanfriendly", "ijson", "isort (>=5.7.0)", "jsonpickle", "lkml (>=1.3.0b5)", "looker-sdk (==22.2.1)", "markupsafe (>=1.1.1,<=2.0.1)", "mixpanel (>=4.9.0)", "more-itertools (>=8.12.0)", "moto[s3]", "msal (==1.16.0)", "mypy (>=0.981)", "mypy-extensions (>=0.4.3)", "networkx (>=2.6.2)", "okta (>=1.7.0,<1.8.0)", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "pyarrow (>=6.0.1)", "pydantic (>=1.5.1)", "pydantic (>=1.9.0,<1.10)", "pydeequ (==1.0.1)", "pydruid (>=0.6.2)", "pymysql (>=1.0.2)", "pyspark (==3.0.3)", "pytest (>=6.2.2)", "pytest-asyncio (>=0.16.0)", "pytest-cov (>=2.8.1)", "pytest-docker (>=0.10.3,<0.12)", "python-dateutil (>=2.8.0)", "python-ldap (>=2.4)", "ratelimiter", "redash-toolbelt", "requests", "requests-mock", "simple-salesforce", "smart-open[s3] (>=5.2.1)", "snowflake-sqlalchemy (<=1.2.4)", "sql-metadata", "sql-metadata (==2.2.2)", "sqlalchemy (==1.3.24)", "sqlalchemy-bigquery (>=1.4.1)", "sqlalchemy-redshift", "sqlalchemy-stubs", "sqlalchemy-vertica[vertica-python] (==0.0.5)", "sqllineage (==1.3.6)", "sqlparse", "stackprinter (>=0.2.6)", "tableauserverclient (>=0.17.0)", "tableschema (>=1.20.2)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "trino (>=0.308)", "trino[sqlalchemy] (>=0.308)", "twine", "types-Deprecated", "types-PyMySQL", "types-PyYAML", "types-cachetools", "types-click (==0.1.12)", "types-click-spinner", "types-dataclasses", "types-freezegun", "types-pkg-resources", "types-protobuf", "types-pyOpenSSL", "types-python-dateutil", "types-pytz", "types-requests", "types-six", "types-tabulate", "types-termcolor (>=1.0.0)", "types-toml", "types-ujson (>=4.2.1)", "typing-extensions (>=3.10.0.2)", "typing-extensions (>=3.7.4.3)", "typing-inspect", "ujson (>=4.3.0)", "wcmatch"]
dev-airflow1-base = ["WTForms (==2.3.3)", "apache-airflow (==1.10.15)", "apache-airflow-backport-providers-snowflake", "snowflake-sqlalchemy (<=1.2.4)"]
druid = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "pydruid (>=0.6.2)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
elasticsearch = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "elasticsearch (==7.13.4)", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
feast = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "feast (==0.18.0)", "flask-openid (>=1.3.0)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
feast-legacy = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
glue = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "boto3", "botocore (!=1.23.0)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
great-expectations = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
hana = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "hdbcli (>=2.11.20)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlalchemy-hana (>=0.5.0)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
hive = ["Deprecated", "PyYAML", "acryl-pyhive[hive] (>=0.6.13)", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "databricks-dbapi", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
iceberg = ["Deprecated", "PyYAML", "acryl-iceberg-legacy (==0.0.4)", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "azure-identity (==1.10.0)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
integration-tests = ["JPype1", "PyAthena[sqlalchemy] (==2.4.1)", "acryl-iceberg-legacy (==0.0.4)", "acryl-pyhive[hive] (>=0.6.13)", "azure-identity (==1.10.0)", "boto3", "botocore (!=1.23.0)", "clickhouse-sqlalchemy (==0.1.8)", "cryptography", "databricks-dbapi", "deltalake", "docker", "feast (==0.18.0)", "flask-openid (>=1.3.0)", "gql (>=3.3.0)", "gql[requests] (>=3.3.0)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "hdbcli (>=2.11.20)", "moto[s3]", "msal", "packaging", "parse (>=1.19.0)", "pyarrow (>=6.0.1)", "pydeequ (==1.0.1)", "pydruid (>=0.6.2)", "pymongo[srv] (>=3.11)", "pymysql (>=1.0.2)", "pyspark (==3.0.3)", "python-ldap (>=2.4)", "redash-toolbelt", "requests", "smart-open[s3] (>=5.2.1)", "snowflake-sqlalchemy (<=1.2.4)", "sql-metadata", "sqlalchemy (==1.3.24)", "sqlalchemy-hana (>=0.5.0)", "sqlalchemy-pytds (>=0.3)", "sqlalchemy-vertica[vertica-python] (==0.0.5)", "sqllineage (==1.3.6)", "sqlparse", "tableschema (>=1.20.2)", "traitlets (<5.2.2)", "types-ujson (>=4.2.1)", "ujson (>=4.3.0)", "wcmatch"]
kafka = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "confluent-kafka (<1.9.0)", "confluent-kafka (>=1.5.0)", "docker", "entrypoints", "expandvars (>=0.6.5)", "fastavro (>=1.2.0)", "grpcio (==1.44.0)", "grpcio-tools (==1.44.0)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "networkx (>=2.6.2)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-protobuf", "types-termcolor (>=1.0.0)"]
kafka-connect = ["Deprecated", "JPype1", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
ldap = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "python-ldap (>=2.4)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
looker = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "looker-sdk (==22.2.1)", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
lookml = ["Deprecated", "GitPython (>2)", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "lkml (>=1.3.0b5)", "looker-sdk (==22.2.1)", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sql-metadata (==2.2.2)", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
mariadb = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "pymysql (>=1.0.2)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
metabase = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
mode = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "tenacity (>=8.0.1)", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
mongodb = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "pymongo[srv] (>=3.11)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
mssql = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlalchemy-pytds (>=0.3)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
mssql-odbc = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "pyodbc", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
mysql = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "pymysql (>=1.0.2)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
nifi = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
okta = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "okta (>=1.7.0,<1.8.0)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
oracle = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "cx-Oracle", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
postgres = ["Deprecated", "GeoAlchemy2", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
powerbi = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "msal (==1.16.0)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
presto-on-hive = ["Deprecated", "PyYAML", "acryl-pyhive[hive] (>=0.6.12)", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "pymysql (>=1.0.2)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
pulsar = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
redash = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "redash-toolbelt", "sql-metadata", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
redshift = ["Deprecated", "GeoAlchemy2", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlalchemy-redshift", "sqllineage (==1.3.6)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)", "wcmatch"]
redshift-usage = ["Deprecated", "GeoAlchemy2", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "psycopg2-binary", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlalchemy-redshift", "sqllineage (==1.3.6)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)", "wcmatch"]
s3 = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "boto3", "botocore (!=1.23.0)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "moto[s3]", "packaging", "parse (>=1.19.0)", "progressbar2", "psutil (>=5.8.0)", "pyarrow (>=6.0.1)", "pydeequ (==1.0.1)", "pyspark (==3.0.3)", "python-dateutil (>=2.8.0)", "ratelimiter", "smart-open[s3] (>=5.2.1)", "stackprinter (>=0.2.6)", "tableschema (>=1.20.2)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)", "types-ujson (>=4.2.1)", "ujson (>=4.3.0)", "wcmatch"]
sagemaker = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "boto3", "botocore (!=1.23.0)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
salesforce = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "simple-salesforce", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
snowflake = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "cryptography", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "msal", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "snowflake-sqlalchemy (<=1.2.4)", "sqlalchemy (==1.3.24)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
snowflake-beta = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "cryptography", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "msal", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "snowflake-sqlalchemy (<=1.2.4)", "sqlalchemy (==1.3.24)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
snowflake-legacy = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "cryptography", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "msal", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "snowflake-sqlalchemy (<=1.2.4)", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
snowflake-usage-legacy = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "cryptography", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "more-itertools (>=8.12.0)", "msal", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "snowflake-sqlalchemy (<=1.2.4)", "sqlalchemy (==1.3.24)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
sqlalchemy = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
starburst-trino-usage = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlparse", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "trino (>=0.308)", "trino[sqlalchemy] (>=0.308)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
superset = ["Deprecated", "Jinja2 (<3.1.0)", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "requests", "sqlalchemy", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
tableau = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "stackprinter (>=0.2.6)", "tableauserverclient (>=0.17.0)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
trino = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "trino (>=0.308)", "trino[sqlalchemy] (>=0.308)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
vertica = ["Deprecated", "PyYAML", "aiohttp (<4)", "avro (>=1.10.2,<1.11)", "avro-gen3 (==0.7.6)", "cached-property", "click (>=6.0.0)", "click-default-group", "click-spinner", "docker", "entrypoints", "expandvars (>=0.6.5)", "great-expectations (>=0.15.12,<0.15.23)", "greenlet", "humanfriendly", "ijson", "markupsafe (>=1.1.1,<=2.0.1)", "packaging", "progressbar2", "psutil (>=5.8.0)", "python-dateutil (>=2.8.0)", "ratelimiter", "sqlalchemy (==1.3.24)", "sqlalchemy-vertica[vertica-python] (==0.0.5)", "stackprinter (>=0.2.6)", "tabulate", "termcolor (>=1.0.0)", "toml (>=0.10.0)", "traitlets (<5.2.2)", "types-Deprecated", "types-termcolor (>=1.0.0)"]
[[package]]
name = "aiohttp"
version = "3.8.5"
description = "Async http client/server framework (asyncio)"
optional = true
python-versions = ">=3.6"
files = [
{file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"},
{file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"},
{file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"},
{file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"},
{file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"},
{file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"},
{file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"},
{file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"},
{file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"},
{file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"},
{file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"},
{file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"},
{file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"},
{file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"},
{file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"},
{file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"},
{file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"},
{file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"},
{file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"},
{file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"},
{file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"},
{file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"},
{file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"},
{file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"},
{file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"},
{file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"},
{file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"},
{file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"},
{file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"},
{file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"},
{file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"},
{file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"},
{file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"},
{file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"},
{file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"},
{file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"},
{file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"},
{file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"},
{file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"},
{file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"},
{file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"},
{file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"},
{file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"},
{file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"},
{file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"},
{file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"},
{file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"},
{file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"},
{file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"},
{file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"},
{file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"},
{file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"},
{file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"},
{file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"},
{file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"},
{file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"},
{file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"},
{file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"},
{file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"},
{file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"},
{file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"},
{file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"},
{file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"},
{file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"},
{file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"},
{file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"},
{file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"},
{file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"},
{file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"},
{file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"},
{file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"},
{file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"},
{file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"},
{file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"},
{file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"},
{file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"},
{file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"},
{file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"},
{file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"},
{file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"},
{file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"},
{file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"},
{file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"},
{file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"},
{file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"},
{file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"},
{file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"},
]
[package.dependencies]
aiosignal = ">=1.1.2"
async-timeout = ">=4.0.0a3,<5.0"
attrs = ">=17.3.0"
charset-normalizer = ">=2.0,<4.0"
frozenlist = ">=1.1.1"
multidict = ">=4.5,<7.0"
yarl = ">=1.0,<2.0"
[package.extras]
speedups = ["Brotli", "aiodns", "cchardet"]
[[package]]
name = "aiosignal"
version = "1.3.1"
description = "aiosignal: a list of registered asynchronous callbacks"
optional = true
python-versions = ">=3.7"
files = [
{file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"},
{file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"},
]
[package.dependencies]
frozenlist = ">=1.1.0"
[[package]]
name = "alembic"
version = "1.8.1"
description = "A database migration tool for SQLAlchemy."
optional = false
python-versions = ">=3.7"
files = [
{file = "alembic-1.8.1-py3-none-any.whl", hash = "sha256:0a024d7f2de88d738d7395ff866997314c837be6104e90c5724350313dee4da4"},
{file = "alembic-1.8.1.tar.gz", hash = "sha256:cd0b5e45b14b706426b833f06369b9a6d5ee03f826ec3238723ce8caaf6e5ffa"},
]
[package.dependencies]
importlib-metadata = {version = "*", markers = "python_version < \"3.9\""}
importlib-resources = {version = "*", markers = "python_version < \"3.9\""}
Mako = "*"
SQLAlchemy = ">=1.3.0"
[package.extras]
tz = ["python-dateutil"]
[[package]]
name = "altair"
version = "4.2.0"
description = "Altair: A declarative statistical visualization library for Python."
optional = true
python-versions = ">=3.7"
files = [
{file = "altair-4.2.0-py3-none-any.whl", hash = "sha256:0c724848ae53410c13fa28be2b3b9a9dcb7b5caa1a70f7f217bd663bb419935a"},
{file = "altair-4.2.0.tar.gz", hash = "sha256:d87d9372e63b48cd96b2a6415f0cf9457f50162ab79dc7a31cd7e024dd840026"},
]
[package.dependencies]
entrypoints = "*"
jinja2 = "*"
jsonschema = ">=3.0"
numpy = "*"
pandas = ">=0.18"
toolz = "*"
[package.extras]
dev = ["black", "docutils", "flake8", "ipython", "m2r", "mistune (<2.0.0)", "pytest", "recommonmark", "sphinx", "vega-datasets"]
[[package]]
name = "amundsen-common"
version = "0.29.0"
description = "Common code library for Amundsen"
optional = false
python-versions = ">=3.7"
files = [
{file = "amundsen-common-0.29.0.tar.gz", hash = "sha256:a8f8d7cb413271573adec321102d60c1f37fa6ebb6323a9904b7df666dc10014"},
{file = "amundsen_common-0.29.0-py3-none-any.whl", hash = "sha256:63e06c21fead2af1b7a4ebdb459fd6d534b1ab39646cf1de6124192e9106c4d8"},
]
[package.dependencies]
attrs = ">=19.0.0"
Flask = ">=1.0.2"
marshmallow = ">=3.0"
marshmallow3-annotations = ">=1.1.0"
[package.extras]
all = ["flake8 (>=3.9.2)", "flake8-tidy-imports (>=4.3.0)", "isort[colors] (>=5.8.0,<5.9.0)", "mock (>=4.0.3)", "mypy (>=0.812,<0.900)", "pyspark (==3.0.1)", "pytest (>=6.2.4)", "pytest-cov (>=2.12.0)", "pytest-env (>=0.6.2)", "pytest-mock (>=3.6.1)", "typed-ast (>=1.4.3)"]
[[package]]
name = "amundsen-databuilder"
version = "7.4.2"
description = "Amundsen Data builder"
optional = false
python-versions = ">=3.7"
files = [
{file = "amundsen-databuilder-7.4.2.tar.gz", hash = "sha256:628feda9c63f9ab308254b2a859637c2aa380b4cd3be6987d5a221d10c3c680d"},
{file = "amundsen_databuilder-7.4.2-py3-none-any.whl", hash = "sha256:9295193a11457f539d3d628466010d5ef59bc2b98d275d9093835c7d350a9b4c"},
]
[package.dependencies]
amundsen-common = ">=0.16.0"
amundsen-rds = "0.0.7"
atomicwrites = ">=1.1.5"
boto3 = {version = "1.17.23", optional = true, markers = "extra == \"glue\""}
elasticsearch = ">=6.2.0,<8.0"
elasticsearch-dsl = "7.4.0"
freezegun = ">=1.1.0"
google-api-python-client = {version = ">=1.6.0,<2.0.0dev", optional = true, markers = "extra == \"bigquery\""}
google-auth = {version = ">=1.16.0,<3.0.0dev", optional = true, markers = "extra == \"bigquery\""}
google-auth-httplib2 = {version = ">=0.0.1", optional = true, markers = "extra == \"bigquery\""}
httplib2 = ">=0.18.0"
Jinja2 = ">=2.10.0,<4"
jsonref = "0.2"
more-itertools = ">=4.2.0"
mysqlclient = {version = ">=1.3.6,<3", optional = true, markers = "extra == \"rds\""}
neo4j-driver = ">=4.4.5,<5.0"
pandas = ">=0.21.0,<1.5.0"
pluggy = ">=0.6.0"
py = ">=1.10.0"
PyAthena = {version = ">=1.0.0,<2.0.0", extras = ["sqlalchemy"], optional = true, markers = "extra == \"athena\""}
pyhocon = ">=0.3.42"
pyparsing = ">=2.2.0"
pytz = ">=2018.4"
requests = ">=2.25.0,<3.0"
responses = ">=0.10.6"
retrying = ">=1.3.3"
snowflake-connector-python = {version = "*", optional = true, markers = "extra == \"snowflake\""}
snowflake-sqlalchemy = {version = "*", optional = true, markers = "extra == \"snowflake\""}
sqlalchemy = ">=1.3.6"
statsd = ">=3.2.1"
unicodecsv = ">=0.14.1,<1.0"
unidecode = "*"
wheel = ">=0.31.1"
[package.extras]
all = ["Flask (==1.0.2)", "Jinja2 (>=2.10.0,<4)", "PyAthena[sqlalchemy] (>=1.0.0,<2.0.0)", "amundsen-common (>=0.16.0)", "amundsen-gremlin (>=0.0.9)", "amundsen-rds (==0.0.7)", "apache-atlas (>=0.0.11)", "atomicwrites (>=1.1.5)", "boto3 (==1.17.23)", "cassandra-driver (==3.20.1)", "confluent-kafka (==1.0.0)", "cx-Oracle (==8.2.1)", "elasticsearch (>=6.2.0,<8.0)", "elasticsearch-dsl (==7.4.0)", "fastapi (!=0.76.*)", "feast (==0.17.0)", "flake8 (>=3.9.2)", "flake8-tidy-imports (>=4.3.0)", "freezegun (>=1.1.0)", "google-api-python-client (>=1.6.0,<2.0.0dev)", "google-auth (>=1.16.0,<3.0.0dev)", "google-auth-httplib2 (>=0.0.1)", "gremlinpython (==3.4.3)", "httplib2 (>=0.18.0)", "ibm-db (>=3.0.1)", "ibm-db-sa-py3 (>=0.3.1-1)", "isort[colors] (>=5.8.0,<5.9.0)", "jsonpath-rw (==1.4.0)", "jsonref (==0.2)", "mock (>=4.0.3)", "more-itertools (>=4.2.0)", "mypy (>=0.812,<0.900)", "mysqlclient (>=1.3.6,<3)", "neo4j-driver (>=4.4.5,<5.0)", "overrides (==2.5)", "pandas (>=0.21.0,<1.5.0)", "pluggy (>=0.6.0)", "py (>=1.10.0)", "pyatlasclient (>=1.1.2)", "pydruid", "pyhocon (>=0.3.42)", "pyodbc (==4.0.30)", "pyparsing (>=2.2.0)", "pyspark (==3.0.1)", "pytest (>=6.2.4)", "pytest-cov (>=2.12.0)", "pytest-env (>=0.6.2)", "pytest-mock (>=3.6.1)", "python-schema-registry-client (==2.4.0)", "pytz (>=2018.4)", "requests (>=2.25.0,<3.0)", "requests-aws4auth (==1.1.0)", "responses (>=0.10.6)", "retrying (>=1.3.3)", "simple-salesforce (>=1.11.2)", "snowflake-connector-python", "snowflake-sqlalchemy", "sqlalchemy (>=1.3.6)", "statsd (>=3.2.1)", "teradatasqlalchemy (==17.0.0.0)", "typed-ast (>=1.4.3)", "typing-extensions (==4.0.0)", "unicodecsv (>=0.14.1,<1.0)", "unidecode", "wheel (>=0.31.1)"]
athena = ["PyAthena[sqlalchemy] (>=1.0.0,<2.0.0)"]
atlas = ["apache-atlas (>=0.0.11)", "pyatlasclient (>=1.1.2)"]
bigquery = ["google-api-python-client (>=1.6.0,<2.0.0dev)", "google-auth (>=1.16.0,<3.0.0dev)", "google-auth-httplib2 (>=0.0.1)"]
cassandra = ["cassandra-driver (==3.20.1)"]
db2 = ["ibm-db (>=3.0.1)", "ibm-db-sa-py3 (>=0.3.1-1)"]
delta = ["pyspark (==3.0.1)"]
dev = ["flake8 (>=3.9.2)", "flake8-tidy-imports (>=4.3.0)", "isort[colors] (>=5.8.0,<5.9.0)", "mock (>=4.0.3)", "mypy (>=0.812,<0.900)", "pyspark (==3.0.1)", "pytest (>=6.2.4)", "pytest-cov (>=2.12.0)", "pytest-env (>=0.6.2)", "pytest-mock (>=3.6.1)", "typed-ast (>=1.4.3)"]
dremio = ["pyodbc (==4.0.30)"]
druid = ["pydruid"]
feast = ["fastapi (!=0.76.*)", "feast (==0.17.0)"]
glue = ["boto3 (==1.17.23)"]
jsonpath = ["jsonpath-rw (==1.4.0)"]
kafka = ["confluent-kafka (==1.0.0)"]
neptune = ["Flask (==1.0.2)", "amundsen-gremlin (>=0.0.9)", "boto3 (==1.17.23)", "gremlinpython (==3.4.3)", "overrides (==2.5)", "requests-aws4auth (==1.1.0)", "typing-extensions (==4.0.0)"]
oracle = ["cx-Oracle (==8.2.1)"]
rds = ["mysqlclient (>=1.3.6,<3)", "sqlalchemy (>=1.3.6)"]
salesforce = ["simple-salesforce (>=1.11.2)"]
schema-registry = ["python-schema-registry-client (==2.4.0)"]
snowflake = ["snowflake-connector-python", "snowflake-sqlalchemy"]
teradata = ["teradatasqlalchemy (==17.0.0.0)"]
[[package]]
name = "amundsen-rds"
version = "0.0.7"
description = "Amundsen ORM Support"
optional = false
python-versions = ">=3.6"
files = [
{file = "amundsen-rds-0.0.7.tar.gz", hash = "sha256:e66778fdd3700e7bfa829c24a762ce25a7284dbbca7c62bf14db1fde2d5a11ad"},
{file = "amundsen_rds-0.0.7-py3-none-any.whl", hash = "sha256:f5a157c16c71541fe7cee5cb2ebf91f11d7049b066bef157bc94da287f2f5a86"},
]
[package.dependencies]
alembic = ">=1.2,<2.0"
sqlalchemy = ">=1.3.0"
[[package]]
name = "appdirs"
version = "1.4.4"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
optional = false
python-versions = "*"
files = [
{file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"},
{file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"},
]
[[package]]
name = "appnope"
version = "0.1.3"
description = "Disable App Nap on macOS >= 10.9"
optional = true
python-versions = "*"
files = [
{file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"},
{file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"},
]
[[package]]
name = "asn1crypto"
version = "1.5.1"
description = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP"
optional = false
python-versions = "*"
files = [
{file = "asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67"},
{file = "asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c"},
]
[[package]]
name = "astroid"
version = "2.12.13"
description = "An abstract syntax tree for Python with inference support."
optional = false
python-versions = ">=3.7.2"
files = [
{file = "astroid-2.12.13-py3-none-any.whl", hash = "sha256:10e0ad5f7b79c435179d0d0f0df69998c4eef4597534aae44910db060baeb907"},
{file = "astroid-2.12.13.tar.gz", hash = "sha256:1493fe8bd3dfd73dc35bd53c9d5b6e49ead98497c47b2307662556a5692d29d7"},
]
[package.dependencies]
lazy-object-proxy = ">=1.4.0"
typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""}
wrapt = {version = ">=1.11,<2", markers = "python_version < \"3.11\""}
[[package]]
name = "asttokens"
version = "2.1.0"
description = "Annotate AST trees with source code positions"
optional = true
python-versions = "*"
files = [
{file = "asttokens-2.1.0-py2.py3-none-any.whl", hash = "sha256:1b28ed85e254b724439afc783d4bee767f780b936c3fe8b3275332f42cf5f561"},
{file = "asttokens-2.1.0.tar.gz", hash = "sha256:4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635"},
]
[package.dependencies]
six = "*"
[package.extras]
test = ["astroid (<=2.5.3)", "pytest"]
[[package]]
name = "async-timeout"
version = "4.0.2"
description = "Timeout context manager for asyncio programs"
optional = true
python-versions = ">=3.6"
files = [
{file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"},
{file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"},
]
[[package]]
name = "atomicwrites"
version = "1.4.1"
description = "Atomic file writes."
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
files = [
{file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"},
]
[[package]]
name = "attrs"
version = "22.1.0"
description = "Classes Without Boilerplate"
optional = false
python-versions = ">=3.5"
files = [
{file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"},
{file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"},
]
[package.extras]
dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"]
docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"]
tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"]
tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"]
[[package]]
name = "avro"
version = "1.10.2"
description = "Avro is a serialization and RPC framework."
optional = true
python-versions = ">=2.7"
files = [
{file = "avro-1.10.2.tar.gz", hash = "sha256:381b990cc4c4444743c3297348ffd46e0c3a5d7a17e15b2f4a9042f6e955c31a"},
]
[package.extras]
snappy = ["python-snappy"]
zstandard = ["zstandard"]
[[package]]
name = "avro-gen3"
version = "0.7.6"
description = "Avro record class and specific record reader generator"
optional = true
python-versions = "*"
files = [
{file = "avro-gen3-0.7.6.tar.gz", hash = "sha256:96998bd32f67b460fba75fafda249df39138a2547413f431308291af12636522"},
{file = "avro_gen3-0.7.6-py3-none-any.whl", hash = "sha256:22279d4ad7564e082c7f9b04d65cda738a8ef2dbfc8b0596836db2783d2cb1eb"},
]
[package.dependencies]
avro = ">=1.10"
pytz = "*"
six = "*"
tzlocal = "*"
[[package]]
name = "backcall"
version = "0.2.0"
description = "Specifications for callback functions passed in to an API"
optional = true
python-versions = "*"
files = [
{file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
{file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
]
[[package]]
name = "backports-zoneinfo"
version = "0.2.1"
description = "Backport of the standard library zoneinfo module"
optional = true
python-versions = ">=3.6"
files = [
{file = "backports.zoneinfo-0.2.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:da6013fd84a690242c310d77ddb8441a559e9cb3d3d59ebac9aca1a57b2e18bc"},
{file = "backports.zoneinfo-0.2.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:89a48c0d158a3cc3f654da4c2de1ceba85263fafb861b98b59040a5086259722"},
{file = "backports.zoneinfo-0.2.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:1c5742112073a563c81f786e77514969acb58649bcdf6cdf0b4ed31a348d4546"},
{file = "backports.zoneinfo-0.2.1-cp36-cp36m-win32.whl", hash = "sha256:e8236383a20872c0cdf5a62b554b27538db7fa1bbec52429d8d106effbaeca08"},
{file = "backports.zoneinfo-0.2.1-cp36-cp36m-win_amd64.whl", hash = "sha256:8439c030a11780786a2002261569bdf362264f605dfa4d65090b64b05c9f79a7"},
{file = "backports.zoneinfo-0.2.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:f04e857b59d9d1ccc39ce2da1021d196e47234873820cbeaad210724b1ee28ac"},
{file = "backports.zoneinfo-0.2.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:17746bd546106fa389c51dbea67c8b7c8f0d14b5526a579ca6ccf5ed72c526cf"},
{file = "backports.zoneinfo-0.2.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:5c144945a7752ca544b4b78c8c41544cdfaf9786f25fe5ffb10e838e19a27570"},
{file = "backports.zoneinfo-0.2.1-cp37-cp37m-win32.whl", hash = "sha256:e55b384612d93be96506932a786bbcde5a2db7a9e6a4bb4bffe8b733f5b9036b"},
{file = "backports.zoneinfo-0.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a76b38c52400b762e48131494ba26be363491ac4f9a04c1b7e92483d169f6582"},
{file = "backports.zoneinfo-0.2.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:8961c0f32cd0336fb8e8ead11a1f8cd99ec07145ec2931122faaac1c8f7fd987"},
{file = "backports.zoneinfo-0.2.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e81b76cace8eda1fca50e345242ba977f9be6ae3945af8d46326d776b4cf78d1"},
{file = "backports.zoneinfo-0.2.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7b0a64cda4145548fed9efc10322770f929b944ce5cee6c0dfe0c87bf4c0c8c9"},
{file = "backports.zoneinfo-0.2.1-cp38-cp38-win32.whl", hash = "sha256:1b13e654a55cd45672cb54ed12148cd33628f672548f373963b0bff67b217328"},
{file = "backports.zoneinfo-0.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:4a0f800587060bf8880f954dbef70de6c11bbe59c673c3d818921f042f9954a6"},
{file = "backports.zoneinfo-0.2.1.tar.gz", hash = "sha256:fadbfe37f74051d024037f223b8e001611eac868b5c5b06144ef4d8b799862f2"},
]
[package.extras]
tzdata = ["tzdata"]
[[package]]
name = "black"
version = "19.10b0"
description = "The uncompromising code formatter."
optional = false
python-versions = ">=3.6"
files = [
{file = "black-19.10b0-py36-none-any.whl", hash = "sha256:1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b"},
{file = "black-19.10b0.tar.gz", hash = "sha256:c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539"},
]
[package.dependencies]
appdirs = "*"
attrs = ">=18.1.0"
click = ">=6.5"
pathspec = ">=0.6,<1"
regex = "*"
toml = ">=0.9.4"
typed-ast = ">=1.4.0"
[package.extras]
d = ["aiohttp (>=3.3.2)", "aiohttp-cors"]
[[package]]
name = "bleach"
version = "5.0.1"
description = "An easy safelist-based HTML-sanitizing tool."
optional = false
python-versions = ">=3.7"
files = [
{file = "bleach-5.0.1-py3-none-any.whl", hash = "sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a"},
{file = "bleach-5.0.1.tar.gz", hash = "sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c"},
]
[package.dependencies]
six = ">=1.9.0"
webencodings = "*"
[package.extras]
css = ["tinycss2 (>=1.1.0,<1.2)"]
dev = ["Sphinx (==4.3.2)", "black (==22.3.0)", "build (==0.8.0)", "flake8 (==4.0.1)", "hashin (==0.17.0)", "mypy (==0.961)", "pip-tools (==6.6.2)", "pytest (==7.1.2)", "tox (==3.25.0)", "twine (==4.0.1)", "wheel (==0.37.1)"]
[[package]]
name = "boto3"
version = "1.17.23"
description = "The AWS SDK for Python"
optional = false
python-versions = ">= 2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
files = [
{file = "boto3-1.17.23-py2.py3-none-any.whl", hash = "sha256:1ca39de26205439832fa740fcc200de85f107b615dae445f869a16b76672e663"},
{file = "boto3-1.17.23.tar.gz", hash = "sha256:d6716f6701aae771f6ff2386a1d641855a99a9fedd64bd25476b83bacdd50c94"},
]
[package.dependencies]
botocore = ">=1.20.23,<1.21.0"
jmespath = ">=0.7.1,<1.0.0"
s3transfer = ">=0.3.0,<0.4.0"
[[package]]
name = "botocore"
version = "1.20.112"
description = "Low-level, data-driven core of boto 3."
optional = false
python-versions = ">= 2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
files = [
{file = "botocore-1.20.112-py2.py3-none-any.whl", hash = "sha256:6d51de0981a3ef19da9e6a3c73b5ab427e3c0c8b92200ebd38d087299683dd2b"},
{file = "botocore-1.20.112.tar.gz", hash = "sha256:d0b9b70b6eb5b65bb7162da2aaf04b6b086b15cc7ea322ddc3ef2f5e07944dcf"},
]
[package.dependencies]
jmespath = ">=0.7.1,<1.0.0"
python-dateutil = ">=2.1,<3.0.0"
urllib3 = ">=1.25.4,<1.27"
[package.extras]
crt = ["awscrt (==0.11.24)"]
[[package]]
name = "cached-property"
version = "1.5.2"
description = "A decorator for caching properties in classes."
optional = true
python-versions = "*"
files = [
{file = "cached-property-1.5.2.tar.gz", hash = "sha256:9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130"},
{file = "cached_property-1.5.2-py2.py3-none-any.whl", hash = "sha256:df4f613cf7ad9a588cc381aaf4a512d26265ecebd5eb9e1ba12f1319eb85a6a0"},
]
[[package]]
name = "cachetools"
version = "5.2.0"
description = "Extensible memoizing collections and decorators"
optional = false
python-versions = "~=3.7"
files = [
{file = "cachetools-5.2.0-py3-none-any.whl", hash = "sha256:f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db"},
{file = "cachetools-5.2.0.tar.gz", hash = "sha256:6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757"},
]
[[package]]
name = "catalogue"
version = "2.0.8"
description = "Super lightweight function registries for your library"
optional = false
python-versions = ">=3.6"
files = [
{file = "catalogue-2.0.8-py3-none-any.whl", hash = "sha256:2d786e229d8d202b4f8a2a059858e45a2331201d831e39746732daa704b99f69"},
{file = "catalogue-2.0.8.tar.gz", hash = "sha256:b325c77659208bfb6af1b0d93b1a1aa4112e1bb29a4c5ced816758a722f0e388"},
]
[[package]]
name = "certifi"
version = "2023.7.22"
description = "Python package for providing Mozilla's CA Bundle."
optional = false
python-versions = ">=3.6"
files = [
{file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"},
{file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"},
]
[[package]]
name = "cffi"
version = "1.15.1"
description = "Foreign Function Interface for Python calling C code."
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."
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 = "charset-normalizer"
version = "2.1.1"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
optional = false
python-versions = ">=3.6.0"
files = [
{file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"},
{file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"},
]
[package.extras]
unicode-backport = ["unicodedata2"]
[[package]]
name = "click"
version = "8.1.3"
description = "Composable command line interface toolkit"
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 = "click-default-group"
version = "1.2.2"
description = "Extends click.Group to invoke a command without explicit subcommand name"
optional = true
python-versions = "*"
files = [
{file = "click-default-group-1.2.2.tar.gz", hash = "sha256:d9560e8e8dfa44b3562fbc9425042a0fd6d21956fcc2db0077f63f34253ab904"},
]
[package.dependencies]
click = "*"
[[package]]
name = "click-spinner"
version = "0.1.10"
description = "Spinner for Click"
optional = true
python-versions = "*"
files = [
{file = "click-spinner-0.1.10.tar.gz", hash = "sha256:87eacf9d7298973a25d7615ef57d4782aebf913a532bba4b28a37e366e975daf"},
{file = "click_spinner-0.1.10-py2.py3-none-any.whl", hash = "sha256:d1ffcff1fdad9882396367f15fb957bcf7f5c64ab91927dee2127e0d2991ee84"},
]
[package.extras]
test = ["click", "pytest", "six"]
[[package]]
name = "colorama"
version = "0.4.6"
description = "Cross-platform colored terminal text."
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 = "commonmark"
version = "0.9.1"
description = "Python parser for the CommonMark Markdown spec"
optional = false
python-versions = "*"
files = [
{file = "commonmark-0.9.1-py2.py3-none-any.whl", hash = "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9"},
{file = "commonmark-0.9.1.tar.gz", hash = "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60"},
]
[package.extras]
test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"]
[[package]]
name = "commonregex-improved"
version = "1.0.2"
description = "An improved version of original commonregex. Find all dates, times, emails, phone numbers, links, emails, ip addresses, prices, bitcoin address, and more in a string."
optional = false
python-versions = ">=3.7,<4.0"
files = [
{file = "commonregex_improved-1.0.2-py3-none-any.whl", hash = "sha256:d395e542e8add9a87e0a00157a85d150c3fe33d1ddf37182c7528384c156a519"},
{file = "commonregex_improved-1.0.2.tar.gz", hash = "sha256:3058fc11006aeab167204514c5f349b2b2102b8a8052b7b51548636d61b2d635"},
]
[package.dependencies]
regex = ">=2022.4.24,<2023.0.0"
[[package]]
name = "coverage"
version = "6.5.0"
description = "Code coverage measurement for Python"
optional = false
python-versions = ">=3.7"
files = [
{file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"},
{file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"},
{file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"},
{file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"},
{file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0"},
{file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"},
{file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"},
{file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"},
{file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"},
{file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"},
{file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"},
{file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"},
{file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"},
{file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91"},
{file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"},
{file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"},
{file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"},
{file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"},
{file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"},
{file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"},
{file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"},
{file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"},
{file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027018943386e7b942fa832372ebc120155fd970837489896099f5cfa2890f79"},
{file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"},
{file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"},
{file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"},
{file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"},
{file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"},
{file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"},
{file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"},
{file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"},
{file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"},
{file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b"},
{file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"},
{file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"},
{file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"},
{file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"},
{file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"},
{file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"},
{file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"},
{file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"},
{file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"},
{file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5"},
{file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"},
{file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"},
{file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"},
{file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"},
{file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"},
{file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"},
{file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"},
]
[package.dependencies]
tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""}
[package.extras]
toml = ["tomli"]
[[package]]
name = "cryptography"
version = "38.0.3"
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
optional = false
python-versions = ">=3.6"
files = [
{file = "cryptography-38.0.3-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:984fe150f350a3c91e84de405fe49e688aa6092b3525f407a18b9646f6612320"},
{file = "cryptography-38.0.3-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:ed7b00096790213e09eb11c97cc6e2b757f15f3d2f85833cd2d3ec3fe37c1722"},
{file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:bbf203f1a814007ce24bd4d51362991d5cb90ba0c177a9c08825f2cc304d871f"},
{file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:554bec92ee7d1e9d10ded2f7e92a5d70c1f74ba9524947c0ba0c850c7b011828"},
{file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1b52c9e5f8aa2b802d48bd693190341fae201ea51c7a167d69fc48b60e8a959"},
{file = "cryptography-38.0.3-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:728f2694fa743a996d7784a6194da430f197d5c58e2f4e278612b359f455e4a2"},
{file = "cryptography-38.0.3-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dfb4f4dd568de1b6af9f4cda334adf7d72cf5bc052516e1b2608b683375dd95c"},
{file = "cryptography-38.0.3-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5419a127426084933076132d317911e3c6eb77568a1ce23c3ac1e12d111e61e0"},
{file = "cryptography-38.0.3-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:9b24bcff7853ed18a63cfb0c2b008936a9554af24af2fb146e16d8e1aed75748"},
{file = "cryptography-38.0.3-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:25c1d1f19729fb09d42e06b4bf9895212292cb27bb50229f5aa64d039ab29146"},
{file = "cryptography-38.0.3-cp36-abi3-win32.whl", hash = "sha256:7f836217000342d448e1c9a342e9163149e45d5b5eca76a30e84503a5a96cab0"},
{file = "cryptography-38.0.3-cp36-abi3-win_amd64.whl", hash = "sha256:c46837ea467ed1efea562bbeb543994c2d1f6e800785bd5a2c98bc096f5cb220"},
{file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06fc3cc7b6f6cca87bd56ec80a580c88f1da5306f505876a71c8cfa7050257dd"},
{file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:65535bc550b70bd6271984d9863a37741352b4aad6fb1b3344a54e6950249b55"},
{file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5e89468fbd2fcd733b5899333bc54d0d06c80e04cd23d8c6f3e0542358c6060b"},
{file = "cryptography-38.0.3-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6ab9516b85bebe7aa83f309bacc5f44a61eeb90d0b4ec125d2d003ce41932d36"},
{file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:068147f32fa662c81aebab95c74679b401b12b57494872886eb5c1139250ec5d"},
{file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:402852a0aea73833d982cabb6d0c3bb582c15483d29fb7085ef2c42bfa7e38d7"},
{file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b1b35d9d3a65542ed2e9d90115dfd16bbc027b3f07ee3304fc83580f26e43249"},
{file = "cryptography-38.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:6addc3b6d593cd980989261dc1cce38263c76954d758c3c94de51f1e010c9a50"},
{file = "cryptography-38.0.3-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:be243c7e2bfcf6cc4cb350c0d5cdf15ca6383bbcb2a8ef51d3c9411a9d4386f0"},
{file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78cf5eefac2b52c10398a42765bfa981ce2372cbc0457e6bf9658f41ec3c41d8"},
{file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:4e269dcd9b102c5a3d72be3c45d8ce20377b8076a43cbed6f660a1afe365e436"},
{file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8d41a46251bf0634e21fac50ffd643216ccecfaf3701a063257fe0b2be1b6548"},
{file = "cryptography-38.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:785e4056b5a8b28f05a533fab69febf5004458e20dad7e2e13a3120d8ecec75a"},
{file = "cryptography-38.0.3.tar.gz", hash = "sha256:bfbe6ee19615b07a98b1d2287d6a6073f734735b49ee45b11324d85efc4d5cbd"},
]
[package.dependencies]
cffi = ">=1.12"
[package.extras]
docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"]
pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
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-subtests", "pytest-xdist", "pytz"]
[[package]]
name = "dataclasses"
version = "0.6"
description = "A backport of the dataclasses module for Python 3.6"
optional = false
python-versions = "*"
files = [
{file = "dataclasses-0.6-py3-none-any.whl", hash = "sha256:454a69d788c7fda44efd71e259be79577822f5e3f53f029a22d08004e951dc9f"},
{file = "dataclasses-0.6.tar.gz", hash = "sha256:6988bd2b895eef432d562370bb707d540f32f7360ab13da45340101bc2307d84"},
]
[[package]]
name = "dbcat"
version = "0.14.2"
description = "Tokern Data Catalog"
optional = false
python-versions = ">=3.8,<=3.10.8"
files = [
{file = "dbcat-0.14.2-py3-none-any.whl", hash = "sha256:c6080809b4a8b8cd7abe8a4c5eb5fe5b6ca6fb1a97e11948942ea2fbc01ebf44"},
{file = "dbcat-0.14.2.tar.gz", hash = "sha256:fd3619d17fa06e288cf207f5ab2b0ae6b5f3e8eaf56d3327c697249698ed540d"},
]
[package.dependencies]
alembic = ">=1.6.5,<2.0.0"
amundsen-databuilder = {version = ">=7,<8", extras = ["athena", "bigquery", "glue", "rds", "snowflake"]}
boto3 = "1.17.23"
botocore = ">=1.20.23,<1.21.0"
click = "*"
greenlet = ">=2.0.1,<3.0.0"
psycopg2 = ">=2.9.5,<3.0.0"
pyathena = {version = "1.11.5", extras = ["sqlalchemy"]}
pydantic = ">=1.8.2,<2.0.0"