gitex 0.2.19__tar.gz → 0.3.1__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.
- {gitex-0.2.19 → gitex-0.3.1}/PKG-INFO +12 -1
- {gitex-0.2.19 → gitex-0.3.1}/README.md +11 -0
- gitex-0.3.1/gitex/__init__.py +1 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex.egg-info/PKG-INFO +12 -1
- {gitex-0.2.19 → gitex-0.3.1}/gitex.egg-info/top_level.txt +1 -0
- gitex-0.2.19/gitex/__init__.py +0 -1
- {gitex-0.2.19 → gitex-0.3.1}/gitex/dependency_mapper.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/docstring_extractor.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/main.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/models.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/picker/__init__.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/picker/base.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/picker/questionary.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/picker/textuals.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/renderer.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex/utils.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex.egg-info/SOURCES.txt +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex.egg-info/dependency_links.txt +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex.egg-info/entry_points.txt +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/gitex.egg-info/requires.txt +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/pyproject.toml +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/setup.cfg +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/tests/test_cli.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/tests/test_fences.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/tests/test_render.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/tests/test_skip_binaries.py +0 -0
- {gitex-0.2.19 → gitex-0.3.1}/tests/test_textual.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitex
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Terminal tool to prep codebases for LLMs
|
|
5
5
|
Author-email: zozaai <info@zozaai.com>
|
|
6
6
|
License: MIT
|
|
@@ -50,6 +50,17 @@ Install the package via pip:
|
|
|
50
50
|
pip install gitex
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
## 🐳 Docker install (no Python/pip)
|
|
54
|
+
|
|
55
|
+
If you only have Docker and want `gitex` as a normal command:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
git clone https://github.com/zozaai/gitex
|
|
59
|
+
cd gitex
|
|
60
|
+
./scripts/install-gitex-docker.sh
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
|
|
53
64
|
## 📋 Clipboard support (Linux)
|
|
54
65
|
|
|
55
66
|
#### Ubuntu/Debian
|
|
@@ -31,6 +31,17 @@ Install the package via pip:
|
|
|
31
31
|
pip install gitex
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
## 🐳 Docker install (no Python/pip)
|
|
35
|
+
|
|
36
|
+
If you only have Docker and want `gitex` as a normal command:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
git clone https://github.com/zozaai/gitex
|
|
40
|
+
cd gitex
|
|
41
|
+
./scripts/install-gitex-docker.sh
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
|
|
34
45
|
## 📋 Clipboard support (Linux)
|
|
35
46
|
|
|
36
47
|
#### Ubuntu/Debian
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitex
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Terminal tool to prep codebases for LLMs
|
|
5
5
|
Author-email: zozaai <info@zozaai.com>
|
|
6
6
|
License: MIT
|
|
@@ -50,6 +50,17 @@ Install the package via pip:
|
|
|
50
50
|
pip install gitex
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
## 🐳 Docker install (no Python/pip)
|
|
54
|
+
|
|
55
|
+
If you only have Docker and want `gitex` as a normal command:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
git clone https://github.com/zozaai/gitex
|
|
59
|
+
cd gitex
|
|
60
|
+
./scripts/install-gitex-docker.sh
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
|
|
53
64
|
## 📋 Clipboard support (Linux)
|
|
54
65
|
|
|
55
66
|
#### Ubuntu/Debian
|
gitex-0.2.19/gitex/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.19"
|
|
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
|