-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.vcspull.yaml
1375 lines (1222 loc) · 51.8 KB
/
.vcspull.yaml
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
~/study/go/:
learn-go-with-tests: "git+https://github.com/quii/learn-go-with-tests.git"
esbuild: "git+https://github.com/evanw/esbuild.git"
jetpack: "git+https://github.com/3ofcoins/jetpack.git"
docker:
repo: "git+https://github.com/docker/docker.git"
remotes:
kvasdopil: "https://github.com/kvasdopil/docker.git"
tony: "https://github.com/tony/docker.git"
go: "git+https://github.com/golang/go.git"
gitea:
repo: "git+https://github.com/go-gitea/gitea.git"
remotes:
tony: "git+ssh://git@github.com/tony/gitea.git"
go-koans:
repo: "git+https://github.com/cdarwin/go-koans.git"
remotes:
tony: "git+ssh://git@github.com/cdarwin/go-koans.git"
go-python: "git+https://github.com/sbinet/go-python"
otto: "git+https://github.com/robertkrimen/otto"
blackfriday: "git+https://github.com/russross/blackfriday.git"
~/study/rust:
learning-rust-nodejs:
repo: "git+ssh://git@github.com/tony/learning-rust-nodejs.git"
learning-rust-python:
repo: "git+ssh://git@github.com/tony/learning-rust-python.git"
learning-rust:
repo: "git+ssh://git@github.com/tony/learning-rust.git"
rustlings:
repo: "git+ssh://git@github.com/tony/rustlings.git"
~/study/cs:
screentogif:
repo: "git+https://github.com/NickeManarin/ScreenToGif.git"
remotes:
tony: "git+ssh://git@github.com/tony/ScreenToGif.git"
~/study/ai:
tiktoken:
repo: "git+https://github.com/openai/tiktoken.git"
remotes:
tony: "git+ssh://git@github.com/tony/tiktoken.git"
~/study/litestar:
litestar:
repo: 'git+https://git@github.com/litestar-org/litestar.git'
remotes:
tony: 'git+ssh://git@github.com:tony/litestar.git'
polyfactory:
repo: 'git+https://git@github.com/litestar-org/polyfactory.git'
remotes:
tony: 'git+ssh://git@github.com:tony/polyfactory.git'
fast-query-parsers:
repo: 'git+https://git@github.com/litestar-org/fast-query-parsers.git'
remotes:
tony: 'git+ssh://git@github.com:tony/fast-query-parsers.git'
advanced-alchemy:
repo: 'git+https://git@github.com/litestar-org/advanced-alchemy.git'
remotes:
tony: 'git+ssh://git@github.com:tony/advanced-alchemy.git'
sqlspec:
repo: 'git+https://git@github.com/litestar-org/sqlspec.git'
remotes:
tony: 'git+ssh://git@github.com:tony/sqlspec.git'
pytest-databases:
repo: 'git+https://git@github.com/litestar-org/pytest-databases.git'
remotes:
tony: 'git+ssh://git@github.com:tony/pytest-databases.git'
type-lens:
repo: 'git+https://git@github.com/litestar-org/type-lens.git'
remotes:
tony: 'git+ssh://git@github.com:tony/type-lens.git'
litestar-vite:
repo: 'git+https://git@github.com/litestar-org/litestar-vite.git'
remotes:
tony: 'git+ssh://git@github.com:tony/litestar-vite.git'
litestar-fullstack:
repo: 'git+https://git@github.com/litestar-org/litestar-fullstack.git'
remotes:
tony: 'git+ssh://git@github.com:tony/litestar-fullstck.git'
~/study/python:
learning-dsa:
repo: "git+ssh://git@github.com/tony/learning-dsa.git"
learning-asyncio:
repo: "git+ssh://git@github.com/tony/learning-asyncio.git"
learning-pytest-internals:
repo: "git+ssh://git@github.com/tony/learning-pytest-internals.git"
learning-litestar:
repo: "git+ssh://git@github.com/tony/learning-litestar.git"
reenvisioning-django:
repo: "git+ssh://git@github.com/tony/reenvisioning-django.git"
# some nice sqlalchemy code
oslo.db: "git+https://github.com/openstack/oslo.db"
nova: "git+https://github.com/openstack/nova"
spacy: "git+https://github.com/explosion/spaCy"
nltk: "git+https://github.com/nltk/nltk.git"
grako: "hg+https://bitbucket.org/apalala/grako"
cffi: "hg+https://bitbucket.org/cffi/cffi"
hypothesis:
repo: "git+https://github.com/HypothesisWorks/hypothesis.git"
rich:
repo: "git+https://github.com/Textualize/rich.git"
remotes:
tony: "git+ssh://git@github.com/tony/rich.git"
textual:
repo: "git+https://github.com/Textualize/textual.git"
remotes:
tony: "git+ssh://git@github.com/tony/textual.git"
textual-dev:
repo: "git+https://github.com/Textualize/textual-dev.git"
remotes:
tony: "git+ssh://git@github.com/tony/textual-dev.git"
toolong:
repo: "git+https://github.com/Textualize/toolong.git"
remotes:
tony: "git+ssh://git@github.com/tony/toolong.git"
trogon:
repo: "git+https://github.com/Textualize/trogon.git"
remotes:
tony: "git+ssh://git@github.com/tony/trogon.git"
pytest-textual-snapshot:
repo: "git+https://github.com/Textualize/pytest-textual-snapshot.git"
remotes:
tony: "git+ssh://git@github.com/tony/pytest-textual-snapshot.git"
syrupy:
repo: "git+https://github.com/syrupy-project/syrupy.git"
remotes:
tony: "git+ssh://git@github.com/tony/syrupy.git"
pydantic-ai:
repo: "git+https://github.com/pydantic/pydantic-ai.git"
remotes:
tony: "git+ssh://git@github.com/tony/pydantic-ai.git"
pydantic-settings:
repo: "git+https://github.com/pydantic/pydantic-settings.git"
remotes:
tony: "git+ssh://git@github.com/tony/pydantic-settings.git"
pydantic-extra-types:
repo: "git+https://github.com/pydantic/pydantic-extra-types.git"
remotes:
tony: "git+ssh://git@github.com/tony/pydantic-extra-types.git"
djangorestframework-api-key:
repo: "git+https://github.com/florimondmanca/djangorestframework-api-key.git"
remotes:
tony: "git+ssh://git@github.com/tony/djangorestframework-api-key.git"
scout_apm:
repo: "git+https://github.com/scoutapp/scout_apm_python.git"
remotes:
tony: "git+ssh://git@github.com/tony/scout_apm_python.git"
poetry:
repo: "git+https://github.com/python-poetry/poetry.git"
remotes:
tony: "git+ssh://git@github.com/tony/poetry.git"
poetry-core:
repo: "git+https://github.com/python-poetry/poetry-core.git"
remotes:
tony: "git+ssh://git@github.com/tony/poetry-core.git"
install.python-poetry.org:
repo: "git+https://github.com/python-poetry/install.python-poetry.org.git"
remotes:
tony: "git+ssh://git@github.com/tony/install.python-poetry.org.git"
pytest-splinter:
repo: "git+https://github.com/pytest-dev/pytest-splinter.git"
remotes:
tony: "git+ssh://git@github.com/tony/pytest-splinter.git"
ptpython:
repo: "git+https://github.com/prompt-toolkit/ptpython.git"
remotes:
tony: "git+ssh://git@github.com/tony/ptpython.git"
bumblebee-status:
repo: "git+https://github.com/tobi-wan-kenobi/bumblebee-status.git"
remotes:
tony: "git+ssh://git@github.com/tony/bumblebee-status.git"
graphene:
repo: "git+https://github.com/graphql-python/graphene.git"
remotes:
tony: "git+ssh://git@github.com/tony/graphene.git"
eduflow: "git+ssh://git@github.com/eduflow/graphene.git"
graphene-django:
repo: "git+https://github.com/graphql-python/graphene-django.git"
remotes:
tony: "git+ssh://git@github.com/tony/graphene-django.git"
eduflow: "git+ssh://git@github.com/eduflow/graphene-django.git"
graphql-core-legacy:
repo: "git+https://github.com/graphql-python/graphql-core-legacy.git"
remotes:
tony: "git+ssh://git@github.com/tony/graphql-core-legacy.git"
eduflow: "git+ssh://git@github.com/eduflow/graphql-core-legacy.git"
graphql-core:
repo: "git+https://github.com/graphql-python/graphql-core.git"
remotes:
tony: "git+ssh://git@github.com/tony/graphql-core.git"
eduflow: "git+ssh://git@github.com/eduflow/graphene-core.git"
python-docx:
repo: "git+https://github.com/python-openxml/python-docx.git"
remotes:
tony: "git+ssh://git@github.com/tony/python-docx.git"
rq-dashboard:
repo: "git+https://github.com/eoranged/rq-dashboard.git"
remotes:
tony: "git+ssh://git@github.com/tony/rq-dashboard.git"
sqltap:
repo: "git+https://github.com/inconshreveable/sqltap.git"
remotes:
tony: "git+ssh://git@github.com/tony/sqltap.git"
kaa:
repo: "git+https://github.com/kaaedit/kaa.git"
remotes:
tony: "git+ssh://git@github.com/tony/kaa.git"
kaadbg:
repo: "git+https://github.com/kaaedit/kaadbg.git"
remotes:
tony: "git+ssh://git@github.com/tony/kaadbg.git"
pygit2:
repo: "git+https://github.com/libgit2/pygit2.git"
remotes:
tony: "git+ssh://git@github.com/tony/pygit2.git"
case:
repo: "git+https://github.com/celery/case.git"
remotes:
tony: "git+ssh://git@github.com/tony/case.git"
celery-batches:
repo: "git+https://github.com/clokep/celery-batches.git"
remotes:
tony: "git+ssh://git@github.com/tony/celery-batches.git"
mypy:
repo: "git+https://github.com/python/mypy.git"
remotes:
tony: "git+ssh://git@github.com/tony/mypy.git"
typeshed:
repo: "git+https://github.com/python/typeshed.git"
remotes:
tony: "git+ssh://git@github.com/tony/typeshed.git"
plop: "git+https://github.com/bdarnell/plop.git"
cldoc:
repo: "git+https://github.com/jessevdk/cldoc.git"
remotes:
tony: "git+ssh://git@github.com/tony/cldoc.git"
pillow:
repo: "git+https://github.com/python-pillow/Pillow.git"
remotes:
tony: "git+ssh://git@github.com/tony/Pillow.git"
pyre2:
repo: "git+https://github.com/facebook/pyre2.git"
remotes:
tony: "git+ssh://git@github.com/tony/pyre2.git"
sniffer:
repo: "git+https://github.com/jeffh/sniffer.git"
remotes:
tony: "git+ssh://git@github.com/tony/sniffer.git"
vim-vimlparser:
repo: "git+https://github.com/ynkdir/vim-vimlparser.git"
remotes:
tony: "git+ssh://git@github.com/tony/vim-vimlparser.git"
dotfiles:
repo: "git+https://github.com/jbernard/dotfiles.git"
remotes:
tony: "git+ssh://git@github.com/tony/dotfiles.git"
pyston:
repo: "git+https://github.com/dropbox/pyston.git"
remotes:
tony: "git+ssh://git@github.com/tony/pyston.git"
blaze: "git+https://github.com/ContinuumIO/blaze.git"
factory_boy: "git+https://github.com/rbarrois/factory_boy.git"
pycparser: "git+https://github.com/eliben/pycparser.git"
scipy: "git+https://github.com/scipy/scipy.git"
scipy-learn: "git+https://github.com/scikit-learn/scikit-learn.git"
biopython: "git+https://github.com/biopython/biopython.git"
invoke: "git+https://github.com/pyinvoke/invoke.git"
pythonfutures: "hg+https://code.google.com/p/pythonfutures/"
webassets: "git+https://github.com/miracle2k/webassets.git"
click: "git+https://github.com/mitsuhiko/click.git"
pulseaudio-mixer-cli: "git+https://github.com/mk-fg/pulseaudio-mixer-cli.git"
psycopg2: "git+ssh://github.com/psycopg/psycopg2.git"
momoko: "git+ssh://github.com/FSX/momoko.git"
jsonschema: "git+https://github.com/Julian/jsonschema.git"
rdflib: "git+https://github.com/RDFLib/rdflib.git"
rdflib-sqlalchemy: "git+https://github.com/RDFLib/rdflib-sqlalchemy.git"
rdfalchemy: "git+https://github.com/gjhiggins/RDFAlchemy.git"
RootTheBox: "git+https://github.com/moloch--/RootTheBox.git"
celery: "git+https://github.com/celery/celery.git"
python-social-auth: "git+https://github.com/omab/python-social-auth.git"
social-app-django:
repo: "git+https://github.com/python-social-auth/social-app-django.git"
remotes:
tony: "git+https://github.com/tony/social-app-django.git"
eduflow: "git+https://github.com/eduflow/social-app-django.git"
Flexget: "git+https://github.com/Flexget/Flexget.git"
cookiecutter:
repo: "git+https://github.com/audreyr/cookiecutter.git"
remotes:
tony: "git+https://github.com/tony/cookiecutter.git"
unittest2: "hg+http://hg.python.org/unittest2"
pypy: "hg+https://bitbucket.org/pypy/pypy"
asv: "git+https://github.com/spacetelescope/asv.git"
camelot: "hg+https://bitbucket.org/conceptive/camelot"
jmespath: "git+https://github.com/boto/jmespath.git"
anyvcs: "git+https://github.com/ScottDuckworth/python-anyvcs.git"
pip:
repo: "git+https://github.com/pypa/pip.git"
remotes:
tony: "git+https://github.com/tony/pip.git"
warehouse:
repo: "git+ssh://github.com/pypa/warehouse.git"
remotes:
tony: "git+https://github.com/tony/warehouse.git"
setuptools: "hg+https://bitbucket.org/pypa/setuptools"
ipdb: "git+http://github.com/gotcha/ipdb.git"
otrace: "git+https://github.com/mitotic/otrace.git"
jinja2: "git+https://github.com/mitsuhiko/jinja2.git"
beaker: "git+https://github.com/bbangert/beaker.git"
babel: "git+https://github.com/mitsuhiko/babel.git"
werkzeug: "git+https://github.com/mitsuhiko/werkzeug.git"
logbook: "git+https://github.com/mitsuhiko/logbook.git"
cjklib: "git+https://github.com/cburgmer/cjklib.git"
ltchinese: "hg+http://bitbucket.org/lost_theory/ltchinese/"
pudb: "git+http://git.tiker.net/trees/pudb.git"
ipython: "git+https://github.com/ipython/ipython.git"
blessing: "git+https://github.com/erikrose/blessings.git"
sqlalchemy: "git+https://github.com/zzzeek/sqlalchemy.git"
wtforms: "git+https://github.com/Khan/wtforms.git"
botocore: "git+https://github.com/boto/botocore.git"
libcloud: "git+https://github.com/apache/libcloud.git"
lxml: "git+https://github.com/lxml/lxml.git"
httpbin: "git+https://github.com/kennethreitz/httpbin.git"
envoy: "git+https://github.com/kennethreitz/envoy.git"
legit: "git+https://github.com/kennethreitz/legit.git"
tablib: "git+https://github.com/kennethreitz/tablib.git"
requests: "git+https://github.com/kennethreitz/requests.git"
grequests: "git+https://github.com/kennethreitz/grequests.git"
kr-sphinx-themes: "git+https://github.com/kennethreitz/kr-sphinx-themes.git"
gist-api: "git+https://github.com/kennethreitz/gistapi.py.git"
pystache: "git+https://github.com/defunkt/pystache.git"
pandas: "git+https://github.com/pydata/pandas"
numpy:
repo: "git+https://github.com/numpy/numpy.git"
remotes:
tony: "git+https://github.com/tony/numpy.git"
pytables: "git+https://github.com/PyTables/PyTables.git"
ncmpy: "git+https://github.com/cykerway/ncmpy.git"
gevent: "git+https://github.com/surfly/gevent.git"
tornado: "git+https://github.com/facebook/tornado.git"
soundcloud-cli: "git+https://github.com/0xPr0xy/soundcloud-cli.git"
pyradio: "git+https://github.com/coderholic/pyradio.git"
sh: "git+https://github.com/amoffat/sh.git"
glances: "git+https://github.com/nicolargo/glances.git"
powerline: "git+https://github.com/powerline/powerline.git"
jieba: "git+https://github.com/fxsjy/jieba.git"
storm: "git+https://github.com/emre/storm.git"
fabric: "git+https://github.com/fabric/fabric.git"
ansible: "git+https://github.com/ansible/ansible"
fn.py: "git+https://github.com/kachayev/fn.py.git"
buildbot: "git+https://github.com/buildbot/buildbot.git"
beets: "git+https://github.com/sampsyo/beets.git"
magicmethods: "git+https://github.com/RafeKettler/magicmethods.git"
gateone: "git+https://github.com/liftoff/GateOne.git"
glue: "git+https://github.com/jorgebastida/glue.git"
objbrowser: "git+https://github.com/titusjan/objbrowser"
pythagora: "git+https://github.com/tarmack/Pythagora.git"
youtube-dl: "git+https://github.com/rg3/youtube-dl.git"
twisted: "git+https://github.com/twisted/twisted.git"
ckan: "git+https://github.com/okfn/ckan.git"
reddit: "git+https://github.com/reddit/reddit.git"
python_koans: "git+https://github.com/gregmalcolm/python_koans.git"
#introduction_to_sqlalchemy: 'git+https://bitbucket.org/zzzeek/pycon2013_student_package.git'
w3lib: "git+https://github.com/scrapy/w3lib"
scrapy: "git+https://github.com/scrapy/scrapy.git"
scrapely: "git+https://github.com/scrapy/scrapely.git"
calibre: "git+ssh://github.com/kovidgoyal/calibre.git"
aws-cli: "git+https://github.com/aws/aws-cli.git"
youcompleteme: "git+https://github.com/Valloric/YouCompleteMe.git"
jedi:
repo: "git+https://github.com/davidhalter/jedi.git"
remotes:
tony: "git+ssh://git@github.com/tony/jedi.git"
ranger: "git+ssh://git.savannah.nongnu.org/ranger.git"
readthedocs:
repo: "git+https://github.com/rtfd/readthedocs.org.git"
remotes:
tony: "git+ssh://git@github.com/tony/readthedocs.org.git"
develtech: "git+ssh://git@github.com/develtech/readthedocs.org.git"
klaus:
repo: "git+https://github.com/jonashaag/klaus.git"
remotes:
tony: "git+ssh://git@github.com/tony/klaus.git"
norman: "hg+https://bitbucket.org/aquavitae/norman"
sphinx-contrib: "hg+https://bitbucket.org/birkenfeld/sphinx-contrib"
# duplicating this until vcspull bug is fixed
# ~/.config/vcspull/<repos>.yaml aren't detected
sphinx-autoapi:
repo: "git+https://github.com/readthedocs/sphinx-autoapi.git"
remotes:
tony: "git+ssh://git@github.com/tony/sphinx-autoapi.git"
pexpect-u: "hg+https://bitbucket.org/takluyver/pexpect"
pygments: "hg+https://bitbucket.org/birkenfeld/pygments-main"
docutils: "svn+http://svn.code.sf.net/p/docutils/code/trunk"
python-unicodecsv: "git+https://github.com/jdunck/python-unicodecsv.git"
ftfy: "git+https://github.com/LuminosoInsight/python-ftfy.git"
gitpython:
repo: "git+https://github.com/gitpython-developers/GitPython"
remotes:
tony: "git+ssh://git@github.com/tony/GitPython.git"
gitdb:
repo: "git+https://github.com/gitpython-developers/gitdb"
remotes:
tony: "git+ssh://git@github.com/tony/gitdb.git"
smmap:
repo: "git+https://github.com/gitpython-developers/smmap"
remotes:
tony: "git+ssh://git@github.com/tony/smmap.git"
rl:
repo: "git+https://github.com/stefanholek/rl"
remotes:
tony: "git+ssh://git@github.com/tony/rl.git"
bpython: "hg+https://bitbucket.org/bobf/bpython/"
voltron: "git+https://github.com/snarez/voltron.git"
urwid: "git+https://github.com/wardi/urwid.git"
understate: "git+https://github.com/L3V3L9/understate.git"
pygcurse: "git+https://github.com/asweigart/pygcurse.git"
npyscreen: "hg+https://code.google.com/p/npyscreen/"
cython-book: "git+https://github.com/redbrain/cython-book.git"
profilehooks: "git+https://github.com/mgedmin/profilehooks"
line_profile: "hg+https://bitbucket.org/robertkern/line_profiler"
curses_ex: "git+https://github.com/atsuoishimoto/python.curses_ex.git"
pyjf3: "git+https://github.com/atsuoishimoto/pyjf3.git"
alembic: "git+https://github.com/zzzeek/alembic.git"
nose: "git+https://github.com/nose-devs/nose.git"
# pytest: 'hg+https://bitbucket.org/hpk42/pytest'
pytest:
repo: "git+https://github.com/pytest-dev/pytest.git"
remotes:
tony: "git+ssh://git@github.com/tony/pytest.git"
mock: "hg+https://code.google.com/p/mock/"
virtualenv: "git+https://github.com/pypa/virtualenv.git"
virtualenvwrapper: "git+https://bitbucket.org/dhellmann/virtualenvwrapper.git"
weasyprint: "git+https://github.com/Kozea/WeasyPrint.git"
ptpdb:
repo: "git+https://github.com/jonathanslenders/ptpdb.git"
remotes:
tony: "git+ssh://git@github.com/tony/ptpdb.git"
python-prompt-toolkit:
repo: "git+https://github.com/jonathanslenders/python-prompt-toolkit.git"
remotes:
tony: "git+ssh://git@github.com/tony/python-prompt-toolkit.git"
pymux:
repo: "git+https://github.com/jonathanslenders/pymux.git"
remotes:
tony: "git+ssh://git@github.com/tony/pymux.git"
pyvim:
repo: "git+https://github.com/jonathanslenders/pyvim.git"
remotes:
tony: "git+ssh://git@github.com/tony/pyvim.git"
~/study/pyenv:
pyenv: "git+https://github.com/yyuu/pyenv"
pyenv-virtualenv: "git+https://github.com/yyuu/pyenv-virtualenv.git"
pyenv-virtualenvwrapper: "git+https://github.com/yyuu/pyenv-virtualenvwrapper.git"
pyenv-installer: "git+https://github.com/yyuu/pyenv-installer.git"
~/study/django:
django-storages:
repo: "git+https://github.com/jschneier/django-storages.git"
django-silk:
repo: "git+https://github.com/jazzband/django-silk.git"
remotes:
tony: "git+ssh://git@github.com/tony/django-silk.git"
eduflow: "git+ssh://git@github.com/eduflow/django-silk.git"
django-activeurl:
repo: "git+https://github.com/hellysmile/django-activeurl.git"
remotes:
develtech: "git+ssh://git@github.com/develtech/django-activeurl.git"
django-cms:
repo: "git+https://github.com/divio/django-cms.git"
remotes:
tony: "git+ssh://git@github.com/tony/django-cms.git"
wagtail:
repo: "git+https://github.com/torchbox/wagtail.git"
remotes:
tony: "git+ssh://git@github.com/tony/wagtail.git"
aldjemy: "git+https://github.com/Deepwalker/aldjemy.git"
django-celery: "git+https://github.com/celery/django-celery.git"
coffin: "git+https://github.com/coffin/coffin.git"
django:
repo: "git+https://github.com/django/django.git"
remotes:
tony: "git+ssh://git@github.com/tony/django.git"
django-pg-zero-downtime-migrations:
repo: "git+https://github.com/tbicr/django-pg-zero-downtime-migrations.git"
remotes:
tony: "git+ssh://git@github.com/tony/django-pg-zero-downtime-migrations.git"
eduflow: "git+ssh://git@github.com/eduflow/django-pg-zero-downtime-migrations.git"
django-taggit: "git+https://github.com/alex/django-taggit.git"
django-basic-apps: "git+https://github.com/nathanborror/django-basic-apps.git"
django-mptt: "git+https://github.com/django-mptt/django-mptt.git"
django-cities: "git+https://github.com/coderholic/django-cities.git"
django-crispy-forms: "git+https://github.com/maraujop/django-crispy-forms.git"
django-debug-toolbar: "git+https://github.com/django-debug-toolbar/django-debug-toolbar.git"
django-treebeard:
repo: "git+https://github.com/tabo/django-treebeard"
remotes:
tony: "git+https://github.com/tony/django-treebeard"
django-filter:
repo: "git+https://github.com/carltongibson/django-filter.git"
remotes:
develtech: "git+https://github.com/develtech/django-filter.git"
django-extensions:
repo: "git+https://github.com/django-extensions/django-extensions.git"
remotes:
tony: "git+https://github.com/tony/django-extensions.git"
dj-stripe:
repo: "git+https://github.com/pydanny/dj-stripe"
remotes:
tony: "git+https://github.com/tony/dj-stripe"
~/study/flask:
book-explore-flask: "git+https://github.com/rpicard/explore-flask.git"
flask:
repo: "git+https://github.com/mitsuhiko/flask.git"
remotes:
tony: "git+ssh://git@github.com/tony/flask.git"
flask-sqlalchemy: "git+https://github.com/mitsuhiko/flask-sqlalchemy.git"
flask-admin: "git+https://github.com/mrjoes/flask-admin.git"
flask-principal: "git+https://github.com/mattupstate/flask-principal.git"
flask-sockets: "git+https://github.com/kennethreitz/flask-sockets"
flask-bone: "git+https://github.com/imwilsonxu/fbone.git"
flask-script: "git+https://github.com/techniq/flask-script.git"
flask-assets: "git+http://github.com/miracle2k/flask-assets"
flask-debugtoolbar: "git+https://github.com/mgood/flask-debugtoolbar.git"
flask-tdd: "git+https://github.com/mjhea0/flaskr-tdd.git"
flask-restless: "git+https://github.com/jfinkels/flask-restless.git"
flask-superadmin: "git+https://github.com/SyrusAkbary/Flask-SuperAdmin.git"
flask-frozen: "git+https://github.com/SimonSapin/Frozen-Flask.git"
flask-oauthlib: "git+https://github.com/lepture/flask-oauthlib.git"
flask-babel: "git+https://github.com/mitsuhiko/flask-babel.git"
~/study/php:
wordpress: "git+https://github.com/WordPress/WordPress.git"
laravel: "git+https://github.com/laravel/laravel.git"
laravel-framework: "git+https://github.com/laravel/framework.git"
~/study/data-structures-algorithms:
cs:
repo: "git+ssh://git@github.com/tony/cs.git"
~/study/standards-and-practices/html:
north: "git+https://github.com/Snugug/north.git"
semantic-ui: "git+https://github.com/Semantic-Org/Semantic-UI.git"
isobar-frontend: "git+https://github.com/isobar-idev/code-standards.git"
~/study/data-structures-algorithms/c:
libds: "git+https://github.com/zhemao/libds.git"
algoxy:
repo: "git+https://github.com/liuxinyu95/AlgoXY.git"
remotes:
tony: "git+ssh://git@github.com/tony/AlgoXY.git"
~/study/data-structures-algorithms/c++:
algorithms:
repo: "git+https://github.com/xtaci/algorithms.git"
remotes:
tony: "git+ssh://git@github.com/tony/algorithms.git"
cracking-the-code-interview: "git+https://github.com/Hawstein/cracking-the-coding-interview.git"
~/study/data-structures-algorithms/python:
cracking-the-code-interview: "git+https://github.com/careercup/CtCI-6th-Edition-Python"
Algorithms: "git+https://github.com/prakhar1989/Algorithms.git"
~/study/data-structures-algorithms/java:
java-algorithms-implementations: "git+https://github.com/phishman3579/java-algorithms-implementation.git"
williamfiset-algorithms: "git+https://github.com/williamfiset/Algorithms.git"
~/study/devops-books:
github-cheat-sheet: "git+https://github.com/tiimgreen/github-cheat-sheet.git"
~/study/standards-and-practices/php:
php-fig: "git+https://github.com/php-fig/fig-standards.git"
~/study/standards-and-practices/js:
idiomatic.js: "git+https://github.com/rwaldron/idiomatic.js.git"
~/study/swift:
swift: "git+https://github.com/apple/swift.git"
~/study/llvm:
llvm: "git+http://llvm.org/git/llvm.git"
clang: "git+http://llvm.org/git/clang.git"
clang-tools-extra: "git+https://github.com/llvm-mirror/clang-tools-extra.git"
lldb: "git+http://llvm.org/git/lldb.git"
libcxx: "git+https://github.com/llvm-mirror/libcxx.git"
~/study/dotnet:
coreclr:
repo: "git+https://github.com/dotnet/coreclr.git"
remotes:
tony: "git+ssh://git@github.com/tony/coreclr.git"
~/study/sh:
misspell_fixer:
repo: "git+https://github.com/vlajos/misspell_fixer.git"
remotes:
tony: "git+ssh://git@github.com/tony/misspell_fixer.git"
roundup:
repo: "git+https://github.com/bmizerany/roundup.git"
remotes:
tony: "git+ssh://git@github.com/tony/roundup.git"
shocco: "git+https://github.com/rtomayko/shocco"
~/study/sqlalchemy:
sqlalchemy:
repo: "git+https://github.com/zzzeek/sqlalchemy.git"
remotes:
tony: "git+ssh://git@github.com/tony/sqlalchemy.git"
sqlalchemy_traversal: "git+https://github.com/sontek/sqlalchemy_traversal.git"
sqlamp: "git+https://github.com/tony/sqlamp.git"
sqlalchemy-orm-tree:
repo: "git+https://github.com/monetizeio/sqlalchemy-orm-tree.git"
remotes:
tony: "git+ssh://git@github.com/tony/sqlalchemy-orm-tree.git"
sqlalchemy-bitcoin: "git+https://github.com/monetizeio/sqlalchemy-bitcoin.git"
cubes: "git+https://github.com/Stiivi/cubes.git"
bubbles: "git+https://github.com/Stiivi/bubbles.git"
~/study/js-books:
backbone-fundamentals: "git+https://github.com/addyosmani/backbone-fundamentals"
essential-js-design-patterns: "git+https://github.com/addyosmani/essential-js-design-patterns.git"
you-dont-know-js: "git+https://github.com/getify/You-Dont-Know-JS.git"
eloquent-js: "git+https://github.com/marijnh/Eloquent-JavaScript.git"
jqfundamentals: "git+https://github.com/rmurphey/jqfundamentals.git"
~/study/koans:
backbone: "git+https://github.com/addyosmani/backbone-koans-qunit.git"
~/study/python-books:
pydata-book: "git+https://github.com/pydata/pydata-book.git"
byte-of-python: "git+https://github.com/swaroopch/byte_of_python.git"
python-for-signal-processing: "git+https://github.com/unpingco/Python-for-Signal-Processing.git"
probabilistic-programming-and-bayesian-methods: "git+https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers.git"
python-guide:
repo: "git+https://github.com/kennethreitz/python-guide.git"
remotes:
tony: "git+ssh://git@github.com/tony/python-guide.git"
python-patterns: "git+https://github.com/faif/python-patterns.git"
~/study/compsci-books:
bottomupcs: "git+https://github.com/ianw/bottomupcs.git"
~/study/merchant:
satchless: "git+https://github.com/mirumee/satchless.git"
stripe-node: "git+https://github.com/stripe/stripe-node.git"
stripe-python: "git+https://github.com/stripe/stripe-python.git"
authorize-sauce: "git+https://github.com/jeffschenck/authorizesauce"
paypal-python-sdk: "git+https://github.com/paypal/PayPal-Python-SDK.git"
pyauthorize: "git+https://github.com/vcatalano/py-authorize.git"
billy: "git+https://github.com/balanced/billy.git"
merchant: "git+https://github.com/agiliq/merchant.git"
~/study/lua:
lua: "git+https://github.com/LuaDist/lua.git"
luajit: "git+https://github.com/LuaDist/luajit.git"
lua-re2: "git+https://github.com/cloudflare/lua-re2.git"
~/study/ruby:
rails: "git+https://github.com/rails/rails.git"
~/study/cmake:
python-cmake-buildsystem:
repo: "git+https://github.com/python-cmake-buildsystem/python-cmake-buildsystem.git"
remotes:
tony: "git+ssh://git@github.com/tony/python-cmake-buildsystem.git"
~/study/c:
qmk_firmware:
repo: "git+https://github.com/qmk/qmk_firmware.git"
remotes:
tony: "git+ssh://git@github.com/tony/qmk_firmware"
sway: "git+https://github.com/swaywm/sway.git"
watchman: "git+https://github.com/facebook/watchman.git"
zlib:
repo: "git+https://github.com/madler/zlib.git"
remotes:
tony: "git+ssh://git@github.com/tony/zlib.git"
commontk: "git+https://github.com/commontk/zlib.git"
git-vcs: "git+https://github.com/git/git.git"
libevent: "git+https://github.com/libevent/libevent"
SDL2: "hg+https://hg.libsdl.org/SDL"
htop: "git+https://github.com/hishamhm/htop.git"
jemalloc: "git+https://github.com/jemalloc/jemalloc"
craft: "git+https://github.com/fogleman/Craft.git"
libressl: "git+https://github.com/libressl-portable/openbsd.git"
libressl-portable: "git+https://github.com/libressl-portable/portable.git"
ck: "git+https://github.com/concurrencykit/ck.git"
vis:
repo: "git+https://github.com/martanne/vis.git"
remotes:
tony: "git+ssh://git@github.com/tony/vis.git"
nanovg:
repo: "git+https://github.com/memononen/nanovg.git"
remotes:
tony: "git+ssh://git@github.com/tony/nanovg.git"
glfw:
repo: "git+https://github.com/glfw/glfw.git"
remotes:
tony: "git+ssh://git@github.com/glfw/glfw.git"
libui:
repo: "git+https://github.com/andlabs/libui.git"
remotes:
tony: "git+ssh://git@github.com/tony/libui.git"
the_silver_searcher:
repo: "git+https://github.com/ggreer/the_silver_searcher.git"
remotes:
tony: "git+ssh://git@github.com/tony/the_silver_searcher.git"
ruby: "git+https://github.com/ruby/ruby.git"
i3:
repo: "git+https://github.com/i3/i3.git"
remotes:
tony: "git+ssh://git@github.com/tony/i3.git"
airblader: "git+https://github.com/Airblader/i3.git" # gaps
klib: "git+https://github.com/attractivechaos/klib.git"
libuv: "git+https://github.com/libuv/libuv.git"
#libimobiledevice: 'git+https://github.com/libimobiledevice/libimobiledevice.git'
redis: "git+https://github.com/antirez/redis.git"
cython:
repo: "git+https://github.com/cython/cython.git"
remotes:
tony: "git+ssh://git@github.com/tony/cython.git"
flex:
repo: "git+ssh://git.code.sf.net/p/flex/flex"
remotes:
tony: "git+ssh://git@github.com:tony/flex.git"
spectrwm:
repo: "git+https://github.com/conformal/spectrwm.git"
remotes:
tony: "git+ssh://git@github.com:tony/spectrwm.git"
#awesome: 'git+https://github.com/awesomeWM/awesome.git'
ctags: "git+https://github.com/universal-ctags/ctags"
#weechat: 'git+ssh://git.sv.gnu.org/weechat.git'
#retroarch: 'git+https://github.com/Themaister/RetroArch.git'
#linux: 'git+https://github.com/torvalds/linux.git'
#minix: 'git+https://github.com/minix3/minix'
ncmpc: "git+ssh://git.musicpd.org/master/ncmpc.git"
tmux:
repo: "git+https://github.com/tmux/tmux.git"
remotes:
tony: "git+ssh://git@github.com/tony/tmux.git"
git: "git+https://github.com/git/git.git"
libgit2:
repo: "git+https://github.com/libgit2/libgit2.git"
remotes:
tony: "git+ssh://git@github.com/tony/libgit2.git"
postgres:
repo: "git+https://github.com/postgres/postgres.git"
remotes:
tony: "git+ssh://git@github.com/tony/postgres.git"
nuklear:
repo: "git+https://github.com/vurtun/nuklear.git"
remotes:
tony: "git+ssh://git@github.com/tony/nuklear.git"
pgadmin3: "git+ssh://git.postgresql.org/git/pgadmin3.git"
textadept: "hg+http://foicica.com/hg/textadept"
musl-libc: "git+ssh://git.musl-libc.org/musl"
util-cursor: "git+ssh://anongit.freedesktop.org/xcb/util-cursor"
zsh: "git+ssh://git.code.sf.net/p/zsh/code"
cpython: "git+https://github.com/python/cpython.git"
micropython: "git+https://github.com/micropython/micropython.git"
nginx: "hg+http://hg.nginx.org/nginx"
tre: "git+https://github.com/laurikari/tre"
~/study/zsh:
zsh-autoswitch-virtualenv:
repo: "git+https://github.com/MichaelAquilina/zsh-autoswitch-virtualenv.git"
remotes:
tony: "git+ssh://git@github.com/tony/zsh-autoswitch-virtualenv.git"
~/study/c++:
cquery: "git+https://github.com/cquery-project/cquery.git"
GeographicLib: "git+https://git.code.sf.net/p/geographiclib/code"
blender: "git+https://git.blender.org/blender.git"
entityx: "git+https://github.com/alecthomas/entityx"
anax: "git+https://github.com/miguelmartin75/anax"
caffe: "git+https://github.com/BVLC/caffe.git"
tensorflow: "git+https://github.com/tensorflow/tensorflow.git"
boost-python-examples: "git+https://github.com/TNG/boost-python-examples.git"
magnum:
repo: "git+https://github.com/mosra/magnum.git"
remotes:
tony: "git+ssh://git@github.com/tony/magnum.git"
nanogui:
repo: "git+https://github.com/wjakob/nanogui.git"
remotes:
tony: "git+ssh://git@github.com/tony/nanogui.git"
nanogui-sdl:
repo: "git+https://github.com/dalerank/nanogui-sdl.git"
remotes:
tony: "git+ssh://git@github.com/tony/nanogui-sdl.git"
protobuf:
repo: "git+https://github.com/google/protobuf.git"
remotes:
tony: "git+ssh://git@github.com/tony/protobuf.git"
box2d:
repo: "git+https://github.com/erincatto/Box2D.git"
remotes:
tony: "git+ssh://git@github.com/tony/Box2D.git"
pybind11:
repo: "git+https://github.com/pybind/pybind11.git"
remotes:
tony: "git+ssh://git@github.com/tony/pybind11.git"
cmake:
repo: "git+https://github.com/Kitware/cmake.git"
remotes:
tony: "git+ssh://git@github.com/tony/cmake.git"
jucipp:
repo: "git+https://github.com/cppit/jucipp.git"
remotes:
tony: "git+ssh://git@github.com/tony/jucipp.git"
kakoune:
repo: "git+https://github.com/mawww/kakoune.git"
remotes:
tony: "git+ssh://git@github.com/tony/kakoune.git"
googletest: "git+https://github.com/google/googletest"
gmock: "git+https://github.com/google/googlemock"
benchmark: "git+https://github.com/google/benchmark"
skia:
repo: "git+https://github.com/google/skia.git"
remotes:
aseprite: "git+https://github.com/aseprite/skia"
libsdl2pp:
repo: "git+https://github.com/libSDL2pp/libSDL2pp"
remotes:
tony: "git+ssh://git@github.com/tony/libSDL2pp.git"
boost: "git+https://github.com/boostorg/boost"
libpypa:
repo: "git+https://github.com/vinzenz/libpypa.git"
remotes:
tony: "git+ssh://git@github.com/tony/libpypa.git"
libunwind:
repo: "git+ssh://git.sv.gnu.org/libunwind.git"
remotes:
tony: "git+ssh://git@github.com/tony/libunwind.git"
dropbox: "https://github.com/dropbox/libunwind.git"
llvm: "http://llvm.org/git/libunwind"
solarus:
repo: "git+https://github.com/christopho/solarus.git"
remotes:
tony: "git+ssh://git@github.com/tony/solarus.git"
tmux-mem-cpu-load:
repo: "git+https://github.com/thewtex/tmux-mem-cpu-load.git"
remotes:
tony: "git+ssh://git@github.com/tony/tmux-mem-cpu-load.git"
oxygine:
repo: "git+https://github.com/oxygine/oxygine-framework.git"
remotes:
tony: "git+ssh://git@github.com/tony/oxygine-framework.git"
ninja:
repo: "git+https://github.com/ninja-build/ninja.git"
remotes:
tony: "git+ssh://git@github.com/tony/ninja.git"
re2: "git+https://github.com/google/re2.git"
# blink:
# repo: 'git+https://chromium.googlesource.com/chromium/blink'
v8:
repo: "git+ssh://github.com/v8/v8.git"
remotes:
tony: "git+ssh://git@github.com/tony/v8.git"
node:
repo: "git+https://github.com/nodejs/node.git"
remotes:
tony: "git+ssh://git@github.com/tony/node.git"
#zeal: 'git+https://github.com/jkozera/zeal.git'
#phantomjs: 'git+https://github.com/ariya/phantomjs.git'
#tudu: 'git+https://gitorious.org/tudu/tudu.git'
#wxPython: 'git+https://github.com/wxWidgets/wxPython.git'
#wxWidgets: 'git+https://github.com/wxWidgets/wxWidgets.git'
openttd:
repo: "git+https://github.com/openttd/openttd.git"
remotes:
tony: "git+ssh://git@github.com/tony/openttd.git"
#vimpc: 'git+https://github.com/boysetsfrog/vimpc'
#mpd: 'git+ssh://git.musicpd.org/master/mpd.git'
#libmpd: 'git+ssh://git.musicpd.org/master/libmpd.git'
ncmpcpp:
repo: "git+https://github.com/arybczak/ncmpcpp.git"
remotes:
tony: "git+ssh://git@github.com/tony/ncmpcpp.git"
#libmpdclient: 'git+ssh://git.musicpd.org/master/libmpdclient.git'
#node: 'git+https://github.com/joyent/node.git'
#libzmp: 'git+https://github.com/zeromq/libzmq.git'
doubanfm-qt: "git+https://github.com/zonyitoo/doubanfm-qt.git"
~/study/node:
express: "git+https://github.com/visionmedia/express.git"
~/study/typescript:
typescript: "git+https://github.com/Microsoft/TypeScript.git"
blueprint: "git+https://github.com/palantir/blueprint.git"
data-forge-ts: "git+https://github.com/data-forge/data-forge-ts.git"
DefinitelyTyped:
repo: "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
remotes:
tony: "git+ssh://git@github.com/tony/DefinitelyTyped.git"
search-input-query:
repo: "git+https://github.com/williamcotton/search-input-query.git"
remotes:
tony: "git+ssh://git@github.com/tony/search-input-query.git"
akita:
repo: "git+https://github.com/datorama/akita.git"
remotes:
tony: "git+ssh://git@github.com/tony/akita.git"
next.js:
repo: "git+https://github.com/vercel/next.js.git"
remotes:
tony: "git+ssh://git@github.com/tony/next.js.git"
carbon:
repo: "git+https://github.com/carbon-design-system/carbon.git"
remotes:
tony: "git+ssh://git@github.com/tony/carbon.git"
carbon-charts:
repo: "git+https://github.com/carbon-design-system/carbon-charts.git"