gitpulse-tui 1.0.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.
gitpulse/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ # gitpulse package
2
+ from gitpulse.utils import __version__
3
+
4
+ __all__ = ["__version__"]
gitpulse/__main__.py ADDED
@@ -0,0 +1,3 @@
1
+ """Allows running `python -m gitpulse` from anywhere."""
2
+ from gitpulse.main import main
3
+ main()