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 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,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"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from treemapper import (
2
+ build_diff_context,
3
+ to_json,
4
+ to_markdown,
5
+ to_text,
6
+ to_yaml,
7
+ )
8
+
9
+ __all__ = [
10
+ "build_diff_context",
11
+ "to_json",
12
+ "to_markdown",
13
+ "to_text",
14
+ "to_yaml",
15
+ ]
16
+ __version__ = "0.1.0"
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/diffctx/__init__.py
4
+ src/diffctx.egg-info/PKG-INFO
5
+ src/diffctx.egg-info/SOURCES.txt
6
+ src/diffctx.egg-info/dependency_links.txt
7
+ src/diffctx.egg-info/requires.txt
8
+ src/diffctx.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ treemapper>=1.6.1
@@ -0,0 +1 @@
1
+ diffctx