forked from thinkingmachines/unicef-ai4d-poverty-mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
946 lines (944 loc) · 17.5 KB
/
requirements.txt
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
#
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --output-file=requirements.txt requirements.in
#
--no-binary pygeos
--no-binary shapely
absl-py==1.3.0
# via
# tensorboard
# tensorflow
adapt==0.4.2
# via -r requirements.in
affine==2.3.1
# via
# rasterio
# rasterstats
aiosignal==1.3.1
# via ray
anyio==3.6.2
# via jupyter-server
appdirs==1.4.4
# via requests-cache
argon2-cffi==21.3.0
# via
# jupyter-server
# nbclassic
# notebook
argon2-cffi-bindings==21.2.0
# via argon2-cffi
asttokens==2.1.0
# via stack-data
astunparse==1.6.3
# via tensorflow
attrs==22.1.0
# via
# cattrs
# fiona
# frictionless
# jsonlines
# jsonschema
# morecantile
# pytest
# rasterio
# ray
# requests-cache
babel==2.11.0
# via jupyterlab-server
backcall==0.2.0
# via ipython
beautifulsoup4==4.11.1
# via nbconvert
black==22.10.0
# via -r requirements.in
bleach==5.0.1
# via nbconvert
branca==0.6.0
# via
# -r requirements.in
# folium
cachetools==5.2.0
# via google-auth
cattrs==22.2.0
# via requests-cache
certifi==2022.9.24
# via
# fiona
# pyproj
# rasterio
# requests
cffi==1.15.1
# via
# argon2-cffi-bindings
# cryptography
cfgv==3.3.1
# via pre-commit
chardet==5.1.0
# via frictionless
charset-normalizer==2.1.1
# via requests
ckanapi==4.7
# via hdx-python-api
click==8.0.4
# via
# black
# click-plugins
# cligj
# fiona
# mercantile
# rasterio
# ray
# rio-cogeo
# typer
click-plugins==1.1.1
# via
# fiona
# rasterio
cligj==0.7.2
# via
# fiona
# rasterio
# rasterstats
cloudpickle==2.2.0
# via shap
colorama==0.4.6
# via
# nbdime
# typer
commonmark==0.9.1
# via rich
contextily==1.3.0
# via -r requirements.in
contourpy==1.0.6
# via matplotlib
countryinfo==0.1.2
# via -r requirements.in
coverage[toml]==6.5.0
# via pytest-cov
cramjam==2.6.2
# via fastparquet
cryptography==39.0.1
# via pyopenssl
cvxopt==1.3.0
# via adapt
cycler==0.11.0
# via matplotlib
debugpy==1.6.3
# via ipykernel
decorator==5.1.1
# via
# ipython
# jsonpath-ng
# validators
defopt==6.4.0
# via hdx-python-api
defusedxml==0.7.1
# via nbconvert
distlib==0.3.6
# via virtualenv
dnspython==2.3.0
# via email-validator
docopt==0.6.2
# via
# ckanapi
# num2words
docutils==0.19
# via defopt
earthengine-api==0.1.332
# via -r requirements.in
email-validator==1.3.1
# via hdx-python-api
entrypoints==0.4
# via jupyter-client
et-xmlfile==1.1.0
# via openpyxl
exceptiongroup==1.0.4
# via
# cattrs
# pytest
execnet==1.9.0
# via pytest-xdist
executing==1.2.0
# via stack-data
fastcore==1.5.27
# via
# -r requirements.in
# geowrangler
fastjsonschema==2.16.2
# via nbformat
fastparquet==2022.12.0
# via -r requirements.in
fastprogress==1.0.3
# via
# -r requirements.in
# geowrangler
filelock==3.8.0
# via
# ray
# virtualenv
filprofiler==2023.3.1
# via -r requirements.in
fiona==1.8.22
# via
# -r requirements.in
# geopandas
# rasterstats
flatbuffers==22.12.6
# via tensorflow
folium==0.14.0
# via -r requirements.in
fonttools==4.38.0
# via matplotlib
frictionless==5.5.10
# via hdx-python-utilities
frozenlist==1.3.3
# via
# aiosignal
# ray
fsspec==2022.11.0
# via fastparquet
future==0.18.2
# via earthengine-api
gast==0.4.0
# via tensorflow
gdal==3.6.0.1
# via -r requirements.in
geographiclib==2.0
# via geopy
geopandas==0.10.2
# via
# -r requirements.in
# geowrangler
geopy==2.3.0
# via contextily
geowrangler @ git+https://github.com/thinkingmachines/geowrangler.git@feat/optimize-bingtilegrid
# via -r requirements.in
gitdb==4.0.10
# via gitpython
gitpython==3.1.31
# via nbdime
google-api-core==2.10.2
# via
# google-api-python-client
# google-cloud-core
# google-cloud-storage
google-api-python-client==2.66.0
# via earthengine-api
google-auth==2.14.1
# via
# earthengine-api
# google-api-core
# google-api-python-client
# google-auth-httplib2
# google-auth-oauthlib
# google-cloud-core
# google-cloud-storage
# tensorboard
google-auth-httplib2==0.1.0
# via
# earthengine-api
# google-api-python-client
google-auth-oauthlib==0.4.6
# via tensorboard
google-cloud-core==2.3.2
# via google-cloud-storage
google-cloud-storage==2.6.0
# via earthengine-api
google-crc32c==1.5.0
# via google-resumable-media
google-pasta==0.2.0
# via tensorflow
google-resumable-media==2.4.0
# via google-cloud-storage
googleapis-common-protos==1.57.0
# via google-api-core
grpcio==1.50.0
# via
# ray
# tensorboard
# tensorflow
h3==3.7.4
# via geowrangler
h5py==3.7.0
# via tensorflow
haversine==2.7.0
# via -r requirements.in
hdx-python-api==5.9.8
# via -r requirements.in
hdx-python-country==3.4.6
# via hdx-python-api
hdx-python-utilities==3.5.6
# via hdx-python-country
httplib2==0.21.0
# via
# earthengine-api
# google-api-python-client
# google-auth-httplib2
humanize==4.6.0
# via frictionless
identify==2.5.9
# via pre-commit
idna==3.4
# via
# anyio
# email-validator
# requests
ijson==3.2.0.post0
# via hdx-python-utilities
importlib-metadata==5.0.0
# via
# jupyterlab-server
# markdown
# nbconvert
inflect==6.0.2
# via quantulum3
iniconfig==1.1.1
# via pytest
ipykernel==6.17.1
# via
# nbclassic
# notebook
ipython==8.6.0
# via
# ipykernel
# jupyterlab
ipython-genutils==0.2.0
# via
# nbclassic
# notebook
isodate==0.6.1
# via frictionless
jedi==0.18.1
# via ipython
jinja2==3.1.2
# via
# branca
# folium
# frictionless
# jupyter-server
# jupyterlab
# jupyterlab-server
# nbclassic
# nbconvert
# nbdime
# notebook
joblib==1.2.0
# via
# contextily
# scikit-learn
json5==0.9.10
# via jupyterlab-server
jsonlines==3.1.0
# via hdx-python-utilities
jsonpath-ng==1.5.3
# via libhxl
jsonschema==4.17.0
# via
# frictionless
# jupyterlab-server
# nbformat
# ray
# tableschema-to-template
jupyter-client==7.4.7
# via
# ipykernel
# jupyter-server
# nbclassic
# nbclient
# notebook
jupyter-core==5.0.0
# via
# jupyter-client
# jupyter-server
# jupyterlab
# nbclassic
# nbconvert
# nbformat
# notebook
jupyter-server==1.23.2
# via
# jupyter-server-mathjax
# jupyterlab
# jupyterlab-server
# nbclassic
# nbdime
# notebook-shim
jupyter-server-mathjax==0.2.6
# via nbdime
jupyterlab==3.5.0
# via -r requirements.in
jupyterlab-pygments==0.2.2
# via nbconvert
jupyterlab-server==2.16.3
# via jupyterlab
jupyterlab-vim==0.16.0
# via -r requirements.in
keras==2.11.0
# via tensorflow
kiwisolver==1.4.4
# via matplotlib
libclang==14.0.6
# via
# -r requirements.in
# tensorflow
libhxl==4.27.3
# via hdx-python-country
lightgbm==3.3.3
# via -r requirements.in
line-profiler==4.0.3
# via -r requirements.in
llvmlite==0.39.1
# via numba
loguru==0.6.0
# via
# -r requirements.in
# geowrangler
# hdx-python-utilities
makefun==1.15.0
# via hdx-python-api
mapclassify==2.4.3
# via -r requirements.in
markdown==3.4.1
# via tensorboard
marko==1.3.0
# via frictionless
markupsafe==2.1.1
# via
# jinja2
# nbconvert
# werkzeug
matplotlib==3.6.2
# via
# -r requirements.in
# contextily
# seaborn
matplotlib-inline==0.1.6
# via
# ipykernel
# ipython
mercantile==1.2.1
# via contextily
mistune==2.0.4
# via nbconvert
morecantile==3.2.1
# via
# geowrangler
# rio-cogeo
msgpack==1.0.4
# via ray
munch==2.5.0
# via fiona
mypy-extensions==0.4.3
# via black
nbclassic==0.4.8
# via
# jupyterlab
# notebook
nbclient==0.7.0
# via nbconvert
nbconvert==7.2.5
# via
# jupyter-server
# nbclassic
# notebook
nbdime==3.1.1
# via -r requirements.in
nbformat==5.7.0
# via
# jupyter-server
# nbclassic
# nbclient
# nbconvert
# nbdime
# notebook
ndg-httpsclient==0.5.1
# via hdx-python-api
nest-asyncio==1.5.6
# via
# ipykernel
# jupyter-client
# nbclassic
# nbclient
# notebook
networkx==3.0
# via mapclassify
nodeenv==1.7.0
# via pre-commit
notebook==6.5.2
# via jupyterlab
notebook-shim==0.2.2
# via nbclassic
num2words==0.5.12
# via quantulum3
numba==0.56.4
# via shap
numpy==1.23.5
# via
# -r requirements.in
# adapt
# contourpy
# fastparquet
# folium
# geowrangler
# h5py
# lightgbm
# mapclassify
# matplotlib
# numba
# opt-einsum
# pandas
# pyarrow
# pygeos
# rasterio
# rasterstats
# ray
# rio-cogeo
# scikit-learn
# scipy
# seaborn
# shap
# snuggs
# tensorboard
# tensorboardx
# tensorflow
# tune-sklearn
oauthlib==3.2.2
# via requests-oauthlib
openpyxl==3.1.1
# via hdx-python-utilities
opt-einsum==3.3.0
# via tensorflow
osmium==3.5.0
# via -r requirements.in
packaging==21.3
# via
# fastcore
# fastparquet
# ipykernel
# jupyter-server
# jupyterlab
# jupyterlab-server
# matplotlib
# nbconvert
# pytest
# shap
# tensorflow
pandas==1.5.1
# via
# -r requirements.in
# fastparquet
# geopandas
# geowrangler
# mapclassify
# ray
# seaborn
# shap
pandocfilters==1.5.0
# via nbconvert
parso==0.8.3
# via jedi
pathspec==0.10.2
# via black
petl==1.7.12
# via frictionless
pexpect==4.8.0
# via ipython
pickleshare==0.7.5
# via ipython
pillow==9.3.0
# via
# contextily
# matplotlib
platformdirs==2.5.4
# via
# black
# jupyter-core
# virtualenv
pluggy==1.0.0
# via pytest
ply==3.11
# via
# jsonpath-ng
# libhxl
pockets==0.9.1
# via sphinxcontrib-napoleon
pre-commit==2.20.0
# via -r requirements.in
prometheus-client==0.15.0
# via
# jupyter-server
# nbclassic
# notebook
prompt-toolkit==3.0.32
# via ipython
protobuf==3.19.6
# via
# google-api-core
# googleapis-common-protos
# ray
# tensorboard
# tensorboardx
# tensorflow
psutil==5.9.4
# via ipykernel
ptyprocess==0.7.0
# via
# pexpect
# terminado
pure-eval==0.2.2
# via stack-data
pyarrow==10.0.1
# via -r requirements.in
pyasn1==0.4.8
# via
# hdx-python-api
# ndg-httpsclient
# pyasn1-modules
# rsa
pyasn1-modules==0.2.8
# via google-auth
pycparser==2.21
# via cffi
pydantic==1.10.2
# via
# frictionless
# inflect
# morecantile
# rio-cogeo
pygeos==0.12.0
# via
# -r requirements.in
# geowrangler
pygments==2.13.0
# via
# ipython
# nbconvert
# nbdime
# rich
pyopenssl==23.0.0
# via
# hdx-python-api
# ndg-httpsclient
pyparsing==3.0.9
# via
# httplib2
# matplotlib
# packaging
# snuggs
pyphonetics==0.5.3
# via hdx-python-country
pyproj==3.4.0
# via
# geopandas
# morecantile
pyrsistent==0.19.2
# via jsonschema
pytest==7.2.0
# via
# -r requirements.in
# pytest-cov
# pytest-mock
# pytest-xdist
pytest-cov==4.0.0
# via -r requirements.in
pytest-mock==3.10.0
# via -r requirements.in
pytest-xdist==3.0.2
# via -r requirements.in
python-dateutil==2.8.2
# via
# frictionless
# hdx-python-utilities
# jupyter-client
# libhxl
# matplotlib
# pandas
python-io-wrapper==0.3.1
# via libhxl
python-slugify==8.0.0
# via
# ckanapi
# frictionless
pytz==2022.6
# via
# babel
# pandas
pyyaml==6.0
# via
# -r requirements.in
# frictionless
# pre-commit
# ray
# tableschema-to-template
pyzmq==24.0.1
# via
# ipykernel
# jupyter-client
# jupyter-server
# nbclassic
# notebook
quantulum3==0.8.1
# via hdx-python-api
rasterio==1.3.4
# via
# -r requirements.in
# contextily
# rasterstats
# rio-cogeo
rasterstats==0.17.0
# via
# -r requirements.in
# geowrangler
ratelimit==2.2.1
# via hdx-python-utilities
ray[tune]==2.1.0
# via tune-sklearn
requests==2.28.1
# via
# ckanapi
# contextily
# earthengine-api
# folium
# frictionless
# geowrangler
# google-api-core
# google-cloud-storage
# jupyterlab-server
# libhxl
# nbdime
# osmium
# ray
# requests-cache
# requests-file
# requests-oauthlib
# tensorboard
requests-cache==0.9.8
# via libhxl
requests-file==1.5.1
# via hdx-python-utilities
requests-oauthlib==1.3.1
# via google-auth-oauthlib
rfc3986==2.0.0
# via frictionless
rich==12.6.0
# via typer
rio-cogeo==3.5.0
# via -r requirements.in
rsa==4.9
# via google-auth
ruamel-yaml==0.17.21
# via hdx-python-utilities
ruamel-yaml-clib==0.2.7
# via ruamel-yaml
scikit-learn==1.1.3
# via
# -r requirements.in
# adapt
# geowrangler
# lightgbm
# mapclassify
# shap
# tune-sklearn
scipy==1.9.3
# via
# adapt
# lightgbm
# mapclassify
# scikit-learn
# shap
# tune-sklearn
seaborn==0.12.1
# via -r requirements.in
send2trash==1.8.0
# via
# jupyter-server
# nbclassic
# notebook
shap==0.41.0
# via -r requirements.in
shapely==1.8.5.post1
# via
# -r requirements.in
# geopandas
# rasterstats
shellingham==1.5.0.post1
# via typer
simpleeval==0.9.13
# via frictionless
simplejson==3.18.0
# via rasterstats
six==1.16.0
# via
# asttokens
# astunparse
# bleach
# ckanapi
# earthengine-api
# fiona
# google-auth
# google-auth-httplib2
# google-pasta
# grpcio
# isodate
# jsonpath-ng
# munch
# pockets
# python-dateutil
# requests-file
# sphinxcontrib-napoleon
# tensorflow
# url-normalize
slicer==0.0.7
# via shap
smmap==5.0.0
# via gitdb
sniffio==1.3.0
# via anyio
snuggs==1.4.7
# via rasterio
soupsieve==2.3.2.post1
# via beautifulsoup4
sphinxcontrib-napoleon==0.7
# via defopt
stack-data==0.6.1
# via ipython
stringcase==1.2.0
# via frictionless
structlog==22.1.0
# via libhxl
tableschema-to-template==0.0.13
# via hdx-python-utilities
tabulate==0.9.0
# via
# frictionless
# ray
tensorboard==2.11.0
# via tensorflow
tensorboard-data-server==0.6.1
# via tensorboard
tensorboard-plugin-wit==1.8.1
# via tensorboard
tensorboardx==2.5.1
# via ray
tensorflow==2.11.0
# via adapt
tensorflow-estimator==2.11.0
# via tensorflow
tensorflow-io-gcs-filesystem==0.28.0
# via tensorflow
termcolor==2.1.1
# via tensorflow
terminado==0.17.0
# via
# jupyter-server
# nbclassic
# notebook
text-unidecode==1.3
# via python-slugify
threadpoolctl==3.1.0
# via
# filprofiler
# scikit-learn
tinycss2==1.2.1
# via nbconvert
toml==0.10.2
# via pre-commit
tomli==2.0.1
# via
# black
# coverage
# jupyterlab
# pytest
tornado==6.2
# via
# ipykernel
# jupyter-client
# jupyter-server
# jupyterlab
# nbclassic
# nbdime
# notebook
# terminado
tqdm==4.64.1
# via
# -r requirements.in
# shap
traitlets==5.5.0
# via
# ipykernel
# ipython
# jupyter-client
# jupyter-core
# jupyter-server
# matplotlib-inline
# nbclassic
# nbclient
# nbconvert
# nbformat
# notebook
tune-sklearn==0.4.5
# via -r requirements.in
typed-ast==1.5.4
# via -r requirements.in
typer[all]==0.7.0
# via frictionless
typing-extensions==4.4.0
# via
# black
# frictionless
# pydantic
# tensorflow
unidecode==1.3.6
# via
# libhxl
# pyphonetics
uritemplate==4.1.1
# via google-api-python-client
url-normalize==1.4.3
# via requests-cache
urllib3==1.26.12
# via
# libhxl
# requests
# requests-cache
validators==0.20.0
# via frictionless
virtualenv==20.16.7
# via
# pre-commit
# ray
wcwidth==0.2.5
# via prompt-toolkit
webencodings==0.5.1
# via
# bleach
# tinycss2
websocket-client==1.4.2
# via jupyter-server
werkzeug==2.2.2
# via tensorboard
wheel==0.38.4
# via
# astunparse
# libhxl
# lightgbm
# tensorboard
wrapt==1.14.1
# via tensorflow
xlrd==2.0.1
# via hdx-python-utilities
xlrd3==1.1.0
# via libhxl
xlsxwriter==3.0.8
# via tableschema-to-template
xlwt==1.3.0
# via hdx-python-utilities
xyzservices==2023.2.0
# via contextily
zipp==3.10.0
# via importlib-metadata
# The following packages are considered to be unsafe in a requirements file:
# pip
# setuptools