-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathuv.ts
1900 lines (1869 loc) · 45.4 KB
/
uv.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
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
// ////////////////////////////////////////////////////////////////// Generators //////////////////////////////////////////////////////////////////
const dependenciesGenerator: Fig.Generator = {
script: {
command: "bash",
args: [
"-c",
'awk \'/dependencies = \\[/ {f=1; next} /\\]/ {f=0} f && /"/ {line = $0; gsub(/^[ \\t]*"/, "", line); sub(/>=.*$/, "", line); gsub(/",?$/, "", line); print line}\' pyproject.toml',
],
},
postProcess: (out) => {
return out.split("\n").map((line) => {
return {
name: line,
description: "Dependency",
icon: "📦",
priority: 80,
};
});
},
};
const commandGenerator: Fig.Generator = {
script: {
command: "bash",
args: ["-c", `uv run | grep -E '^- ' | sed 's/^- //'`],
},
postProcess: (out) => {
return out.split("\n").map((line) => {
return {
name: line,
description: "Command",
icon: "fig://icon?type=command",
priority: 80,
};
});
},
};
// ////////////////////////////////////////////////////////////////// Options //////////////////////////////////////////////////////////////////
const indexOptions: Fig.Option[] = [
{
name: "--index",
description:
"The URLs to use when resolving dependencies, in addition to the default index",
args: { name: "INDEX" },
},
{
name: "--default-index",
description:
"The URL of the default package index (by default: <https://pypi.org/simple>)",
args: { name: "DEFAULT_INDEX" },
},
{
name: "--index-url",
description:
"The URL of the Python package index (by default: <https://pypi.org/simple>)",
args: { name: "INDEX_URL" },
},
{
name: "--extra-index-url",
description:
"Extra URLs of package indexes to use, in addition to `--index-url`",
args: { name: "EXTRA_INDEX_URL" },
},
{
name: "--find-links",
description:
"Locations to search for candidate distributions, in addition to those found in the registry indexes",
args: { name: "FIND_LINKS" },
},
{
name: "--no-index",
description:
"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`",
},
{
name: "--index-strategy",
description:
"The strategy to use when resolving against multiple index URLs",
args: {
name: "INDEX_STRATEGY",
suggestions: ["first-index", "unsafe-first-match", "unsafe-best-match"],
},
},
{
name: "--keyring-provider",
description: "Attempt to use `keyring` for authentication for index URLs",
args: {
name: "KEYRING_PROVIDER",
suggestions: ["disabled", "subprocess"],
},
},
];
const cacheOptions: Fig.Option[] = [
{
name: "--no-cache",
description:
"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation",
},
{
name: "--cache-dir",
description: "Path to the cache directory",
args: { name: "CACHE_DIR" },
},
{
name: "--refresh",
description: "Refresh all cached data",
},
{
name: "--refresh-package",
description: "Refresh cached data for a specific package",
args: { name: "REFRESH_PACKAGE" },
},
];
const resolverOptions: Fig.Option[] = [
{
name: "-U",
description:
"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`",
},
{
name: "--upgrade-package",
description:
"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`",
args: { name: "UPGRADE_PACKAGE" },
},
{
name: "--resolution",
description:
"The strategy to use when selecting between the different compatible versions for a given package requirement",
args: {
name: "RESOLUTION",
suggestions: ["highest", "lowest", "lowest-direct"],
},
},
{
name: "--prerelease",
description: "The strategy to use when considering pre-release versions",
args: {
name: "PRERELEASE",
suggestions: [
"disallow",
"allow",
"if-necessary",
"explicit",
"if-necessary-or-explicit",
],
},
},
{
name: "--exclude-newer",
description:
"Limit candidate packages to those that were uploaded prior to the given date",
args: { name: "EXCLUDE_NEWER" },
},
{
name: "--no-sources",
description:
"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any local or Git sources",
},
];
const installerOptions: Fig.Option[] = [
{
name: "--reinstall",
description:
"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`",
},
{
name: "--reinstall-package",
description:
"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`",
args: { name: "REINSTALL_PACKAGE" },
},
{
name: "--link-mode",
description:
"The method to use when installing packages from the global cache",
args: {
name: "LINK_MODE",
suggestions: ["clone", "copy", "hardlink", "symlink"],
},
},
{
name: "--compile-bytecode",
description: "Compile Python files to bytecode after installation",
},
];
const buildOptions: Fig.Option[] = [
{
name: "-C",
description:
"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs",
args: { name: "CONFIG_SETTING" },
},
{
name: "--no-build-isolation",
description: "Disable isolation when building source distributions",
args: { name: "UV_NO_BUILD_ISOLATION" },
},
{
name: "--no-build-isolation-package",
description:
"Disable isolation when building source distributions for a specific package",
args: { name: "NO_BUILD_ISOLATION_PACKAGE" },
},
{
name: "--no-build",
description: "Don't build source distributions",
},
{
name: "--no-build-package",
description: "Don't build source distributions for a specific package",
args: { name: "NO_BUILD_PACKAGE" },
},
{
name: "--no-binary",
description: "Don't install pre-built wheels",
},
{
name: "--no-binary-package",
description: "Don't install pre-built wheels for a specific package",
args: { name: "NO_BINARY_PACKAGE" },
},
];
const pythonOptions: Fig.Option[] = [
{
name: ["-p", "--python"],
description:
"The Python interpreter to use to determine the minimum supported Python version",
args: {
name: "PYTHON",
},
},
{
name: "--python-preference",
description: "Whether to prefer uv-managed or system Python installations",
args: {
name: "PYTHON_PREFERENCE",
suggestions: ["only-managed", "managed", "system", "only-system"],
},
},
{
name: "--no-python-downloads",
description: "Disable automatic downloads of Python",
},
];
// ////////////////////////////////////////////////////////////////// Subcommands //////////////////////////////////////////////////////////////////
// run
const runOptions: Fig.Option[] = [
{
name: "--extra",
description: "Include optional dependencies from the specified extra name",
args: { name: "EXTRA" },
},
{
name: "--all-extras",
description: "Include all optional dependencies",
},
{
name: "--no-extra",
description:
"Exclude the specified optional dependencies, if `--all-extras` is supplied",
args: { name: "NO_EXTRA" },
},
{
name: "--no-dev",
description: "Omit the development dependency group",
},
{
name: "--group",
description: "Include dependencies from the specified dependency group",
args: { name: "GROUP" },
},
{
name: "--no-group",
description: "Exclude dependencies from the specified dependency group",
args: { name: "NO_GROUP" },
},
{
name: "--only-group",
description:
"Only include dependencies from the specified dependency group",
args: { name: "ONLY_GROUP" },
},
{
name: "--all-groups",
description: "Include dependencies from all dependency groups",
},
{
name: ["-m", "--module"],
description: "Run a Python module",
},
{
name: "--only-dev",
description: "Only include the development dependency group",
},
{
name: "--no-editable",
description:
"Install any editable dependencies, including the project and any workspace members, as non-editable",
},
{
name: "--env-file",
description: "Load environment variables from a `.env` file",
args: { name: "ENV_FILE" },
},
{
name: "--no-env-file",
description: "Avoid reading environment variables from a `.env` file",
},
{
name: "--with",
description: "Run with the given packages installed",
args: { name: "WITH" },
},
{
name: "--with-editable",
description: "Run with the given packages installed as editables",
args: { name: "WITH_EDITABLE" },
},
{
name: "--with-requirements",
description:
"Run with all packages listed in the given `requirements.txt` files",
args: { name: "WITH_REQUIREMENTS" },
},
{
name: "--isolated",
description: "Run the command in an isolated virtual environment",
},
{
name: "--no-sync",
description: "Avoid syncing the virtual environment",
},
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
},
{
name: "--frozen",
description: "Run without updating the `uv.lock` file",
},
{
name: ["-s", "--script"],
description: "Run the given path as a Python script",
},
{
name: "--all-packages",
description: "Run the command with all workspace members installed",
},
{
name: "--package",
description: "Run the command in a specific package in the workspace",
args: { name: "PACKAGE" },
},
{
name: "--no-project",
description: "Avoid discovering the project or workspace",
},
];
// init
const initOptions: Fig.Option[] = [
{
name: "--name",
description: "The name of the project",
args: { name: "NAME" },
},
{
name: "--package",
description: "Set up the project to be built as a Python package",
},
{
name: "--no-package",
description: "Do not set up the project to be built as a Python package",
},
{
name: "--app",
description: "Create a project for an application",
},
{
name: "--lib",
description: "Create a project for a library",
},
{
name: "--script",
description: "Create a script",
},
{
name: "--vcs",
description: "Initialize a version control system for the project",
args: {
name: "VCS",
suggestions: ["git", "none"],
},
},
{
name: "--build-backend",
description: "Initialize a build-backend of choice for the project",
args: {
name: "BUILD_BACKEND",
suggestions: ["hatch", "flit", "pdm", "setuptools", "maturin", "scikit"],
},
},
{
name: "--no-readme",
description: "Do not create a `README.md` file",
},
{
name: "--author-from",
description: "Fill in the `authors` field in the `pyproject.toml`",
args: {
name: "AUTHOR_FROM",
suggestions: ["auto", "git", "none"],
},
},
{
name: "--no-pin-python",
description: "Do not create a `.python-version` file for the project",
},
{
name: "--no-workspace",
description:
"Avoid discovering a workspace and create a standalone project",
},
];
const initCacheOptions: Fig.Option[] = [
{
name: "-n",
description:
"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation",
},
{
name: "--cache-dir",
description: "Path to the cache directory",
args: { name: "CACHE_DIR" },
},
];
// add
const addOptions: Fig.Option[] = [
{
name: ["-r", "--requirements"],
description:
"Add all packages listed in the given `requirements.txt` files",
args: { name: "REQUIREMENTS" },
},
{
name: "--dev",
description: "Add the requirements to the development dependency group",
},
{
name: "--optional",
description:
"Add the requirements to the package's optional dependencies for the specified extra",
args: { name: "OPTIONAL" },
},
{
name: "--group",
description: "Add the requirements to the specified dependency group",
args: { name: "GROUP" },
},
{
name: "--editable",
description: "Add the requirements as editable",
},
{
name: "--raw-sources",
description:
"Add source requirements to `project.dependencies`, rather than `tool.uv.sources`",
},
{
name: "--rev",
description: "Commit to use when adding a dependency from Git",
args: { name: "REV" },
},
{
name: "--tag",
description: "Tag to use when adding a dependency from Git",
args: { name: "TAG" },
},
{
name: "--branch",
description: "Branch to use when adding a dependency from Git",
args: { name: "BRANCH" },
},
{
name: "--extra",
description: "Extras to enable for the dependency",
args: { name: "EXTRA" },
},
{
name: "--no-sync",
description: "Avoid syncing the virtual environment",
args: { name: "UV_NO_SYNC" },
},
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
args: { name: "UV_LOCKED" },
},
{
name: "--frozen",
description: "Add dependencies without re-locking the project",
args: { name: "UV_FROZEN" },
},
{
name: "--package",
description: "Add the dependency to a specific package in the workspace",
args: { name: "PACKAGE" },
},
{
name: "--script",
description:
"Add the dependency to the specified Python script, rather than to a project",
args: { name: "SCRIPT" },
},
];
// remove
const removeOptions: Fig.Option[] = [
{
name: "--dev",
description: "Remove the packages from the development dependency group",
},
{
name: "--optional",
description:
"Remove the packages from the project's optional dependencies for the specified extra",
args: {
name: "OPTIONAL",
},
},
{
name: "--group",
description: "Remove the packages from the specified dependency group",
args: {
name: "GROUP",
},
},
{
name: "--no-sync",
description:
"Avoid syncing the virtual environment after re-locking the project",
args: {
name: "UV_NO_SYNC",
},
},
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
args: {
name: "UV_LOCKED",
},
},
{
name: "--frozen",
description: "Remove dependencies without re-locking the project",
args: {
name: "UV_FROZEN",
},
},
{
name: "--package",
description:
"Remove the dependencies from a specific package in the workspace",
args: {
name: "PACKAGE",
},
},
{
name: "--script",
description:
"Remove the dependency from the specified Python script, rather than from a project",
args: {
name: "SCRIPT",
},
},
];
// sync
const syncOptions: Fig.Option[] = [
{
name: "--extra",
description: "Include optional dependencies from the specified extra name",
args: {
name: "EXTRA",
},
},
{
name: "--all-extras",
description: "Include all optional dependencies",
},
{
name: "--no-extra",
description:
"Exclude the specified optional dependencies, if `--all-extras` is supplied",
args: {
name: "NO_EXTRA",
},
},
{
name: "--no-dev",
description: "Omit the development dependency group",
},
{
name: "--only-dev",
description: "Only include the development dependency group",
},
{
name: "--group",
description: "Include dependencies from the specified dependency group",
args: {
name: "GROUP",
},
},
{
name: "--no-group",
description: "Exclude dependencies from the specified dependency group",
args: {
name: "NO_GROUP",
},
},
{
name: "--only-group",
description:
"Only include dependencies from the specified dependency group",
args: {
name: "ONLY_GROUP",
},
},
{
name: "--all-groups",
description: "Include dependencies from all dependency groups",
},
{
name: "--no-editable",
description:
"Install any editable dependencies, including the project and any workspace members, as non-editable",
},
{
name: "--inexact",
description: "Do not remove extraneous packages present in the environment",
},
{
name: "--no-install-project",
description: "Do not install the current project",
},
{
name: "--no-install-workspace",
description:
"Do not install any workspace members, including the root project",
},
{
name: "--no-install-package",
description: "Do not install the given package(s)",
args: {
name: "NO_INSTALL_PACKAGE",
},
},
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
args: {
name: "UV_LOCKED",
},
},
{
name: "--frozen",
description: "Sync without updating the `uv.lock` file",
args: {
name: "UV_FROZEN",
},
},
{
name: "--all-packages",
description: "Sync all packages in the workspace",
},
{
name: "--package",
description: "Sync for a specific package in the workspace",
args: {
name: "PACKAGE",
},
},
];
// lock
const lockOptions: Fig.Option[] = [
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
},
{
name: "--frozen",
description: "Assert that a `uv.lock` exists, without updating it",
},
{
name: "--dry-run",
description: "Perform a dry run, without writing the lockfile",
},
];
const lockInstallerOptions: Fig.Option[] = [
{
name: "--link-mode",
description:
"The method to use when installing packages from the global cache",
args: {
name: "LINK_MODE",
suggestions: ["clone", "copy", "hardlink", "symlink"],
},
},
];
// export
const exportOptions: Fig.Option[] = [
{
name: "--format",
description: "The format to which `uv.lock` should be exported",
args: {
name: "FORMAT",
},
},
{
name: "--all-packages",
description: "Export the entire workspace",
},
{
name: "--package",
description:
"Export the dependencies for a specific package in the workspace",
args: {
name: "PACKAGE",
},
},
{
name: "--prune",
description: "Prune the given package from the dependency tree",
args: {
name: "PRUNE",
},
},
{
name: "--extra",
description: "Include optional dependencies from the specified extra name",
args: {
name: "EXTRA",
},
},
{
name: "--all-extras",
description: "Include all optional dependencies",
},
{
name: "--no-extra",
description:
"Exclude the specified optional dependencies, if `--all-extras` is supplied",
args: {
name: "NO_EXTRA",
},
},
{
name: "--no-dev",
description: "Omit the development dependency group",
},
{
name: "--only-dev",
description: "Only include the development dependency group",
},
{
name: "--group",
description: "Include dependencies from the specified dependency group",
args: {
name: "GROUP",
},
},
{
name: "--no-group",
description: "Exclude dependencies from the specified dependency group",
args: {
name: "NO_GROUP",
},
},
{
name: "--only-group",
description:
"Only include dependencies from the specified dependency group",
args: {
name: "ONLY_GROUP",
},
},
{
name: "--all-groups",
description: "Include dependencies from all dependency groups",
},
{
name: "--no-header",
description:
"Exclude the comment header at the top of the generated output file",
},
{
name: "--no-editable",
description:
"Install any editable dependencies, including the project and any workspace members, as non-editable",
},
{
name: "--no-hashes",
description: "Omit hashes in the generated output",
},
{
name: "-o",
description: "Write the exported requirements to the given file",
args: {
name: "OUTPUT_FILE",
},
},
{
name: "--no-emit-project",
description: "Do not emit the current project",
},
{
name: "--no-emit-workspace",
description:
"Do not emit any workspace members, including the root project",
},
{
name: "--no-emit-package",
description: "Do not emit the given package(s)",
args: {
name: "NO_EMIT_PACKAGE",
},
},
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
args: {
name: "UV_LOCKED",
},
},
{
name: "--frozen",
description: "Do not update the `uv.lock` before exporting",
args: {
name: "UV_FROZEN",
},
},
];
// tree
const treeOptions: Fig.Option[] = [
{
name: "--universal",
description: "Show a platform-independent dependency tree",
},
{
name: "-d",
description: "Maximum display depth of the dependency tree",
args: {
name: "DEPTH",
default: "255",
},
},
{
name: "--prune",
description:
"Prune the given package from the display of the dependency tree",
args: {
name: "PRUNE",
},
},
{
name: "--package",
description: "Display only the specified packages",
args: {
name: "PACKAGE",
},
},
{
name: "--no-dedupe",
description:
"Do not de-duplicate repeated dependencies. Usually, when a package has already displayed its dependencies, further occurrences will not re-display its dependencies, and will include a (*) to indicate it has already been shown. This flag will cause those duplicates to be repeated",
},
{
name: "--invert",
description:
"Show the reverse dependencies for the given package. This flag will invert the tree and display the packages that depend on the given package",
},
{
name: "--outdated",
description:
"Show the latest available version of each package in the tree",
},
{
name: "--only-dev",
description: "Only include the development dependency group",
},
{
name: "--no-dev",
description: "Omit the development dependency group",
},
{
name: "--group",
description: "Include dependencies from the specified dependency group",
args: {
name: "GROUP",
},
},
{
name: "--no-group",
description: "Exclude dependencies from the specified dependency group",
args: {
name: "NO_GROUP",
},
},
{
name: "--only-group",
description:
"Only include dependencies from the specified dependency group",
args: {
name: "ONLY_GROUP",
},
},
{
name: "--all-groups",
description: "Include dependencies from all dependency groups",
},
{
name: "--locked",
description: "Assert that the `uv.lock` will remain unchanged",
args: {
name: "UV_LOCKED",
},
},
{
name: "--frozen",
description: "Display the requirements without locking the project",
args: {
name: "UV_FROZEN",
},
},
{
name: "--python-version",
description: "The Python version to use when filtering the tree",
args: {
name: "PYTHON_VERSION",
},
},
{
name: "--python-platform",
description: "The platform to use when filtering the tree",
args: {
name: "PYTHON_PLATFORM",
suggestions: [
"windows",
"linux",
"macos",
"x86_64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
"x86_64-manylinux_2_17",
"x86_64-manylinux_2_28",
"x86_64-manylinux_2_31",
"x86_64-manylinux_2_32",
"x86_64-manylinux_2_33",
"x86_64-manylinux_2_34",
"x86_64-manylinux_2_35",
"x86_64-manylinux_2_36",
"x86_64-manylinux_2_37",
"x86_64-manylinux_2_38",
"x86_64-manylinux_2_39",
"x86_64-manylinux_2_40",
"aarch64-manylinux_2_17",
"aarch64-manylinux_2_28",
"aarch64-manylinux_2_31",
"aarch64-manylinux_2_32",
"aarch64-manylinux_2_33",
"aarch64-manylinux_2_34",
"aarch64-manylinux_2_35",
"aarch64-manylinux_2_36",
"aarch64-manylinux_2_37",
"aarch64-manylinux_2_38",
"aarch64-manylinux_2_39",
"aarch64-manylinux_2_40",
],
},