gitpulse-tui 1.2.6__tar.gz → 1.2.8__tar.gz
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_tui-1.2.6/gitpulse_tui.egg-info → gitpulse_tui-1.2.8}/PKG-INFO +1 -1
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/README.md +14 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/utils.py +1 -1
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8/gitpulse_tui.egg-info}/PKG-INFO +1 -1
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/pyproject.toml +1 -1
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/LICENSE +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/__init__.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/__main__.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/config.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/digest.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/git_ops.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/main.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/parallel.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/scanner.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/stale.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/__init__.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/bulk_results.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/command_palette.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/digest_screen.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/fleet_status.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/sidebar.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/stale_screen.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/styles.tcss +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/ui/tabs.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse/watcher.py +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse_tui.egg-info/SOURCES.txt +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse_tui.egg-info/dependency_links.txt +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse_tui.egg-info/entry_points.txt +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse_tui.egg-info/requires.txt +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/gitpulse_tui.egg-info/top_level.txt +0 -0
- {gitpulse_tui-1.2.6 → gitpulse_tui-1.2.8}/setup.cfg +0 -0
|
@@ -23,6 +23,20 @@ pip install gitpulse-tui
|
|
|
23
23
|
```
|
|
24
24
|
*(We recommend using `pipx install gitpulse-tui` to install it in an isolated environment)*
|
|
25
25
|
|
|
26
|
+
### Install via npm
|
|
27
|
+
|
|
28
|
+
GitPulse is also available as an npm package. The npm package is a thin
|
|
29
|
+
launcher — it bootstraps an isolated Python environment and runs the same
|
|
30
|
+
Python application (no logic is duplicated):
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install -g gitpulse-tui
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The CLI command is still `gitpulse` once installed.
|
|
37
|
+
This requires Python 3.10+ on your system; the wrapper handles the rest.
|
|
38
|
+
See [npm/README.md](./npm/README.md) for details and troubleshooting.
|
|
39
|
+
|
|
26
40
|
### Install from source
|
|
27
41
|
|
|
28
42
|
If you prefer to install from source or want to contribute to the project:
|
|
@@ -14,7 +14,7 @@ from datetime import datetime, timezone, timedelta
|
|
|
14
14
|
# Package version — single source of truth
|
|
15
15
|
# ---------------------------------------------------------------------------
|
|
16
16
|
|
|
17
|
-
__version__ = "1.2.
|
|
17
|
+
__version__ = "1.2.8"
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
# ---------------------------------------------------------------------------
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gitpulse-tui"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.8"
|
|
8
8
|
description = "Git Repo Dashboard TUI — live status, commits, diffs, and branches in your terminal"
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
10
|
dependencies = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|