diffctx 0.1.0__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.
- diffctx-0.1.0/PKG-INFO +34 -0
- diffctx-0.1.0/README.md +16 -0
- diffctx-0.1.0/pyproject.toml +27 -0
- diffctx-0.1.0/setup.cfg +4 -0
- diffctx-0.1.0/src/diffctx/__init__.py +16 -0
- diffctx-0.1.0/src/diffctx.egg-info/PKG-INFO +34 -0
- diffctx-0.1.0/src/diffctx.egg-info/SOURCES.txt +8 -0
- diffctx-0.1.0/src/diffctx.egg-info/dependency_links.txt +1 -0
- diffctx-0.1.0/src/diffctx.egg-info/requires.txt +1 -0
- diffctx-0.1.0/src/diffctx.egg-info/top_level.txt +1 -0
diffctx-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: diffctx
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Redirect alias for the treemapper package — smart git diff context for LLMs.
|
|
5
|
+
Author-email: Nikolay Eremeev <nikolay.eremeev@outlook.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/nikolay-e/diffctx
|
|
8
|
+
Project-URL: Repository, https://github.com/nikolay-e/diffctx
|
|
9
|
+
Project-URL: Issues, https://github.com/nikolay-e/diffctx/issues
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Topic :: Software Development
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: treemapper>=1.6.1
|
|
18
|
+
|
|
19
|
+
# diffctx
|
|
20
|
+
|
|
21
|
+
Alias namespace for the **[`treemapper`](https://pypi.org/project/treemapper/)**
|
|
22
|
+
package. `pip install diffctx` installs `treemapper>=1.7` and re-exports
|
|
23
|
+
its diff-context API so that `import diffctx` works.
|
|
24
|
+
|
|
25
|
+
Both names point to the same project:
|
|
26
|
+
<https://github.com/nikolay-e/diffctx>.
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
import diffctx
|
|
30
|
+
ctx = diffctx.build_diff_context(".", "HEAD~1..HEAD")
|
|
31
|
+
print(diffctx.to_yaml(ctx))
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The canonical CLI is `treemapper` (installed via the dependency).
|
diffctx-0.1.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# diffctx
|
|
2
|
+
|
|
3
|
+
Alias namespace for the **[`treemapper`](https://pypi.org/project/treemapper/)**
|
|
4
|
+
package. `pip install diffctx` installs `treemapper>=1.7` and re-exports
|
|
5
|
+
its diff-context API so that `import diffctx` works.
|
|
6
|
+
|
|
7
|
+
Both names point to the same project:
|
|
8
|
+
<https://github.com/nikolay-e/diffctx>.
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
import diffctx
|
|
12
|
+
ctx = diffctx.build_diff_context(".", "HEAD~1..HEAD")
|
|
13
|
+
print(diffctx.to_yaml(ctx))
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
The canonical CLI is `treemapper` (installed via the dependency).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "diffctx"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Redirect alias for the treemapper package — smart git diff context for LLMs."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
authors = [{ name = "Nikolay Eremeev", email = "nikolay.eremeev@outlook.com" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 5 - Production/Stable",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
+
"Topic :: Software Development",
|
|
19
|
+
]
|
|
20
|
+
dependencies = ["treemapper>=1.6.1"]
|
|
21
|
+
|
|
22
|
+
urls.Homepage = "https://github.com/nikolay-e/diffctx"
|
|
23
|
+
urls.Repository = "https://github.com/nikolay-e/diffctx"
|
|
24
|
+
urls.Issues = "https://github.com/nikolay-e/diffctx/issues"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["src"]
|
diffctx-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: diffctx
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Redirect alias for the treemapper package — smart git diff context for LLMs.
|
|
5
|
+
Author-email: Nikolay Eremeev <nikolay.eremeev@outlook.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/nikolay-e/diffctx
|
|
8
|
+
Project-URL: Repository, https://github.com/nikolay-e/diffctx
|
|
9
|
+
Project-URL: Issues, https://github.com/nikolay-e/diffctx/issues
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Topic :: Software Development
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: treemapper>=1.6.1
|
|
18
|
+
|
|
19
|
+
# diffctx
|
|
20
|
+
|
|
21
|
+
Alias namespace for the **[`treemapper`](https://pypi.org/project/treemapper/)**
|
|
22
|
+
package. `pip install diffctx` installs `treemapper>=1.7` and re-exports
|
|
23
|
+
its diff-context API so that `import diffctx` works.
|
|
24
|
+
|
|
25
|
+
Both names point to the same project:
|
|
26
|
+
<https://github.com/nikolay-e/diffctx>.
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
import diffctx
|
|
30
|
+
ctx = diffctx.build_diff_context(".", "HEAD~1..HEAD")
|
|
31
|
+
print(diffctx.to_yaml(ctx))
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The canonical CLI is `treemapper` (installed via the dependency).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
treemapper>=1.6.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
diffctx
|