gha-utils 4.11.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of gha-utils might be problematic. Click here for more details.

gha_utils/py.typed ADDED
File without changes
@@ -0,0 +1,349 @@
1
+ Metadata-Version: 2.2
2
+ Name: gha-utils
3
+ Version: 4.11.0
4
+ Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
5
+ Author-email: Kevin Deldycke <kevin@deldycke.com>
6
+ Project-URL: Homepage, https://github.com/kdeldycke/workflows
7
+ Project-URL: Repository, https://github.com/kdeldycke/workflows
8
+ Project-URL: Funding, https://github.com/sponsors/kdeldycke
9
+ Project-URL: Issues, https://github.com/kdeldycke/workflows/issues
10
+ Project-URL: Changelog, https://github.com/kdeldycke/workflows/blob/main/changelog.md
11
+ Keywords: build-automation,changelog-formatter,ci-cd,cli,formatting,github-actions,labels,linting,markdown,mypy,nuitka,packaging,pypi,python,release-automation,sphinx,sponsorship,terminal,typo,workflow-reusable,yaml
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Environment :: Console
14
+ Classifier: Framework :: Sphinx
15
+ Classifier: Framework :: Pelican
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
18
+ Classifier: Operating System :: MacOS :: MacOS X
19
+ Classifier: Operating System :: Microsoft :: Windows
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: Implementation :: CPython
27
+ Classifier: Programming Language :: Unix Shell
28
+ Classifier: Topic :: Documentation :: Sphinx
29
+ Classifier: Topic :: File Formats :: JSON
30
+ Classifier: Topic :: Security
31
+ Classifier: Topic :: Software Development :: Build Tools
32
+ Classifier: Topic :: Software Development :: Compilers
33
+ Classifier: Topic :: Software Development :: Documentation
34
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
35
+ Classifier: Topic :: Software Development :: Quality Assurance
36
+ Classifier: Topic :: Software Development :: Version Control :: Git
37
+ Classifier: Topic :: System :: Archiving :: Packaging
38
+ Classifier: Topic :: System :: Installation/Setup
39
+ Classifier: Topic :: System :: Shells
40
+ Classifier: Topic :: System :: Software Distribution
41
+ Classifier: Topic :: Terminals
42
+ Classifier: Topic :: Text Processing :: Markup :: HTML
43
+ Classifier: Topic :: Text Processing :: Markup :: Markdown
44
+ Classifier: Topic :: Utilities
45
+ Classifier: Typing :: Typed
46
+ Requires-Python: >=3.10
47
+ Description-Content-Type: text/markdown
48
+ Requires-Dist: backports.strenum~=1.3.1; python_version < "3.11"
49
+ Requires-Dist: boltons>=24.0.0
50
+ Requires-Dist: bump-my-version>=0.21.0
51
+ Requires-Dist: click-extra~=4.11.0
52
+ Requires-Dist: packaging~=24.1
53
+ Requires-Dist: PyDriller~=2.6
54
+ Requires-Dist: pyproject-metadata~=0.9.0
55
+ Requires-Dist: tomli~=2.0.1; python_version < "3.11"
56
+ Requires-Dist: wcmatch>=8.5
57
+ Provides-Extra: test
58
+ Requires-Dist: coverage[toml]~=7.6.0; extra == "test"
59
+ Requires-Dist: pytest~=8.3.1; extra == "test"
60
+ Requires-Dist: pytest-cases~=3.8.3; extra == "test"
61
+ Requires-Dist: pytest-cov~=6.0.0; extra == "test"
62
+ Requires-Dist: pytest-github-actions-annotate-failures~=0.2.0; extra == "test"
63
+ Requires-Dist: pytest-randomly~=3.16.0; extra == "test"
64
+
65
+ # `gha-utils` CLI + reusable workflows
66
+
67
+ [![Last release](https://img.shields.io/pypi/v/gha-utils.svg)](https://pypi.python.org/pypi/gha-utils)
68
+ [![Python versions](https://img.shields.io/pypi/pyversions/gha-utils.svg)](https://pypi.python.org/pypi/gha-utils)
69
+ [![Type checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
70
+ [![Unittests status](https://github.com/kdeldycke/workflows/actions/workflows/tests.yaml/badge.svg?branch=main)](https://github.com/kdeldycke/workflows/actions/workflows/tests.yaml?query=branch%3Amain)
71
+ [![Coverage status](https://codecov.io/gh/kdeldycke/workflows/branch/main/graph/badge.svg)](https://app.codecov.io/gh/kdeldycke/workflows)
72
+
73
+ Thanks to this project, I am able to **release Python packages multiple times a day with only 2-clicks**.
74
+
75
+ This repository contains a collection of reusable workflows and its companion CLI called `gha-utils` (which stands for *GitHub action workflows utilities*).
76
+
77
+ It is designed for `uv`-based Python projects (and Awesome List projects as a bonus).
78
+
79
+ It takes care of:
80
+
81
+ - Version bumping
82
+ - Formatting autofix for: Python, Markdown, JSON, typos
83
+ - Linting: Python types with `mypy`, YAML, `zsh`, GitHub actions, links, Awesome lists, secrets
84
+ - Compiling of Python binaries for Linux / macOS / Windows on `x86_64` & `arm64`
85
+ - Building of Python packages and upload to PyPi
86
+ - Git version tagging and GitHub release creation
87
+ - Synchronization of: `uv.lock`, `.gitignore`, `.mailmap` and Mermaid dependency graph
88
+ - Auto-locking of inactive closed issues
89
+ - Static image optimization
90
+ - Sphinx documentation building & deployment, and `autodoc` updates
91
+ - Label management, with file-based and content-based rules
92
+
93
+ Nothing is done behind your back. A PR is created every time a change is proposed, so you can inspect it, ala dependabot.
94
+
95
+ ## `gha-utils` CLI
96
+
97
+ ### Ad-hoc execution
98
+
99
+ Thanks to `uv`, you can install and run `gha-utils` in one command, without polluting your system:
100
+
101
+ ```shell-session
102
+ $ uvx gha-utils
103
+ Installed 45 packages in 45ms
104
+ Usage: gha-utils [OPTIONS] COMMAND [ARGS]...
105
+
106
+ Options:
107
+ --time / --no-time Measure and print elapsed execution time. [default:
108
+ no-time]
109
+ --color, --ansi / --no-color, --no-ansi
110
+ Strip out all colors and all ANSI codes from output.
111
+ [default: color]
112
+ -C, --config CONFIG_PATH Location of the configuration file. Supports glob
113
+ pattern of local path and remote URL. [default:
114
+ ~/Library/Application Support/gha-
115
+ utils/*.{toml,yaml,yml,json,ini,xml}]
116
+ --show-params Show all CLI parameters, their provenance, defaults
117
+ and value, then exit.
118
+ -v, --verbosity LEVEL Either CRITICAL, ERROR, WARNING, INFO, DEBUG.
119
+ [default: WARNING]
120
+ --version Show the version and exit.
121
+ -h, --help Show this message and exit.
122
+
123
+ Commands:
124
+ changelog Maintain a Markdown-formatted changelog
125
+ mailmap-sync Update Git's .mailmap file with missing contributors
126
+ metadata Output project metadata
127
+ ```
128
+
129
+ ```shell-session
130
+ $ uvx gha-utils --version
131
+ gha-utils, version 4.9.0
132
+ ```
133
+
134
+ That's the best way to get started with `gha-utils`, and experiment with its features.
135
+
136
+ ### Executables
137
+
138
+ To ease deployment, standalone executables of `gha-utils`'s latest version are available as direct downloads for several platforms and architectures:
139
+
140
+ | Platform | `x86_64` | `arm64` |
141
+ | ----------- | --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
142
+ | **Linux** | [Download `gha-utils-linux-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-linux-x64.bin) | |
143
+ | **macOS** | [Download `gha-utils-macos-x64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-x64.bin) | [Download `gha-utils-macos-arm64.bin`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-macos-arm64.bin) |
144
+ | **Windows** | [Download `gha-utils-windows-x64.exe`](https://github.com/kdeldycke/workflows/releases/latest/download/gha-utils-windows-x64.exe) | |
145
+
146
+ ### Development version
147
+
148
+ To play with the latest development version of `gha-utils`, you can install it directly from the repository:
149
+
150
+ ```shell-session
151
+ $ git clone https://github.com/kdeldycke/workflows
152
+ $ cd workflows
153
+ $ python -m pip install uv
154
+ $ uv venv
155
+ $ source .venv/bin/activate
156
+ $ uv sync
157
+ $ uv run -- gha-utils
158
+ ```
159
+
160
+ ## Reusable workflows collection
161
+
162
+ This repository contains workflows to automate most of the boring tasks.
163
+
164
+ These workflows are mostly used for Python projects and their documentation, but not only. They're all [reusable GitHub actions workflows](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows).
165
+
166
+ Reasons for a centralized workflow repository:
167
+
168
+ - reusability of course: no need to update dozens of repository where 95% of workflows are the same
169
+ - centralize all dependencies pertaining to automation: think of the point-release of an action that triggers dependabot upgrade to all your repositories depending on it
170
+
171
+ ### Guidelines
172
+
173
+ I don't want to copy-n-past, keep in sync and maintain another `N`th CI/CD file at the root of my repositories.
174
+
175
+ So my policy is: move every repository-specific config in a `pyproject.toml` file, or hide the gory details in a reused workflow.
176
+
177
+ ### `.github/workflows/docs.yaml` jobs
178
+
179
+ - Autofix typos
180
+
181
+ - Optimize images
182
+
183
+ - Keep `.mailmap` up to date
184
+
185
+ - Update dependency graph of Python projects
186
+
187
+ - **Requires**:
188
+ - Python package with a `pyproject.toml` file
189
+
190
+ - Build Sphinx-based documentation and publish it to GitHub Pages
191
+
192
+ - **Requires**:
193
+ - Python package with a `pyproject.toml` file
194
+ - All Sphinx dependencies in a `docs` [extra dependency group](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#dependencies-and-requirements):
195
+ ```toml
196
+ [project.optional-dependencies]
197
+ docs = [
198
+ "furo == 2024.1.29",
199
+ "myst-parser ~= 3.0.0",
200
+ "sphinx >= 6",
201
+ ...
202
+ ]
203
+ ```
204
+ - Sphinx configuration file at `docs/conf.py`
205
+
206
+ - Sync awesome projects from `awesome-template` repository
207
+
208
+ ### Why all these `requirements/*.txt` files?
209
+
210
+ Let's look for example at the `lint-yaml` job from [`.github/workflows/lint.yaml`](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/lint.yaml#L126). Here we only need the `yamllint` CLI. This CLI is [distributed on PyPi](https://pypi.org/project/yamllint/). So before executing it, we could have simply run the following step:
211
+
212
+ ```yaml
213
+ - name: Install yamllint
214
+ run: |
215
+ pip install yamllint
216
+ ```
217
+
218
+ Instead, we install it via the [`requirements/yamllint.txt` file](https://github.com/kdeldycke/workflows/blob/main/requirements/yamllint.txt).
219
+
220
+ Why? Because I want the version of `yamllint` to be pinned. By pinning it, I make the workflow stable, predictable and reproducible.
221
+
222
+ So why use a dedicated requirements file? Why don't we simply add the version? Like this:
223
+
224
+ ```yaml
225
+ - name: Install yamllint
226
+ run: |
227
+ pip install yamllint==1.35.1
228
+ ```
229
+
230
+ That would indeed pin the version. But it requires the maintainer (me) to keep track of new release and update manually the version string. That's a lot of work. And I'm lazy. So this should be automated.
231
+
232
+ To automate that, the only practical way I found was to rely on dependabot. But dependabot cannot update arbitrary versions in `run:` YAML blocks. It [only supports `requirements.txt` and `pyproject.toml`](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#pip-and-pip-compile) files for Python projects.
233
+
234
+ So to keep track of new versions of dependencies while keeping them stable, we've hard-coded all Python libraries and CLIs in the `requirements/*.txt` files. All with pinned versions.
235
+
236
+ And for the case we need to install all dependencies in one go, we have a [`requirements.txt` file at the root](https://github.com/kdeldycke/workflows/blob/main/requirements.txt) that is referencing all files from the `requirements/` subfolder.
237
+
238
+ ### Permissions and token
239
+
240
+ This repository updates itself via GitHub actions. It particularly updates its own YAML files in `.github/workflows`. That's forbidden by default. So we need extra permissions.
241
+
242
+ Usually, to grant special permissions to some jobs, you use the [`permissions` parameter in workflow](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions) files. It looks like this:
243
+
244
+ ```yaml
245
+ on: (...)
246
+
247
+ jobs:
248
+
249
+ my-job:
250
+ runs-on: ubuntu-latest
251
+ permissions:
252
+ contents: write
253
+ pull-requests: write
254
+
255
+ steps: (...)
256
+ ```
257
+
258
+ But the `contents: write` permission doesn't allow write access to the workflow files in the `.github` subfolder. There is `actions: write`, but it only covers workflow runs, not their YAML source file. Even a `permissions: write-all` doesn't work. So you cannot use the `permissions` parameter to allow a repository's workflow update its own workflow files.
259
+
260
+ You will always end up with this kind or errors:
261
+
262
+ ```text
263
+ ! [remote rejected] branch_xxx -> branch_xxx (refusing to allow a GitHub App to create or update workflow `.github/workflows/my_workflow.yaml` without `workflows` permission)
264
+
265
+ error: failed to push some refs to 'https://github.com/kdeldycke/my-repo'
266
+ ```
267
+
268
+ > [!NOTE]
269
+ > That's also why the Settings > Actions > General > Workflow permissions parameter on your repository has no effect on this issue, even with the `Read and write permissions` set:
270
+ > ![](docs/assets/repo-workflow-permissions.png)
271
+
272
+ To bypass the limitation, we rely on a custom access token. By convention, we call it `WORKFLOW_UPDATE_GITHUB_PAT`. It will be used, [in place of the default `secrets.GITHUB_TOKEN`](https://github.com/search?q=repo%3Akdeldycke%2Fworkflows%20WORKFLOW_UPDATE_GITHUB_PAT&type=code), in steps in which we need to change the workflow YAML files.
273
+
274
+ To create this custom `WORKFLOW_UPDATE_GITHUB_PAT`:
275
+
276
+ - From your GitHub user, go to `Settings` > `Developer Settings` > `Personal Access Tokens` > `Fine-grained tokens`
277
+ - Click on the `Generate new token` button
278
+ - Choose a good token name like `workflow-self-update` to make your intention clear
279
+ - Choose `Only select repositories` and the list the repositories in needs of updating their workflow YAML files
280
+ - In the `Repository permissions` drop-down, sets:
281
+ - `Contents`: `Access: **Read and Write**`
282
+ - `Metadata` (mandatory): `Access: **Read-only**`
283
+ - `Pull Requests`: `Access: **Read and Write**`
284
+ - `Workflows`: `Access: **Read and Write**`
285
+ > [!NOTE]
286
+ > This is the only place where I can have control over the `Workflows` permission, which is not supported by the `permissions:` parameter in YAML files.
287
+ - Now save these parameters and copy the `github_pat_XXXX` secret token
288
+ - Got to your repo > `Settings` > `Security` > `Secrets and variables` > `Actions` > `Secrets` > `Repository secrets` and click `New repository secrets`
289
+ - Name your secret `WORKFLOW_UPDATE_GITHUB_PAT` and copy the `github_pat_XXXX` token in the `Secret` field
290
+
291
+ Now re-run your actions and they should be able to update the workflow files in `.github` folder without the `refusing to allow a GitHub App to create or update workflow` error.
292
+
293
+ ### Release management
294
+
295
+ It turns out [Release Engineering is a full-time job, and full of edge-cases](https://blog.axo.dev/2023/02/cargo-dist).
296
+
297
+ Rust has [`cargo-dist`](https://github.com/axodotdev/cargo-dist). Go has... ? But there is no equivalent for Python.
298
+
299
+ So I made up a [`release.yaml` workflow](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml), which:
300
+
301
+ 1. Extracts project metadata from `pyproject.toml`
302
+ 1. Generates a build matrix of all commits / os / arch / CLI entry points
303
+ 1. Build Python wheel with Twine
304
+ 1. Compile binaries of all CLI with Nuitka
305
+ 1. Tag the release commit in Git
306
+ 1. Publish new version to PyPi
307
+ 1. Publish a GitHub release
308
+ 1. Attach and rename build artifacts to it
309
+
310
+ ## Changelog
311
+
312
+ A [detailed changelog](changelog.md) is available.
313
+
314
+ ## Used in
315
+
316
+ Check these projects to get real-life examples of usage and inspiration:
317
+
318
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/awesome-falsehood?label=%E2%AD%90&style=flat-square) [Awesome Falsehood](https://github.com/kdeldycke/awesome-falsehood#readme) - Falsehoods Programmers Believe in.
319
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/awesome-engineering-team-management?label=%E2%AD%90&style=flat-square) [Awesome Engineering Team Management](https://github.com/kdeldycke/awesome-engineering-team-management#readme) - How to transition from software development to engineering management.
320
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/awesome-iam?label=%E2%AD%90&style=flat-square) [Awesome IAM](https://github.com/kdeldycke/awesome-iam#readme) - Identity and Access Management knowledge for cloud platforms.
321
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/awesome-billing?label=%E2%AD%90&style=flat-square) [Awesome Billing](https://github.com/kdeldycke/awesome-billing#readme) - Billing & Payments knowledge for cloud platforms.
322
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/meta-package-manager?label=%E2%AD%90&style=flat-square) [Meta Package Manager](https://github.com/kdeldycke/meta-package-manager#readme) - A unifying CLI for multiple package managers.
323
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/mail-deduplicate?label=%E2%AD%90&style=flat-square) [Mail Deduplicate](https://github.com/kdeldycke/mail-deduplicate#readme) - A CLI to deduplicate similar emails.
324
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/dotfiles?label=%E2%AD%90&style=flat-square) [dotfiles](https://github.com/kdeldycke/dotfiles#readme) - macOS dotfiles for Python developers.
325
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/click-extra?label=%E2%AD%90&style=flat-square) [Click Extra](https://github.com/kdeldycke/click-extra#readme) - Extra colorization and configuration loading for Click.
326
+ - ![GitHub stars](https://img.shields.io/github/stars/themagicalmammal/wikibot?label=%E2%AD%90&style=flat-square) [Wiki bot](https://github.com/themagicalmammal/wikibot#readme) - A bot which provides features from Wikipedia like summary, title searches, location API etc.
327
+ - ![GitHub stars](https://img.shields.io/github/stars/kdeldycke/workflows?label=%E2%AD%90&style=flat-square) [workflows](https://github.com/kdeldycke/workflows#readme) - Itself. Eat your own dog-food.
328
+ - ![GitHub stars](https://img.shields.io/github/stars/themagicalmammal/stock-analyser?label=%E2%AD%90&style=flat-square) [Stock Analysis](https://github.com/themagicalmammal/stock-analyser#readme) - Simple to use interfaces for basic technical analysis of stocks.
329
+ - ![GitHub stars](https://img.shields.io/github/stars/themagicalmammal/genetictabler?label=%E2%AD%90&style=flat-square) [GeneticTabler](https://github.com/themagicalmammal/genetictabler#readme) - Time Table Scheduler using Genetic Algorithms.
330
+ - ![GitHub stars](https://img.shields.io/github/stars/themagicalmammal/excel-write?label=%E2%AD%90&style=flat-square) [Excel Write](https://github.com/themagicalmammal/excel-write#readme) - Optimised way to write in excel files.
331
+
332
+ Feel free to send a PR to add your project in this list if you are relying on these scripts.
333
+
334
+ ## Release process
335
+
336
+ All steps of the release process and version management are automated in the
337
+ [`changelog.yaml`](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/changelog.yaml)
338
+ and
339
+ [`release.yaml`](https://github.com/kdeldycke/workflows/blob/main/.github/workflows/release.yaml)
340
+ workflows.
341
+
342
+ All there's left to do is to:
343
+
344
+ - [check the open draft `prepare-release` PR](https://github.com/kdeldycke/workflows/pulls?q=is%3Apr+is%3Aopen+head%3Aprepare-release)
345
+ and its changes,
346
+ - click the `Ready for review` button,
347
+ - click the `Rebase and merge` button,
348
+ - let the workflows tag the release and set back the `main` branch into a
349
+ development state.
@@ -0,0 +1,12 @@
1
+ gha_utils/__init__.py,sha256=6AEgNC9EscwWoV76R5W60rdu4_uEoxB6SfkxTklfbOY,866
2
+ gha_utils/__main__.py,sha256=Dck9BjpLXmIRS83k0mghAMcYVYiMiFLltQdfRuMSP_Q,1703
3
+ gha_utils/changelog.py,sha256=oahY88A9FRV14f1JSFKIiYrN_TS7Jo3QlljXqJbeuaE,5892
4
+ gha_utils/cli.py,sha256=1sgNwDQS9vL5eTUjFXWQVYxtV6LTLRyo4kMnl4Joqg4,9175
5
+ gha_utils/mailmap.py,sha256=snSQBn1BDZ21783l4yCkQc3RLIxh5X6QCunFRkDj-24,6301
6
+ gha_utils/metadata.py,sha256=jREHEbkwDm4OU4Pw_Q0KMRMbOy93_8Gjnccq3DWHq3s,51540
7
+ gha_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ gha_utils-4.11.0.dist-info/METADATA,sha256=3NxJ8XB5w59-oHrBaVVK2SsYSzSfAs5Br5-8vgDtOJk,20106
9
+ gha_utils-4.11.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
10
+ gha_utils-4.11.0.dist-info/entry_points.txt,sha256=8bJOwQYf9ZqsLhBR6gUCzvwLNI9f8tiiBrJ3AR0EK4o,54
11
+ gha_utils-4.11.0.dist-info/top_level.txt,sha256=C94Blb61YkkyPBwCdM3J_JPDjWH0lnKa5nGZeZ5M6yE,10
12
+ gha_utils-4.11.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gha-utils = gha_utils.__main__:main
@@ -0,0 +1 @@
1
+ gha_utils