draftwatch 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.
draftwatch/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """draftwatch — review an AI agent's edits to your writing as a real git word-diff.
2
+
3
+ The diff is produced by git on your machine, never by the AI vendor: independent
4
+ verification of what the agent changed, with hunk-by-hunk keep/revert and a
5
+ commit loop.
6
+ """
7
+
8
+ from .app import * # noqa: F401,F403 (re-export the engine for tests/embedding)
9
+ from .app import main, __version__ # noqa: F401 (version lives in app.py, single source)
draftwatch/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """`python -m draftwatch` entry point."""
2
+
3
+ from .app import main
4
+
5
+ if __name__ == "__main__":
6
+ main()