drawbore 0.0.1.dev1__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,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: drawbore
3
+ Version: 0.0.1.dev1
4
+ Summary: Constrained, composable agent pipelines with safety guarantees as architecture. First public release in preparation.
5
+ License: MIT
6
+ Keywords: agents,ai,pipelines,safety
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Drawbore
15
+
16
+ > Composable agents that hold by construction.
17
+
18
+ Drawbore is a Python SDK for building constrained, composable agent pipelines
19
+ with safety guarantees baked in as architecture — for high-stakes, deterministic
20
+ workflows.
21
+
22
+ **This is a placeholder release reserving the package name. The first usable
23
+ release is in preparation.**
24
+
25
+ ## License
26
+
27
+ MIT
@@ -0,0 +1,14 @@
1
+ # Drawbore
2
+
3
+ > Composable agents that hold by construction.
4
+
5
+ Drawbore is a Python SDK for building constrained, composable agent pipelines
6
+ with safety guarantees baked in as architecture — for high-stakes, deterministic
7
+ workflows.
8
+
9
+ **This is a placeholder release reserving the package name. The first usable
10
+ release is in preparation.**
11
+
12
+ ## License
13
+
14
+ MIT
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "drawbore"
7
+ version = "0.0.1.dev1"
8
+ description = "Constrained, composable agent pipelines with safety guarantees as architecture. First public release in preparation."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { text = "MIT" }
12
+ keywords = ["agents", "ai", "safety", "pipelines"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.11",
18
+ ]
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["src/drawbore"]
@@ -0,0 +1,7 @@
1
+ """Drawbore — composable agents that hold by construction.
2
+
3
+ This is a placeholder release reserving the package name; the first usable
4
+ release is in preparation.
5
+ """
6
+
7
+ __version__ = "0.0.1.dev1"