-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathused_repos.yaml
More file actions
1087 lines (1087 loc) · 19 KB
/
Copy pathused_repos.yaml
File metadata and controls
1087 lines (1087 loc) · 19 KB
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
host: github.com
protocol: https
repo_name: python-blosc
ssh_user: null
url: https://github.com/Blosc/python-blosc
user: Blosc
vc: git
---
host: github.com
protocol: https
repo_name: python-blosc2
ssh_user: null
url: https://github.com/Blosc/python-blosc2.git
user: Blosc
vc: git
---
host: github.com
protocol: https
repo_name: wrapt
ssh_user: null
url: https://github.com/GrahamDumpleton/wrapt.git
user: GrahamDumpleton
vc: git
---
host: github.com
protocol: https
repo_name: httptools
ssh_user: null
url: https://github.com/MagicStack/httptools.git
user: MagicStack
vc: git
---
host: github.com
protocol: https
repo_name: uvloop
ssh_user: null
url: https://github.com/MagicStack/uvloop.git
user: MagicStack
vc: git
---
host: github.com
protocol: https
repo_name: bcsio
ssh_user: null
url: https://github.com/NSLS-II/bcsio
user: NSLS-II
vc: git
---
host: github.com
protocol: https
repo_name: mily
ssh_user: null
url: https://github.com/NSLS-II/mily
user: NSLS-II
vc: git
---
host: github.com
protocol: https
repo_name: nsls2-detector-handlers
ssh_user: null
url: https://github.com/NSLS-II/nsls2-detector-handlers
user: NSLS-II
vc: git
---
host: github.com
protocol: https
repo_name: hrd_tools
ssh_user: null
url: https://github.com/NSLS2/hrd_tools.git
user: NSLS2
vc: git
---
host: github.com
protocol: https
repo_name: historydict
ssh_user: null
url: https://github.com/Nikea/historydict
user: Nikea
vc: git
---
host: github.com
protocol: https
repo_name: flake8
ssh_user: null
url: https://github.com/PyCQA/flake8
user: PyCQA
vc: git
---
host: github.com
protocol: https
repo_name: pywt
ssh_user: null
url: https://github.com/PyWavelets/pywt.git
user: PyWavelets
vc: git
---
host: github.com
protocol: https
repo_name: sip
ssh_user: null
url: https://github.com/Python-SIP/sip
user: Python-SIP
vc: git
---
host: github.com
protocol: https
repo_name: aiohttp
ssh_user: null
url: https://github.com/aio-libs/aiohttp.git
user: aio-libs
vc: git
---
host: github.com
protocol: https
repo_name: frozenlist
ssh_user: null
url: https://github.com/aio-libs/frozenlist.git
user: aio-libs
vc: git
---
host: github.com
protocol: https
repo_name: multidict
ssh_user: null
url: https://github.com/aio-libs/multidict.git
user: aio-libs
vc: git
---
host: github.com
protocol: https
repo_name: yarl
ssh_user: null
url: https://github.com/aio-libs/yarl.git
user: aio-libs
vc: git
---
host: github.com
protocol: https
repo_name: executing
ssh_user: null
url: https://github.com/alexmojaki/executing.git
user: alexmojaki
vc: git
---
host: github.com
protocol: https
repo_name: arrow
ssh_user: null
url: https://github.com/apache/arrow.git
user: apache
vc: git
---
host: github.com
protocol: https
repo_name: area-detector-handlers
ssh_user: null
url: https://github.com/bluesky/area-detector-handlers.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky
ssh_user: null
url: https://github.com/bluesky/bluesky.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-darkframes
ssh_user: null
url: https://github.com/bluesky/bluesky-darkframes.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-httpserver
ssh_user: null
url: https://github.com/bluesky/bluesky-httpserver.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-live
ssh_user: null
url: https://github.com/bluesky/bluesky-live.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-queueserver
ssh_user: null
url: https://github.com/bluesky/bluesky-queueserver.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-queueserver-api
ssh_user: null
url: https://github.com/bluesky/bluesky-queueserver-api.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-spreadsheet
ssh_user: null
url: https://github.com/bluesky/bluesky-spreadsheet.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: bluesky-ui
ssh_user: null
url: https://github.com/bluesky/bluesky-ui.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: databroker
ssh_user: null
url: https://github.com/bluesky/databroker.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: databroker-pack
ssh_user: null
url: https://github.com/bluesky/databroker-pack.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: event-model
ssh_user: null
url: https://github.com/bluesky/event-model.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: hklpy
ssh_user: null
url: https://github.com/bluesky/hklpy.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: ophyd
ssh_user: null
url: https://github.com/bluesky/ophyd.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-csv
ssh_user: null
url: https://github.com/bluesky/suitcase-csv.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-dataexchange
ssh_user: null
url: https://github.com/bluesky/suitcase-dataexchange.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-json-metadata
ssh_user: null
url: https://github.com/bluesky/suitcase-json-metadata.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-jsonl
ssh_user: null
url: https://github.com/bluesky/suitcase-jsonl.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-mongo
ssh_user: null
url: https://github.com/bluesky/suitcase-mongo.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-msgpack
ssh_user: null
url: https://github.com/bluesky/suitcase-msgpack.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-nxstxm
ssh_user: null
url: https://github.com/bluesky/suitcase-nxstxm.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-server
ssh_user: null
url: https://github.com/bluesky/suitcase-server.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-specfile
ssh_user: null
url: https://github.com/bluesky/suitcase-specfile.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-tiff
ssh_user: null
url: https://github.com/bluesky/suitcase-tiff.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: suitcase-utils
ssh_user: null
url: https://github.com/bluesky/suitcase-utils.git
user: bluesky
vc: git
---
host: github.com
protocol: https
repo_name: caproto
ssh_user: null
url: https://github.com/caproto/caproto.git
user: caproto
vc: git
---
host: github.com
protocol: https
repo_name: python-certifi
ssh_user: null
url: https://github.com/certifi/python-certifi.git
user: certifi
vc: git
---
host: github.com
protocol: https
repo_name: imagecodecs
ssh_user: null
url: https://github.com/cgohlke/imagecodecs.git
user: cgohlke
vc: git
---
host: github.com
protocol: https
repo_name: tifffile
ssh_user: null
url: https://github.com/cgohlke/tifffile.git
user: cgohlke
vc: git
---
host: github.com
protocol: https
repo_name: cloudpickle
ssh_user: null
url: https://github.com/cloudpipe/cloudpickle.git
user: cloudpipe
vc: git
---
host: github.com
protocol: https
repo_name: confluent-kafka-python
ssh_user: null
url: https://github.com/confluentinc/confluent-kafka-python.git
user: confluentinc
vc: git
---
host: github.com
protocol: https
repo_name: contourpy
ssh_user: null
url: https://github.com/contourpy/contourpy.git
user: contourpy
vc: git
---
host: github.com
protocol: https
repo_name: cython
ssh_user: null
url: https://github.com/cython/cython.git
user: cython
vc: git
---
host: github.com
protocol: https
repo_name: curio
ssh_user: null
url: https://github.com/dabeaz/curio.git
user: dabeaz
vc: git
---
host: github.com
protocol: https
repo_name: dask
ssh_user: null
url: https://github.com/dask/dask.git
user: dask
vc: git
---
host: github.com
protocol: https
repo_name: distributed
ssh_user: null
url: https://github.com/dask/distributed.git
user: dask
vc: git
---
host: github.com
protocol: https
repo_name: dateutil
ssh_user: null
url: https://github.com/dateutil/dateutil.git
user: dateutil
vc: git
---
host: github.com
protocol: https
repo_name: jedi
ssh_user: null
url: https://github.com/davidhalter/jedi.git
user: davidhalter
vc: git
---
host: github.com
protocol: https
repo_name: parso
ssh_user: null
url: https://github.com/davidhalter/parso.git
user: davidhalter
vc: git
---
host: github.com
protocol: https
repo_name: httpx
ssh_user: null
url: https://github.com/encode/httpx.git
user: encode
vc: git
---
host: github.com
protocol: https
repo_name: starlette
ssh_user: null
url: https://github.com/encode/starlette.git
user: encode
vc: git
---
host: github.com
protocol: https
repo_name: MyST-Parser
ssh_user: null
url: https://github.com/executablebooks/MyST-Parser.git
user: executablebooks
vc: git
---
host: github.com
protocol: https
repo_name: sphinx-design
ssh_user: null
url: https://github.com/executablebooks/sphinx-design.git
user: executablebooks
vc: git
---
host: github.com
protocol: https
repo_name: h5py
ssh_user: null
url: https://github.com/h5py/h5py.git
user: h5py
vc: git
---
host: github.com
protocol: https
repo_name: flexparser
ssh_user: null
url: https://github.com/hgrecco/flexparser.git
user: hgrecco
vc: git
---
host: github.com
protocol: https
repo_name: pint
ssh_user: null
url: https://github.com/hgrecco/pint.git
user: hgrecco
vc: git
---
host: github.com
protocol: https
repo_name: argon2-cffi-bindings
ssh_user: null
url: https://github.com/hynek/argon2-cffi-bindings.git
user: hynek
vc: git
---
host: github.com
protocol: https
repo_name: orjson
ssh_user: null
url: https://github.com/ijl/orjson.git
user: ijl
vc: git
---
host: github.com
protocol: https
repo_name: pyopencl
ssh_user: null
url: https://github.com/inducer/pyopencl.git
user: inducer
vc: git
---
host: github.com
protocol: https
repo_name: python-zstandard
ssh_user: null
url: https://github.com/indygreg/python-zstandard.git
user: indygreg
vc: git
---
host: github.com
protocol: https
repo_name: intake
ssh_user: null
url: https://github.com/intake/intake.git
user: intake
vc: git
---
host: github.com
protocol: https
repo_name: ipython
ssh_user: null
url: https://github.com/ipython/ipython
user: ipython
vc: git
---
host: github.com
protocol: https
repo_name: msgspec
ssh_user: null
url: https://github.com/jcrist/msgspec.git
user: jcrist
vc: git
---
host: github.com
protocol: https
repo_name: nbconvert
ssh_user: null
url: https://github.com/jupyter/nbconvert.git
user: jupyter
vc: git
---
host: github.com
protocol: https
repo_name: nbformat
ssh_user: null
url: https://github.com/jupyter/nbformat.git
user: jupyter
vc: git
---
host: github.com
protocol: ssh
repo_name: multianalyzer
ssh_user: git
url: [email protected]:kif/multianalyzer.git
user: kif
vc: git
---
host: github.com
protocol: https
repo_name: xrt
ssh_user: null
url: https://github.com/kklmn/xrt.git
user: kklmn
vc: git
---
host: github.com
protocol: https
repo_name: pyerfa
ssh_user: null
url: https://github.com/liberfa/pyerfa.git
user: liberfa
vc: git
---
host: github.com
protocol: https
repo_name: lxml
ssh_user: null
url: https://github.com/lxml/lxml.git
user: lxml
vc: git
---
host: github.com
protocol: https
repo_name: cycler
ssh_user: null
url: https://github.com/matplotlib/cycler.git
user: matplotlib
vc: git
---
host: github.com
protocol: https
repo_name: data-prototype
ssh_user: null
url: https://github.com/matplotlib/data-prototype.git
user: matplotlib
vc: git
---
host: github.com
protocol: https
repo_name: matplotlib
ssh_user: null
url: https://github.com/matplotlib/matplotlib.git
user: matplotlib
vc: git
---
host: github.com
protocol: https
repo_name: mpl-gui
ssh_user: null
url: https://github.com/matplotlib/mpl-gui.git
user: matplotlib
vc: git
---
host: github.com
protocol: https
repo_name: mplcairo
ssh_user: null
url: https://github.com/matplotlib/mplcairo.git
user: matplotlib
vc: git
---
host: github.com
protocol: https
repo_name: mplfinance
ssh_user: null
url: https://github.com/matplotlib/mplfinance.git
user: matplotlib
vc: git
---
host: github.com
protocol: https
repo_name: pyopengl
ssh_user: null
url: https://github.com/mcfletch/pyopengl
user: mcfletch
vc: git
---
host: github.com
protocol: https
repo_name: pyopengl
ssh_user: null
url: https://github.com/mcfletch/pyopengl
user: mcfletch
vc: git
---
host: github.com
protocol: https
repo_name: meson
ssh_user: null
url: https://github.com/mesonbuild/meson.git
user: mesonbuild
vc: git
---
host: github.com
protocol: https
repo_name: meson-python
ssh_user: null
url: https://github.com/mesonbuild/meson-python
user: mesonbuild
vc: git
---
host: github.com
protocol: https
repo_name: msgpack-python
ssh_user: null
url: https://github.com/msgpack/msgpack-python.git
user: msgpack
vc: git
---
host: github.com
protocol: https
repo_name: networkx
ssh_user: null
url: https://github.com/networkx/networkx.git
user: networkx
vc: git
---
host: github.com
protocol: https
repo_name: numpy
ssh_user: null
url: https://github.com/numpy/numpy.git
user: numpy
vc: git
---
host: github.com
protocol: https
repo_name: opentelemetry-python
ssh_user: null
url: https://github.com/open-telemetry/opentelemetry-python.git
user: open-telemetry
vc: git
---
host: github.com
protocol: https
repo_name: pandas
ssh_user: null
url: https://github.com/pandas-dev/pandas.git
user: pandas-dev
vc: git
---
host: github.com
protocol: https
repo_name: happi
ssh_user: null
url: https://github.com/pcdshub/happi.git
user: pcdshub
vc: git
---
host: github.com
protocol: https
repo_name: pdm
ssh_user: null
url: https://github.com/pdm-project/pdm.git
user: pdm-project
vc: git
---
host: github.com
protocol: https
repo_name: pexpect
ssh_user: null
url: https://github.com/pexpect/pexpect.git
user: pexpect
vc: git
---
host: github.com
protocol: https
repo_name: pybind11
ssh_user: null
url: https://github.com/pybind/pybind11.git
user: pybind
vc: git
---
host: github.com
protocol: https
repo_name: pycurl
ssh_user: null
url: https://github.com/pycurl/pycurl.git
user: pycurl
vc: git
---
host: github.com
protocol: https
repo_name: numexpr
ssh_user: null
url: https://github.com/pydata/numexpr.git
user: pydata
vc: git
---
host: github.com
protocol: https
repo_name: sparse
ssh_user: null
url: https://github.com/pydata/sparse.git
user: pydata
vc: git
---
host: github.com
protocol: https
repo_name: pygments
ssh_user: null
url: https://github.com/pygments/pygments.git
user: pygments
vc: git
---
host: github.com
protocol: https
repo_name: pygraphviz
ssh_user: null
url: https://github.com/pygraphviz/pygraphviz.git
user: pygraphviz
vc: git
---
host: github.com
protocol: https
repo_name: build
ssh_user: null
url: https://github.com/pypa/build.git
user: pypa
vc: git
---
host: github.com
protocol: https
repo_name: flit
ssh_user: null
url: https://github.com/pypa/flit.git
user: pypa
vc: git
---
host: github.com
protocol: https
repo_name: pip
ssh_user: null
url: https://github.com/pypa/pip.git
user: pypa
vc: git
---
host: github.com
protocol: https
repo_name: setuptools
ssh_user: null
url: https://github.com/pypa/setuptools.git
user: pypa
vc: git
---
host: github.com
protocol: https
repo_name: twine
ssh_user: null
url: https://github.com/pypa/twine.git
user: pypa
vc: git
---
host: github.com
protocol: https
repo_name: wheel
ssh_user: null
url: https://github.com/pypa/wheel.git
user: pypa
vc: git
---
host: github.com
protocol: https
repo_name: pyqtgraph
ssh_user: null
url: https://github.com/pyqtgraph/pyqtgraph.git
user: pyqtgraph
vc: git
---
host: github.com
protocol: https
repo_name: pytest
ssh_user: null
url: https://github.com/pytest-dev/pytest.git
user: pytest-dev
vc: git
---
host: github.com
protocol: https
repo_name: cpython
ssh_user: null
url: https://github.com/python/cpython.git
user: python
vc: git
---
host: github.com
protocol: https
repo_name: cffi
ssh_user: null
url: https://github.com/python-cffi/cffi.git
user: python-cffi
vc: git
---
host: github.com
protocol: https
repo_name: greenlet
ssh_user: null
url: https://github.com/python-greenlet/greenlet.git
user: python-greenlet
vc: git
---
host: github.com
protocol: https
repo_name: uritemplate
ssh_user: null
url: https://github.com/python-hyper/uritemplate.git
user: python-hyper
vc: git
---
host: github.com
protocol: https
repo_name: Pillow
ssh_user: null
url: https://github.com/python-pillow/Pillow.git
user: python-pillow
vc: git
---
host: github.com
protocol: https
repo_name: cytoolz
ssh_user: null
url: https://github.com/pytoolz/cytoolz.git
user: pytoolz
vc: git
---
host: github.com
protocol: https
repo_name: toolz
ssh_user: null
url: https://github.com/pytoolz/toolz.git
user: pytoolz
vc: git
---
host: github.com
protocol: https
repo_name: sphinx_rtd_theme
ssh_user: null
url: https://github.com/readthedocs/sphinx_rtd_theme.git
user: readthedocs
vc: git
---
host: github.com
protocol: https
repo_name: hiredis-py
ssh_user: null
url: https://github.com/redis/hiredis-py.git
user: redis
vc: git
---
host: github.com
protocol: https
repo_name: watchfiles
ssh_user: null
url: https://github.com/samuelcolvin/watchfiles.git
user: samuelcolvin
vc: git
---
host: github.com
protocol: https
repo_name: scikit-beam
ssh_user: null
url: https://github.com/scikit-beam/scikit-beam.git
user: scikit-beam
vc: git
---
host: github.com
protocol: https
repo_name: awkward
ssh_user: null
url: https://github.com/scikit-hep/awkward.git
user: scikit-hep
vc: git
---
host: github.com
protocol: https
repo_name: scikit-image
ssh_user: null
url: https://github.com/scikit-image/scikit-image.git
user: scikit-image
vc: git
---
host: github.com
protocol: https
repo_name: scikit-learn
ssh_user: null
url: https://github.com/scikit-learn/scikit-learn
user: scikit-learn
vc: git
---
host: github.com
protocol: https
repo_name: scipy
ssh_user: null
url: https://github.com/scipy/scipy.git
user: scipy
vc: git
---