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 +23 -0
- anusara-0.1.0/README.md +11 -0
- anusara-0.1.0/anusara/__init__.py +3 -0
- anusara-0.1.0/anusara.egg-info/PKG-INFO +23 -0
- anusara-0.1.0/anusara.egg-info/SOURCES.txt +7 -0
- anusara-0.1.0/anusara.egg-info/dependency_links.txt +1 -0
- anusara-0.1.0/anusara.egg-info/top_level.txt +1 -0
- anusara-0.1.0/pyproject.toml +17 -0
- anusara-0.1.0/setup.cfg +4 -0
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.
|
anusara-0.1.0/README.md
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 @@
|
|
|
1
|
+
|
|
@@ -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
|
+
]
|
anusara-0.1.0/setup.cfg
ADDED