munio 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.
- munio-0.0.1/PKG-INFO +12 -0
- munio-0.0.1/pyproject.toml +20 -0
- munio-0.0.1/src/munio/__init__.py +1 -0
munio-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: munio
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Fortify your AI agents — pre-execution verification for AI agent tool calls
|
|
5
|
+
Project-URL: Homepage, https://munio.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/munio-dev/munio
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Keywords: agents,ai,safety,security,verification
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Topic :: Security
|
|
11
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
12
|
+
Requires-Python: >=3.10
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "munio"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Fortify your AI agents — pre-execution verification for AI agent tool calls"
|
|
9
|
+
license = "Apache-2.0"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
keywords = ["ai", "agents", "security", "verification", "safety"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
14
|
+
"Topic :: Security",
|
|
15
|
+
"Topic :: Software Development :: Libraries",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://munio.dev"
|
|
20
|
+
Repository = "https://github.com/munio-dev/munio"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|