-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
794 lines (702 loc) Β· 20.3 KB
/
pyproject.toml
File metadata and controls
794 lines (702 loc) Β· 20.3 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
[build-system]
build-backend = "uv_build"
requires = [ "uv-build>=0.9" ]
[project]
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
name = "meta-package-manager"
version = "6.4.1.dev0"
description = "π wraps all package managers with a unifying CLI"
readme = "readme.md"
keywords = [
"alpine linux",
"apk",
"apm",
"apt",
"apt-mint",
"atom",
"brew",
"cargo",
"cask",
"choco",
"chocotaley",
"CLI",
"cli-tools",
"composer",
"cpan",
"cyclonedx",
"deb-get",
"dnf",
"dnf5",
"emerge",
"eopkg",
"flatpak",
"fwupd",
"gem",
"gnu guix",
"guix",
"homebrew",
"mac app store",
"macos",
"macports",
"mas",
"meta-package-manager",
"nix",
"nixpkgs",
"node",
"npm",
"opkg",
"pacaur",
"package",
"package manager",
"package url",
"package-manager-cli",
"pacman",
"pacstall",
"paru",
"php composer",
"pip",
"pipx",
"pkg",
"plugin",
"portage",
"ports",
"purl",
"ruby",
"ruby-gem",
"rust",
"sbom",
"scoop",
"sdkman",
"sfsu",
"snap",
"spdx",
"steamcmd",
"stew",
"swiftbar",
"swiftbar-plugin",
"uv",
"uvx",
"visual studio code",
"void linux",
"vscode",
"vscodium",
"winget",
"xbar",
"xbar-plugin",
"xbps",
"yarn",
"yarn-berry",
"yay",
"yum",
"zb",
"zerobrew",
"zypper",
]
license = "GPL-2.0-or-later"
license-files = [ "license" ]
authors = [ { name = "Kevin Deldycke", email = "kevin@deldycke.com" } ]
# Python versions and their status: https://devguide.python.org/versions/
requires-python = ">=3.10"
classifiers = [
# See: https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: BSD :: NetBSD",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
"Typing :: Typed",
]
# Semantic versioning works in theory. In practice, it is hard to guarantee.
# That's why we rely on >= specifier instead of ~= to relax constraints. This gives more freedom to packagers to
# release hotfixes for security vulnerabilities in the future.
# See also discussion about upper limits at: https://iscinumpy.dev/post/bound-version-constraints/#tldr
# All minimal version choice are documented. Reasons to bump a minimal version are:
# - bug fixes,
# - security fixes,
# - new code path we depends on,
# - aligns minimal Python requirements to ours,
# - adds new explicit support Python version.
dependencies = [
# backports.strenum 1.3.0 is required to support enum.StrEnum in Python 3.10.
"backports-strenum>=1.3; python_version<'3.11'",
# boltons 25.0.0 is the first version to support Python 3.13.
"boltons>=25",
# click-extra 7.11.0 adds serialize_data/print_data for structured output.
"click-extra>=7.11",
# cyclonedx-python-lib 11.2.0 is the first to support Python 3.14.
"cyclonedx-python-lib[validation]>=11.2",
# extra-platforms 10.0.0 drops the distro dependency.
"extra-platforms>=10",
# packageurl-python 0.16.0 is the first to support Python 3.13.
"packageurl-python>=0.16",
# spdx-tools 0.8.2 is the first version we used to implement SPDX support.
"spdx-tools>=0.8.2",
# tomllib is not part of the standard library before Python 3.11. Version 2.3.0 is the first to support Python 3.14.
"tomli>=2.3; python_version<'3.11'",
# tomli_w 1.1.0 is the first to remove Python 3.8 support.
"tomli-w>=1.1",
# xmltodict 0.12 stabilized the parse()/unparse() API we rely on in
# managers/zypper.py. 1.0.0 was a stability bump with no functional change.
# Keeping the floor low avoids forcing downstream packagers (Guix, Debian
# stable) to ship a newer xmltodict than they otherwise need.
"xmltodict>=0.12",
]
# Package referenced above and also featured in [project.optional-dependencies] or [dependency-groups]
# will be set without version specifier as they are already constrained.
[project.optional-dependencies]
toml = [ "click-extra[toml]" ]
yaml = [ "click-extra[yaml]" ]
json5 = [ "click-extra[json5]" ]
jsonc = [ "click-extra[jsonc]" ]
hjson = [ "click-extra[hjson]" ]
xml = [ "click-extra[xml]" ]
[project.scripts]
mpm = "meta_package_manager.__main__:main"
# Alias for the main entry point. So we can call `uvx meta-package-manager` directly.
meta-package-manager = "meta_package_manager.__main__:main"
[project.urls]
"Homepage" = "https://github.com/kdeldycke/meta-package-manager"
"Download" = "https://github.com/kdeldycke/meta-package-manager/releases/tag/v6.4.1.dev0"
"Changelog" = "https://github.com/kdeldycke/meta-package-manager/blob/main/changelog.md"
"Issues" = "https://github.com/kdeldycke/meta-package-manager/issues"
"Repository" = "https://github.com/kdeldycke/meta-package-manager"
"Funding" = "https://github.com/sponsors/kdeldycke"
[dependency-groups]
test = [
"click-extra[pytest]",
"click-extra[toml]",
"coverage[toml]>=7.12",
"extra-platforms",
"pytest>=9.0.1",
"pytest-cov>=7",
"pytest-github-actions-annotate-failures>=0.3",
"pytest-randomly>=4.0.1",
"pytest-xdist[psutil]>=3.8",
"pyyaml>=6",
]
docs = [
"click-extra[sphinx]",
"furo>=2025.9.25",
"myst-parser>=4",
"sphinx",
# sphinx-autodoc-typehints 2.4.0 is the first version that is aligned to our Python >= 3.10 requirement.
"sphinx-autodoc-typehints>=2.4",
# sphinx-click 6.1.0 is the first version to drop Python 3.9.
"sphinx-click>=6.1",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6",
"sphinx-issues>=5",
"sphinxcontrib-mermaid>=1.2.3",
"sphinxext-opengraph>=0.13",
]
typing = [
"types-boltons>=25.0.0.20250919",
"types-pyyaml>=6.0.12.9",
"types-xmltodict>=1.0.1.20250920",
]
[tool.setuptools]
# Distributors like Guix (https://codeberg.org/guix/guix/pulls/8047) that lack uv-build usually fall back to
# setuptools. Without explicit package discovery configuration, setuptools sees tests/, docs/, packaging/, and other
# top-level directories as packages and fails with "multiple top-level packages discovered" error. uv-build on the
# other hand ignores this section completely (it relies on [tool.uv].build-backend.module-root instead), so this is
# purely a compatibility shim for setuptools-based builds.
packages.find.include = [ "meta_package_manager*" ]
[tool.uv]
# Cooldown period.
exclude-newer = "1 week"
# Package is at root level, not in "./src/".
build-backend.module-root = ""
[tool.nuitka]
product-name = "Meta Package Manager"
file-description = "π wraps all package managers with a unifying CLI"
copyright = "Kevin Deldycke <kevin@deldycke.com> and contributors. Distributed under GPL-2.0-or-later license."
file-version = "6.4.1.dev0"
product-version = "6.4.1.dev0"
macos-app-icon = "docs/assets/icon.png"
linux-icon = "docs/assets/icon.png"
windows-icon-from-ico = "docs/assets/icon.png"
[tool.typos]
# Correct capitalization for proper nouns.
default.extend-identifiers = { Github = "GitHub", IOS = "iOS", Javascript = "JavaScript", MacOS = "macOS", PyPi = "PyPI", Typescript = "TypeScript" }
# Skip content between <!-- typos:off --> and <!-- typos:on --> markers.
default.extend-ignore-re = [ "(?s)<!-- typos:off -->.*?<!-- typos:on -->" ]
default.extend-ignore-identifiers-re = [
# error: `buildd` should be `build`, `builds`
# ββΈ ./claude.md:118
# β
# 118 β (..) inside a hermetic builder (Guix, Nixpkgs, Debian buildd, RPM mock, etc.).
# β°β΄ ββββββ
#
# `buildd` is the proper name of Debian's autobuilder daemon.
"buildd",
# error: `certifi` should be `certify`, `certifies`, `certified`
# ββΈ ./docs/assets/dependencies.mmd:7:5
# β
# 7 β certifi["certifi\n2025.11.12"]
# β°β΄ βββββββ
#
"certifi",
# error: `ist` should be `is`, `it`, `its`, `sit`, `list`
# ββΈ ./claude.md
# β
# β - [chalk.ist](https://chalk.ist)
# β°β΄ βββ
#
"ist",
]
[tool.pytest]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
addopts = [
"--durations=10",
# XXX --run-non-destructiveis not required as this is the default behavior.
# We would love to add it to the command line to make sure pytest is properly recognizing it and loads our
# customization from ``./tests/conftest.py``. But because of issue
# https://github.com/pytest-dev/pytest/issues/9311 (see above), it is not currently present in ``addopts``.
# "--run-non-destructive",
]
# Make sure tests that are expected to fail do not resurect and start working all of a sudden.
xfail_strict = true
[tool.coverage]
# https://coverage.readthedocs.io/en/latest/config.html
run.branch = true
run.source = [ "meta_package_manager" ]
report.precision = 2
[tool.bumpversion]
current_version = "6.4.1.dev0"
allow_dirty = true
ignore_missing_files = true
# Parse versions with an optional .devN suffix (PEP 440).
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.dev(?P<dev>\\d+))?"
serialize = [
"{major}.{minor}.{patch}.dev{dev}",
"{major}.{minor}.{patch}",
]
# When dev is "release" (its optional value), the .devN suffix is omitted.
# Bumping patch/minor/major resets dev to "0", producing X.Y.Z.dev0.
# Bumping dev goes from "0" to "release", stripping the suffix for release.
parts.dev.values = [ "0", "release" ]
parts.dev.optional_value = "release"
[[tool.bumpversion.files]]
# Update Python package version in any __init__.py file.
glob = "./**/__init__.py"
ignore_missing_version = true
[[tool.bumpversion.files]]
# Update version in [project] section.
filename = "./pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
# Update version in download URL.
filename = "./pyproject.toml"
search = "releases/tag/v{current_version}"
replace = "releases/tag/v{new_version}"
[[tool.bumpversion.files]]
# Update the version in Markdown changelog.
filename = "./changelog.md"
search = "## [`{current_version}` (unreleased)]("
replace = "## [`{new_version}` (unreleased)]("
[[tool.bumpversion.files]]
# Update the version in the citation file.
filename = "./citation.cff"
search = "version: {current_version}"
replace = "version: {new_version}"
[[tool.bumpversion.files]]
# Update the release date in the citation file.
filename = "./citation.cff"
regex = true
search = "date-released: \\d{{4}}-\\d{{2}}-\\d{{2}}"
replace = "date-released: {utcnow:%Y-%m-%d}"
[tool.mypy]
check_untyped_defs = true
explicit_package_bases = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
pretty = true
overrides = [ { ignore_missing_imports = true, module = [ "packageurl.*" ] } ]
[tool.lychee]
# ref: https://github.com/lycheeverse/lychee/blob/master/lychee.example.toml
exclude = [
# GitHub renders issue comments with JavaScript, so the linkcheck builder cannot find them.
"^https://github.com/.+#issuecomment-\\d+$",
# Skip suggesting redirecting generic download links to their binary artefact.
"^https://github.com/.+/releases/.+/download/.*$",
# Allow redirects of generic DOI URLs to their specific Zenodo release page.
"^https://doi.org/.+/zenodo.*$",
# Allow redirects to the official pip documentation.
"^https://pip.pypa.io/.*$",
]
[tool.repomatic]
exclude = [ "labels", "skills" ]
# Source paths for workflow trigger filters.
workflow.source-paths = [ "meta_package_manager" ]
# Tests install system packages (apt, brew, etc.) and need a full runner image.
test-matrix.replace.os = { "ubuntu-slim" = "ubuntu-24.04" }
# lxml cannot compile on Windows ARM64.
# See: https://bugs.launchpad.net/lxml/+bug/2004481
test-matrix.remove.os = [ "windows-11-arm" ]
test-matrix.exclude = [ { python-version = "3.15t" } ]
# Test plan for binary testing.
test-plan.file = "./tests/cli-test-plan.yaml"
# Extra label rules appended to repomatic's default labeller configurations.
labels.extra-file-rules = """"π bar-plugin":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/bar_plugin/*
- tests/*bar_plugin*
"π¦ manager: apk":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/apk*
- tests/*apk*
"π¦ manager: apm":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/apm*
- tests/*apm*
"π¦ manager: cargo":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/cargo*
- tests/*cargo*
"π¦ manager: choco":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/chocolatey*
- tests/*chocolatey*
"π¦ manager: composer":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/composer*
- tests/*composer*
"π¦ manager: dnf-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/dnf*
- tests/*dnf*
"π¦ manager: dpkg-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/apt*
- meta_package_manager/managers/dpkg*
- meta_package_manager/managers/opkg*
- tests/*apt*
- tests/*dpkg*
- tests/*opkg*
"π¦ manager: emerge":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/emerge*
- tests/*emerge*
"π¦ manager: eopkg":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/eopkg*
- tests/*eopkg*
"π¦ manager: flatpak":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/flatpak*
- tests/*flatpak*
"π¦ manager: fwupd":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/fwupd*
- tests/*fwupd*
"π¦ manager: gem":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/gem*
- tests/*gem*
"π¦ manager: guix":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/guix*
- tests/*guix*
"π¦ manager: homebrew":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/homebrew*
- tests/*homebrew*
"π¦ manager: macports":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/macports*
- tests/*macports*
"π¦ manager: mas":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/mas*
- tests/*mas*
"π¦ manager: mpm":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/*
"π¦ manager: nix":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/nix*
- tests/*nix*
"π¦ manager: npm-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/npm*
- meta_package_manager/managers/yarn*
- tests/*npm*
- tests/*yarn*
"π¦ manager: pacman-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/pacman*
- meta_package_manager/managers/pacaur*
- meta_package_manager/managers/paru*
- meta_package_manager/managers/yay*
- tests/*pacman*
- tests/*pacaur*
- tests/*paru*
- tests/*yay*
"π¦ manager: pacstall":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/pacstall*
- tests/*pacstall*
"π¦ manager: pip-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/pip*
- tests/*pip*
"π¦ manager: pkg-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/pkg*
- tests/*pkg*
- tests/*ports*
"π¦ manager: scoop":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/scoop*
- meta_package_manager/managers/sfsu*
- tests/*scoop*
- tests/*sfsu*
"π¦ manager: sdkman":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/sdkman*
- tests/*sdkman*
"π¦ manager: snap":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/snap*
- tests/*snap*
"π¦ manager: steamcmd":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/steamcmd*
- tests/*steamcmd*
"π¦ manager: uv-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/uv*
- tests/*uv*
"π¦ manager: vscode-based":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/vscode*
- tests/*vscode*
"π¦ manager: winget":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/winget*
- tests/*winget*
"π¦ manager: xbps":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/xbps*
- tests/*xbps*
"π¦ manager: zerobrew":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/zerobrew*
- tests/*zerobrew*
"π¦ manager: zypper":
- changed-files:
- any-glob-to-any-file:
- meta_package_manager/managers/zypper*
- tests/*zypper*
"""
labels.extra-content-rules = """"π bar-plugin":
- "xbar"
- "swiftbar"
- "plugin"
"π¦ manager: apk":
- "apk"
- "alpine"
- "alpine linux"
"π¦ manager: apm":
- "apm"
- "atom"
"π¦ manager: cargo":
- "cargo"
- "rust"
- "crate"
"π¦ manager: choco":
- "choco"
- "chocolatey"
"π¦ manager: composer":
- "composer"
- "php"
"π¦ manager: dnf-based":
- "dnf"
- "yum"
- "rpm"
- "fedora"
- "redhat"
- "rhel"
"π¦ manager: dpkg-based":
- "apt"
- "apt-mint"
- "aptitude"
- "dpkg"
- "opkg"
- "ubuntu"
- "debian"
- "mint"
"π¦ manager: emerge":
- "emerge"
- "portage"
- "gentoo"
"π¦ manager: eopkg":
- "eopkg"
- "solus"
"π¦ manager: flatpak":
- "flatpak"
- "flat"
"π¦ manager: fwupd":
- "fwupd"
- "fwupdmgr"
- "lvfs"
"π¦ manager: gem":
- "gem"
- "ruby"
"π¦ manager: guix":
- "guix"
- "gnu guix"
"π¦ manager: homebrew":
- "brew"
- "cask"
- "homebrew"
- "tap"
- "formula"
"π¦ manager: macports":
- "macports"
- "port"
"π¦ manager: mas":
- "mas"
- "app store"
- "app-store"
"π¦ manager: nix":
- "nix"
- "nixpkgs"
- "nixos"
"π¦ manager: npm-based":
- "npm"
- "node"
- "yarn"
"π¦ manager: pacman-based":
- "pacman"
- "arch"
- "pacaur"
- "paru"
- "yay"
"π¦ manager: pacstall":
- "pacstall"
"π¦ manager: pip-based":
- "pip"
- "pipx"
"π¦ manager: pkg-based":
- "pkg"
- "ports"
- "freebsd"
- "freebsd ports"
"π¦ manager: scoop":
- "scoop"
- "sfsu"
"π¦ manager: sdkman":
- "sdkman"
- "sdk man"
"π¦ manager: snap":
- "snap"
"π¦ manager: steamcmd":
- "steamcmd"
- "steam"
- "valve"
"π¦ manager: uv-based":
- "uv"
- "uvx"
"π¦ manager: vscode-based":
- "vscode"
- "vscodium"
- "visual studio code"
- "visual studio"
"π¦ manager: winget":
- "winget"
"π¦ manager: xbps":
- "xbps"
- "void linux"
- "void"
"π¦ manager: zerobrew":
- "zerobrew"
- "zb"
"π¦ manager: zypper":
- "zypper"
- "opensuse"
- "suse"
"π₯ platform: BSD":
- "bsd"
"π₯ platform: Linux":
- "linux"
"π₯ platform: macOS":
- "macos"
- "mac os"
- "osx"
- "os x"
- "apple"
"π₯ platform: Unix":
- "unix"
"π₯ platform: Windows":
- "windows"
- "c:"
- "microsoft"
"""
[tool.gitleaks]
allowlist.description = "False positives"
allowlist.commits = [
# Old Travis CI HOMEBREW_GITHUB_API_TOKEN (revoked).
"ee7613d49366694877177d82e207e870afb3cc1f",
# Example brew cask output containing API_KEY="abcdef123456".
"745247e5c74122de9ec2dd95cbd3b8510fe224d5",
"e31111be719406940519f52c9d4406e97fb368a3",
]