git-hook-max 0.1.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.
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: git-hook-max
3
+ Version: 0.1.0
4
+ Summary: Manage Git hooks across projects with a visual dashboard
5
+ Project-URL: Homepage, https://github.com/ericjoye/git-hook-manager-max
6
+ Project-URL: Issues, https://github.com/ericjoye/git-hook-manager-max/issues
7
+ Author-email: Eric JOYE <eric@ericjoye.com>
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: cli,developer-tools,git,hooks,pre-commit,pre-push
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Topic :: Software Development :: Version Control :: Git
18
+ Classifier: Topic :: Utilities
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/markdown
21
+
22
+ # git-hook-manager-max
23
+
24
+ A visual Git hook manager CLI. Create, edit, and manage git hooks without manual shell scripting.
25
+
26
+ ## Install
27
+
28
+ ```bash
29
+ pip install git-hook-manager-max
30
+ ```
31
+
32
+ ## Usage
33
+
34
+ ```bash
35
+ ghm list # List all hooks
36
+ ghm create pre-commit # Create a hook from template
37
+ ghm edit pre-commit # Edit a hook
38
+ ghm toggle pre-commit # Enable/disable a hook
39
+ ghm templates # List available templates
40
+ ghm init # Initialize hooks directory
41
+ ```
42
+
43
+ ## Requirements
44
+
45
+ Python 3.11+, stdlib only.
@@ -0,0 +1,5 @@
1
+ git_hook_max-0.1.0.dist-info/METADATA,sha256=8DuJBfqPnw40H4_HBy73YKS2ojDR-wyyeO6PHhRkXwE,1364
2
+ git_hook_max-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
3
+ git_hook_max-0.1.0.dist-info/entry_points.txt,sha256=j3tEmXrH4-lxr-uEeVZxq21jzX2nUayy8oLHyAhhPCI,61
4
+ git_hook_max-0.1.0.dist-info/licenses/LICENSE,sha256=9QoVdx1Hs4cVu5WKrlpxeixYOXEpFlooJJUWRWT4XK8,1066
5
+ git_hook_max-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ ghm = ghm:main
3
+ git-hook-manager = ghm:main
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Eric Joye
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.