-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathpipenv.ts
843 lines (840 loc) · 22.4 KB
/
pipenv.ts
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
// REFERENCE: https://pipenv.pypa.io/en/stable/cli/
import { filepaths } from "@fig/autocomplete-generators";
import { packageList } from "./pip";
const completionSpec: Fig.Spec = {
name: "pipenv",
description: "Python package manager",
subcommands: [
{
name: "check",
description:
"Checks for PyUp Safety security vulnerabilities and against PEP 508 markers provided in Pipfile",
options: [
{
name: "--unused",
description:
"Given a code path, show potentially unused dependencies",
args: {
name: "code path",
},
},
{
name: "--db",
description:
"Path to a local PyUp Safety vulnerabilities database. Default: ENV PIPENV_SAFETY_DB or None",
args: {
name: "Database",
},
},
{
name: ["-i", "--ignore"],
description:
"Ignore specified vulnerability during PyUp Safety checks",
args: {
name: "Vulnerability ID",
},
},
{
name: "--output",
description:
"Translates to –json, –full-report or –bare from PyUp Safety check",
},
{
name: "--key",
description:
"Safety API key from PyUp.io for scanning dependencies against a live vulnerabilities database. Leave blank for scanning against a database that only updates once a month",
args: {
name: "API key",
},
},
{
name: "--quiet",
description: "Quiet standard output, except vulnerability report",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description: "Specify a PyPI mirror",
args: {
name: "mirror",
},
},
{
name: "--system",
description: "System pip management",
},
],
},
{
name: "clean",
description: "Uninstalls all packages not specified in Pipfile.lock",
options: [
{
name: "--bare",
description: "Minimal output",
},
{
name: "--dry-run",
description: "Just output unneeded packages",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
],
},
{
name: "graph",
description: "Displays currently-installed dependency graph information",
options: [
{
name: "--bare",
description: "Minimal output",
},
{
name: "--json",
description: "Output JSON",
},
{
name: "--json-tree",
description: "Output JSON in nested tree",
},
{
name: "--reverse",
description: "Reversed dependency graph",
},
],
},
{
name: "install",
description:
"Initializes a package manager or installs all packages from Pipfile",
args: {
name: "package",
description: "Package to install",
isOptional: true,
suggestions: packageList,
},
options: [
{
name: "--system",
description: "Install a Pipfile’s contents into its parent system",
},
{
name: ["-c", "--code"],
description:
"Install packages automatically discovered from import statements",
},
{
name: "--deploy",
description:
"Enforce that your Pipfile.lock is up to date in deployment",
},
{
name: "--site-packages",
description:
"Enable site-packages for the virtualenv [env var: PIPENV_SITE_PACKAGES]",
},
{
name: "--no-site-packages",
description:
"Enable site-packages for the virtualenv [env var: PIPENV_SITE_PACKAGES]",
},
{
name: "--skip-lock",
description:
"Skip locking mechanisms and use the Pipfile instead during operation",
},
{
name: ["-e", "--editable"],
description:
"An editable Python package URL or path, often to a VCS repository",
args: {
name: "Package URL | path",
},
},
{
name: "--ignore-pipfile",
description: "Ignore Pipfile when installing, using the Pipfile.lock",
},
{
name: "--selective-upgrade",
description: "Update specified packages",
args: {
name: "package",
isVariadic: true,
},
},
{
name: ["-r", "--requirements"],
description: "Import a requirements.txt file",
args: {
name: "path",
generators: filepaths({ extensions: ["txt", "yml", "yaml"] }),
},
},
{
name: "--extra-index-url",
description:
"URLs to the extra PyPI compatible indexes to query for package look-ups",
args: {
name: "URL",
},
},
{
name: ["-i", "--index"],
description: "Target PyPI-compatible package index url",
args: {
name: "URL",
},
},
{
name: "--sequential",
description:
"Install dependencies one-at-a-time, instead of concurrently",
},
{
name: ["-d", "--dev"],
description: "Install both develop and default packages",
},
{
name: "--keep-outdated",
description:
"Keep out-dated dependencies from being updated in Pipfile.lock",
},
{
name: "--pre",
description: "Allow pre-releases",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
{
name: "lock",
description: "Generates Pipfile.lock",
args: {
name: "> requirements.txt",
description: "Write packages into requirements.txt",
isOptional: true,
},
options: [
{
name: "--dev-only",
description:
"Generate a requirements file with only the development requirements",
},
{
name: "--header",
description: "Add header to generated requirements",
},
{
name: "--no-header",
description: "Generate requirements with no header",
},
{
name: ["-r", "--requirements"],
description: "Import a requirements.txt file",
},
{
name: ["-d", "--dev"],
description:
"Passing --dev will include both the default and development dependencies",
},
{
name: "--keep-outdated",
description:
"Keep out-dated dependencies from being updated in Pipfile.lock",
},
{
name: "--pre",
description: "Allow pre-releases",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
},
],
},
{
name: "open",
description: "View a given module in your editor",
args: {
name: "module",
},
options: [
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
},
],
},
{
name: "run",
description: "Spawns a command installed into the virtualenv",
subcommands: [
{
name: "command",
},
],
options: [
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
{
name: "scripts",
description: "Lists scripts in current environment config",
options: [
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
{
name: "shell",
description: "Start a shell within the environment",
options: [
{
name: "--fancy",
description:
"Run in shell in fancy mode. Make sure the shell have no path manipulating scripts. Run $pipenv shell for issues with compatibility mode",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--anyway",
description:
"Always spawn a sub-shell, even if one is already spawned",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
{
name: "sync",
description: "Installs all packages specified in Pipfile.lock",
options: [
{
name: "--system",
description: "Install a Pipfile’s contents into its parent system",
},
{
name: "--bare",
description: "Minimal output",
},
{
name: "--sequential",
description:
"Install dependencies one-at-a-time, instead of concurrently",
},
{
name: ["-d", "--dev"],
description: "Install both develop and default packages",
},
{
name: "--keep-outdated",
description:
"Keep out-dated dependencies from being updated in Pipfile.lock",
},
{
name: "--pre",
description: "Allow pre-releases",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
{
name: "uninstall",
description: "Uninstalls a provided package and removes it from Pipfile",
args: {
name: "package",
description: "Package to uninstall",
isOptional: true,
suggestions: packageList,
},
options: [
{
name: "--all-dev",
description: "Uninstall all package from [dev-packages]",
},
{
name: "--all",
description:
"Purge all package(s) from virtualenv. Does not edit Pipfile",
},
{
name: ["-e", "--editable"],
description:
"An editable Python package URL or path, often to a VCS repository",
args: {
name: "path",
template: "folders",
},
},
{
name: "--skip-lock",
description:
"Skip locking mechanisms and use the Pipfile instead during operation",
},
{
name: ["-d", "--dev"],
description: "Install both develop and default packages",
},
{
name: "--keep-outdated",
description:
"Keep out-dated dependencies from being updated in Pipfile.lock",
},
{
name: "--pre",
description: "Allow pre-releases",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
{
name: "update",
description: "Runs lock, then sync",
options: [
{
name: "--bare",
description: "Minimal output",
},
{
name: "--outdated",
description: "List out-of-date dependencies",
},
{
name: "--dry-run",
description: "Just output unneeded packages",
},
{
name: ["-e", "--editable"],
description:
"An editable Python package URL or path, often to a VCS repository",
args: {
name: "path",
template: "folders",
},
},
{
name: "--ignore-pipfile",
description: "Ignore Pipfile when installing, using the Pipfile.lock",
},
{
name: "--selective-upgrade",
description: "Update specified packages",
args: {
name: "packages",
isVariadic: true,
},
},
{
name: ["-r", "--requirements"],
description: "Import a requirements.txt file",
},
{
name: "--extra-index-url",
description:
"URLs to the extra PyPI compatible indexes to query for package look-ups",
args: {
name: "url",
isVariadic: true,
},
},
{
name: ["-i", "--index"],
description: "Target PyPI-compatible package index url",
args: {
name: "index",
},
},
{
name: "--sequential",
description:
"Install dependencies one-at-a-time, instead of concurrently",
},
{
name: ["-d", "--dev"],
description: "Install both develop and default packages",
},
{
name: "--keep-outdated",
description:
"Keep out-dated dependencies from being updated in Pipfile.lock",
},
{
name: "--pre",
description: "Allow pre-releases",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "py_version",
},
},
{
name: "--three",
description: "Use Python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use Python 2 when creating virtualenv",
},
{
name: "--clear",
description: "Clears caches (pipenv, pip, and pip-tools)",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description:
"If you would like to override the default PyPI index URLs with the URL for a PyPI mirror",
args: {
name: "mirror url",
},
},
],
},
],
options: [
{
name: "--where",
description: "View project home information",
},
{
name: "--venv",
description: "View virtualenv information",
},
{
name: "--py",
description: "View python interpreter information",
},
{
name: "--envs",
description: "View environment variable options",
},
{
name: "--rm",
description: "Remove the virtualenv",
},
{
name: "--bare",
description: "Minimal output",
},
{
name: "--completion",
description: "Output completion (to be executed by shell)",
},
{
name: "--man",
description: "Display manpage",
},
{
name: "--support",
description: "View diagnostic information for use in GitHub issues",
},
{
name: "--site-packages",
description:
"Enable site-packages for the virtualenv [env var: PIPENV_SITE_PACKAGES]",
},
{
name: "--no-site-packages",
description:
"Enable site-packages for the virtualenv [env var: PIPENV_SITE_PACKAGES]",
},
{
name: "--python",
description: "Specify which version of Python virtualenv should use",
args: {
name: "version",
description:
"Specific a python version e.g --python 3.6 or --python 2.7.14",
isOptional: true,
},
},
{
name: "--three",
description: "Use python 3 when creating virtualenv",
},
{
name: "--two",
description: "Use python 2 when creating virtualenv",
},
{
name: "--clear",
description:
"Clears caches (pipenv, pip, and pip-tools). [env var: PIPENV_CLEAR]",
},
{
name: ["-v", "--verbose"],
description: "Verbose mode",
},
{
name: "--pypi-mirror",
description: "Specify a PyPi mirror",
args: {
name: "mirror",
},
},
{
name: "--version",
description: "View your current pipenv version",
},
{
name: ["-h", "--help"],
description: "List commands",
},
],
};
export default completionSpec;