trustnotch 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.
- trustnotch-0.0.1/PKG-INFO +26 -0
- trustnotch-0.0.1/README.md +5 -0
- trustnotch-0.0.1/pyproject.toml +31 -0
- trustnotch-0.0.1/setup.cfg +4 -0
- trustnotch-0.0.1/src/trustnotch/__init__.py +1 -0
- trustnotch-0.0.1/src/trustnotch.egg-info/PKG-INFO +26 -0
- trustnotch-0.0.1/src/trustnotch.egg-info/SOURCES.txt +7 -0
- trustnotch-0.0.1/src/trustnotch.egg-info/dependency_links.txt +1 -0
- trustnotch-0.0.1/src/trustnotch.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trustnotch
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Tamper-evident audit logs for AI agents (placeholder).
|
|
5
|
+
Author-email: Sandro Chekalov <sandro@trustnotch.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://trustnotch.com
|
|
8
|
+
Project-URL: Repository, https://github.com/trustnotch/trustnotch
|
|
9
|
+
Keywords: audit,logging,ai-agents,mcp,compliance,eidas
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
|
+
Requires-Python: >=3.9
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
Tamper-evident audit logs for AI agents. EU-grade cryptographic proof of agent actions.
|
|
23
|
+
|
|
24
|
+
This is a placeholder release. The full package will be published soon.
|
|
25
|
+
|
|
26
|
+
For updates, see https://trustnotch.com
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "trustnotch"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Tamper-evident audit logs for AI agents (placeholder)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Sandro Chekalov", email = "sandro@trustnotch.com" }]
|
|
13
|
+
keywords = ["audit", "logging", "ai-agents", "mcp", "compliance", "eidas"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.9",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://trustnotch.com"
|
|
28
|
+
Repository = "https://github.com/trustnotch/trustnotch"
|
|
29
|
+
|
|
30
|
+
[tool.setuptools.packages.find]
|
|
31
|
+
where = ["src"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trustnotch
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Tamper-evident audit logs for AI agents (placeholder).
|
|
5
|
+
Author-email: Sandro Chekalov <sandro@trustnotch.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://trustnotch.com
|
|
8
|
+
Project-URL: Repository, https://github.com/trustnotch/trustnotch
|
|
9
|
+
Keywords: audit,logging,ai-agents,mcp,compliance,eidas
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
|
+
Requires-Python: >=3.9
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
Tamper-evident audit logs for AI agents. EU-grade cryptographic proof of agent actions.
|
|
23
|
+
|
|
24
|
+
This is a placeholder release. The full package will be published soon.
|
|
25
|
+
|
|
26
|
+
For updates, see https://trustnotch.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
trustnotch
|