git-a2a 1.0.0__py3-none-win_arm64.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.
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: git-a2a
3
+ Version: 1.0.0
4
+ Summary: Import git modules together with their owning agents
5
+ License-Expression: MIT
6
+ Requires-Python: >=3.9
7
+
@@ -0,0 +1,7 @@
1
+ git_a2a.py,sha256=jKU84veDqjFSSDbtZVGiTJ5fw-_iaiUGGNnOFLbACu8,330
2
+ git_a2a_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ git_a2a_bin/git-a2a.exe,sha256=LFtYvJcV2nzjBugD_-pilgQ0mebg8nq9nmDaX4b34UU,7162368
4
+ git_a2a-1.0.0.dist-info/METADATA,sha256=ja9hEfGTlB8Hv9rielPjaoB1NM8GqPRk2funv_21ROM,161
5
+ git_a2a-1.0.0.dist-info/WHEEL,sha256=fncUHBOV6CYV6d9otV3xPP0hbN1GBOf2CdhjuqExoTo,85
6
+ git_a2a-1.0.0.dist-info/entry_points.txt,sha256=ibWoPUd6hOrBiJFRYovv-zTEwDVXcWdlt8YJAzcYkS8,41
7
+ git_a2a-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: git-a2a
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_arm64
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ git-a2a = git_a2a:main
git_a2a.py ADDED
@@ -0,0 +1,11 @@
1
+ from importlib.resources import files
2
+ import os
3
+ import subprocess
4
+ import sys
5
+
6
+ def main() -> None:
7
+ binary = files("git_a2a_bin").joinpath("git-a2a.exe" if os.name == "nt" else "git-a2a")
8
+ argv = [str(binary), *sys.argv[1:]]
9
+ if os.name != "nt":
10
+ os.execv(argv[0], argv)
11
+ raise SystemExit(subprocess.call(argv))
File without changes
Binary file