actra 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.
- actra-0.0.1/PKG-INFO +20 -0
- actra-0.0.1/README.md +9 -0
- actra-0.0.1/pyproject.toml +16 -0
- actra-0.0.1/setup.cfg +4 -0
- actra-0.0.1/src/actra/__init__.py +7 -0
- actra-0.0.1/src/actra.egg-info/PKG-INFO +20 -0
- actra-0.0.1/src/actra.egg-info/SOURCES.txt +7 -0
- actra-0.0.1/src/actra.egg-info/dependency_links.txt +1 -0
- actra-0.0.1/src/actra.egg-info/top_level.txt +1 -0
actra-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: actra
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Actra – deterministic control for automated system actions.
|
|
5
|
+
Author: Amit Saxena
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Actra
|
|
13
|
+
|
|
14
|
+
Actra is a deterministic admission control engine for automated
|
|
15
|
+
and agentic systems.
|
|
16
|
+
|
|
17
|
+
This package name is reserved for the Actra project.
|
|
18
|
+
|
|
19
|
+
Project website: https://actra.dev
|
|
20
|
+
GitHub: https://github.com/getactra
|
actra-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "actra"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Actra – deterministic control for automated system actions."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [{ name="Amit Saxena" }]
|
|
12
|
+
license = { text = "Apache-2.0" }
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
]
|
actra-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: actra
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Actra – deterministic control for automated system actions.
|
|
5
|
+
Author: Amit Saxena
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Actra
|
|
13
|
+
|
|
14
|
+
Actra is a deterministic admission control engine for automated
|
|
15
|
+
and agentic systems.
|
|
16
|
+
|
|
17
|
+
This package name is reserved for the Actra project.
|
|
18
|
+
|
|
19
|
+
Project website: https://actra.dev
|
|
20
|
+
GitHub: https://github.com/getactra
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
actra
|