bounded-loops 0.0.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.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: bounded-loops
3
+ Version: 0.0.0
4
+ Summary: Runnable, bounded AI-agent loops. Name reserved by Qualixar — release coming soon.
5
+ Author-email: Qualixar <varun.pratap.bhardwaj@gmail.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://qualixar.com
8
+ Keywords: ai,agents,agent-loops,reliability,qualixar
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.9
13
+ Description-Content-Type: text/markdown
14
+
15
+ # bounded-loops
16
+
17
+ Runnable, bounded AI-agent loops — by [Qualixar](https://qualixar.com).
18
+
19
+ **This name is reserved. The full release is coming soon.**
20
+
21
+ A production-grade library of runnable AI-agent loops: a spec, an independent gate,
22
+ the safety bounds, and a maturity ladder — the same loop across your tools.
@@ -0,0 +1,8 @@
1
+ # bounded-loops
2
+
3
+ Runnable, bounded AI-agent loops — by [Qualixar](https://qualixar.com).
4
+
5
+ **This name is reserved. The full release is coming soon.**
6
+
7
+ A production-grade library of runnable AI-agent loops: a spec, an independent gate,
8
+ the safety bounds, and a maturity ladder — the same loop across your tools.
@@ -0,0 +1,6 @@
1
+ """bounded-loops — runnable, bounded AI-agent loops. Name reserved by Qualixar.
2
+
3
+ The full release is coming soon. See https://qualixar.com
4
+ """
5
+
6
+ __version__ = "0.0.0"
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: bounded-loops
3
+ Version: 0.0.0
4
+ Summary: Runnable, bounded AI-agent loops. Name reserved by Qualixar — release coming soon.
5
+ Author-email: Qualixar <varun.pratap.bhardwaj@gmail.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://qualixar.com
8
+ Keywords: ai,agents,agent-loops,reliability,qualixar
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.9
13
+ Description-Content-Type: text/markdown
14
+
15
+ # bounded-loops
16
+
17
+ Runnable, bounded AI-agent loops — by [Qualixar](https://qualixar.com).
18
+
19
+ **This name is reserved. The full release is coming soon.**
20
+
21
+ A production-grade library of runnable AI-agent loops: a spec, an independent gate,
22
+ the safety bounds, and a maturity ladder — the same loop across your tools.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ bounded_loops/__init__.py
4
+ bounded_loops.egg-info/PKG-INFO
5
+ bounded_loops.egg-info/SOURCES.txt
6
+ bounded_loops.egg-info/dependency_links.txt
7
+ bounded_loops.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ bounded_loops
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "bounded-loops"
7
+ version = "0.0.0"
8
+ description = "Runnable, bounded AI-agent loops. Name reserved by Qualixar — release coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "Qualixar", email = "varun.pratap.bhardwaj@gmail.com" }]
13
+ keywords = ["ai", "agents", "agent-loops", "reliability", "qualixar"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "License :: OSI Approved :: Apache Software License",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://qualixar.com"
22
+
23
+ [tool.setuptools]
24
+ packages = ["bounded_loops"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+