anusara 0.1.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.
anusara-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: anusara
3
+ Version: 0.1.0
4
+ Summary: Deterministic execution engine with traceable, immutable history.
5
+ Author: Nataraj Narayana
6
+ License: MIT
7
+ Keywords: execution,deterministic,trace,workflow,observability
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # Anusara
14
+
15
+ Deterministic execution engine with traceable, immutable history.
16
+
17
+ ## Status
18
+ 🚧 Initial placeholder release to reserve package name.
19
+
20
+ Full implementation coming soon.
21
+
22
+ ## Vision
23
+ Follow execution. Exactly as it happened.
@@ -0,0 +1,11 @@
1
+ # Anusara
2
+
3
+ Deterministic execution engine with traceable, immutable history.
4
+
5
+ ## Status
6
+ 🚧 Initial placeholder release to reserve package name.
7
+
8
+ Full implementation coming soon.
9
+
10
+ ## Vision
11
+ Follow execution. Exactly as it happened.
@@ -0,0 +1,3 @@
1
+ __all__ = []
2
+ __version__ = "0.1.0"
3
+
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: anusara
3
+ Version: 0.1.0
4
+ Summary: Deterministic execution engine with traceable, immutable history.
5
+ Author: Nataraj Narayana
6
+ License: MIT
7
+ Keywords: execution,deterministic,trace,workflow,observability
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # Anusara
14
+
15
+ Deterministic execution engine with traceable, immutable history.
16
+
17
+ ## Status
18
+ 🚧 Initial placeholder release to reserve package name.
19
+
20
+ Full implementation coming soon.
21
+
22
+ ## Vision
23
+ Follow execution. Exactly as it happened.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ anusara/__init__.py
4
+ anusara.egg-info/PKG-INFO
5
+ anusara.egg-info/SOURCES.txt
6
+ anusara.egg-info/dependency_links.txt
7
+ anusara.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ anusara
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "anusara"
7
+ version = "0.1.0"
8
+ description = "Deterministic execution engine with traceable, immutable history."
9
+ authors = [{ name = "Nataraj Narayana" }]
10
+ readme = "README.md"
11
+ requires-python = ">=3.8"
12
+ license = { text = "MIT" }
13
+ keywords = ["execution", "deterministic", "trace", "workflow", "observability"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Operating System :: OS Independent"
17
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+