clampd 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.
- clampd-0.0.1/PKG-INFO +11 -0
- clampd-0.0.1/README.md +1 -0
- clampd-0.0.1/clampd/__init__.py +1 -0
- clampd-0.0.1/clampd.egg-info/PKG-INFO +11 -0
- clampd-0.0.1/clampd.egg-info/SOURCES.txt +7 -0
- clampd-0.0.1/clampd.egg-info/dependency_links.txt +1 -0
- clampd-0.0.1/clampd.egg-info/top_level.txt +1 -0
- clampd-0.0.1/pyproject.toml +12 -0
- clampd-0.0.1/setup.cfg +4 -0
clampd-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clampd
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Runtime security proxy for AI agents
|
|
5
|
+
Author-email: Clampd <mehul.soni89@gmail.com>
|
|
6
|
+
License: BUSL-1.1
|
|
7
|
+
Project-URL: Homepage, https://clampd.dev
|
|
8
|
+
Project-URL: Repository, https://github.com/clampd/clampd
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Clampd - Runtime security for AI agents
|
clampd-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Clampd - Runtime security for AI agents
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Clampd - Runtime security for AI agents"""
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clampd
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Runtime security proxy for AI agents
|
|
5
|
+
Author-email: Clampd <mehul.soni89@gmail.com>
|
|
6
|
+
License: BUSL-1.1
|
|
7
|
+
Project-URL: Homepage, https://clampd.dev
|
|
8
|
+
Project-URL: Repository, https://github.com/clampd/clampd
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Clampd - Runtime security for AI agents
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
clampd
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "clampd"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Runtime security proxy for AI agents"
|
|
9
|
+
license = {text = "BUSL-1.1"}
|
|
10
|
+
authors = [{name = "Clampd", email = "mehul.soni89@gmail.com"}]
|
|
11
|
+
urls = {Homepage = "https://clampd.dev", Repository = "https://github.com/clampd/clampd"}
|
|
12
|
+
readme = "README.md"
|
clampd-0.0.1/setup.cfg
ADDED