grannom 0.0.0rc0__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.
- grannom-0.0.0rc0/PKG-INFO +13 -0
- grannom-0.0.0rc0/README.md +5 -0
- grannom-0.0.0rc0/grannom.egg-info/PKG-INFO +13 -0
- grannom-0.0.0rc0/grannom.egg-info/SOURCES.txt +6 -0
- grannom-0.0.0rc0/grannom.egg-info/dependency_links.txt +1 -0
- grannom-0.0.0rc0/grannom.egg-info/top_level.txt +1 -0
- grannom-0.0.0rc0/pyproject.toml +14 -0
- grannom-0.0.0rc0/setup.cfg +4 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: grannom
|
|
3
|
+
Version: 0.0.0rc0
|
|
4
|
+
Summary: Name reservation for Grannom - formerly caddis, a conscience for coding agents. Product lands with the rename wave.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# grannom (PyPI name reservation)
|
|
10
|
+
|
|
11
|
+
**Reserved.** Holds the PyPI name for Grannom — the coding-agent conscience
|
|
12
|
+
formerly `caddis` (github.com/ltanon-ai/caddis). No code ships here; the
|
|
13
|
+
product lands with the rename wave. A grannom *is* a caddisfly.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: grannom
|
|
3
|
+
Version: 0.0.0rc0
|
|
4
|
+
Summary: Name reservation for Grannom - formerly caddis, a conscience for coding agents. Product lands with the rename wave.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# grannom (PyPI name reservation)
|
|
10
|
+
|
|
11
|
+
**Reserved.** Holds the PyPI name for Grannom — the coding-agent conscience
|
|
12
|
+
formerly `caddis` (github.com/ltanon-ai/caddis). No code ships here; the
|
|
13
|
+
product lands with the rename wave. A grannom *is* a caddisfly.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "grannom"
|
|
7
|
+
version = "0.0.0rc0"
|
|
8
|
+
description = "Name reservation for Grannom - formerly caddis, a conscience for coding agents. Product lands with the rename wave."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = {text = "Apache-2.0"}
|
|
12
|
+
|
|
13
|
+
[tool.setuptools]
|
|
14
|
+
packages = []
|