getmetatron 0.0.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.
@@ -0,0 +1,10 @@
1
+ # Python build artifacts
2
+ dist/
3
+ build/
4
+ *.egg-info/
5
+ __pycache__/
6
+ *.py[cod]
7
+
8
+ # Virtual environments
9
+ .venv/
10
+ venv/
@@ -0,0 +1 @@
1
+ Copyright (c) 2026. All rights reserved.
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: getmetatron
3
+ Version: 0.0.1
4
+ Summary: Metatron — captured engineering decisions as priors for coding agents, served over MCP. Early scaffold; full release coming soon.
5
+ License: Proprietary
6
+ License-File: LICENSE
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: License :: Other/Proprietary License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Requires-Python: >=3.12
12
+ Description-Content-Type: text/markdown
13
+
14
+ # getmetatron
15
+
16
+ Metatron captures engineering decisions and serves them as priors for coding agents over [MCP](https://modelcontextprotocol.io).
17
+
18
+ This release is a name reservation and early scaffold — the full package is coming soon. It currently contains no functional code.
19
+
20
+ All rights reserved.
@@ -0,0 +1,7 @@
1
+ # getmetatron
2
+
3
+ Metatron captures engineering decisions and serves them as priors for coding agents over [MCP](https://modelcontextprotocol.io).
4
+
5
+ This release is a name reservation and early scaffold — the full package is coming soon. It currently contains no functional code.
6
+
7
+ All rights reserved.
@@ -0,0 +1,3 @@
1
+ """Metatron — captured engineering decisions as priors for coding agents, served over MCP."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "getmetatron"
7
+ version = "0.0.1"
8
+ description = "Metatron — captured engineering decisions as priors for coding agents, served over MCP. Early scaffold; full release coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = { text = "Proprietary" }
12
+ classifiers = [
13
+ "License :: Other/Proprietary License",
14
+ "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.12",
16
+ "Development Status :: 1 - Planning",
17
+ ]
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["getmetatron"]