carpenter-ai 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,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: carpenter-ai
3
+ Version: 0.0.1
4
+ Summary: Agentic AI system that only acts through reviewable python code
5
+ Author: Ben Harack
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+
13
+ # Carpenter
14
+
15
+ Agentic AI system that only acts through reviewable python code.
16
+
17
+ This is a placeholder release. Full package coming soon.
@@ -0,0 +1,5 @@
1
+ # Carpenter
2
+
3
+ Agentic AI system that only acts through reviewable python code.
4
+
5
+ This is a placeholder release. Full package coming soon.
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "carpenter-ai"
7
+ version = "0.0.1"
8
+ description = "Agentic AI system that only acts through reviewable python code"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.11"
12
+ authors = [
13
+ { name = "Ben Harack" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ ]
20
+
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["src/carpenter"]
@@ -0,0 +1,2 @@
1
+ """Carpenter — agentic AI system that only acts through reviewable python code."""
2
+ __version__ = "0.0.1"