git-safepoint 0.0.1__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,9 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """git-safepoint: work-tree snapshot safety net.
4
+
5
+ A single capture engine (git plumbing + shadow refs) plus thin trigger
6
+ adapters (Claude Code PreToolUse hook, zsh preexec). Standard library only,
7
+ Python 3.9 compatible.
8
+ """
9
+ __version__ = "0.0.1"
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """Allow ``python3 -m git_safepoint ...``."""
4
+ import sys
5
+
6
+ from .cli import main
7
+
8
+ if __name__ == "__main__":
9
+ sys.exit(main())