swt3 1.0.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.
- swt3-1.0.0/PKG-INFO +28 -0
- swt3-1.0.0/README.md +15 -0
- swt3-1.0.0/pyproject.toml +18 -0
- swt3-1.0.0/setup.cfg +4 -0
- swt3-1.0.0/swt3/__init__.py +15 -0
- swt3-1.0.0/swt3.egg-info/PKG-INFO +28 -0
- swt3-1.0.0/swt3.egg-info/SOURCES.txt +7 -0
- swt3-1.0.0/swt3.egg-info/dependency_links.txt +1 -0
- swt3-1.0.0/swt3.egg-info/top_level.txt +1 -0
swt3-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: swt3
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: SWT3 Protocol namespace reservation. Install swt3-ai for the AI Witness SDK.
|
|
5
|
+
Author-email: Tenable Nova LLC <engineering@tenovaai.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: AI Witness SDK, https://pypi.org/project/swt3-ai/
|
|
8
|
+
Project-URL: Documentation, https://sovereign.tenova.io/docs/
|
|
9
|
+
Project-URL: Homepage, https://tenova.io
|
|
10
|
+
Keywords: swt3,witness,ai,compliance,attestation
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# SWT3
|
|
15
|
+
|
|
16
|
+
This is a namespace reservation for the SWT3 protocol.
|
|
17
|
+
|
|
18
|
+
**Looking for the AI Witness SDK?**
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install swt3-ai
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- SDK Documentation: https://sovereign.tenova.io/docs/
|
|
25
|
+
- Protocol Registry: https://sovereign.tenova.io/registry/
|
|
26
|
+
- Anchor Verifier: https://sovereign.tenova.io/verify/
|
|
27
|
+
|
|
28
|
+
The SWT3 protocol is maintained by [Tenable Nova LLC](https://tenova.io). Patent pending.
|
swt3-1.0.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# SWT3
|
|
2
|
+
|
|
3
|
+
This is a namespace reservation for the SWT3 protocol.
|
|
4
|
+
|
|
5
|
+
**Looking for the AI Witness SDK?**
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install swt3-ai
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
- SDK Documentation: https://sovereign.tenova.io/docs/
|
|
12
|
+
- Protocol Registry: https://sovereign.tenova.io/registry/
|
|
13
|
+
- Anchor Verifier: https://sovereign.tenova.io/verify/
|
|
14
|
+
|
|
15
|
+
The SWT3 protocol is maintained by [Tenable Nova LLC](https://tenova.io). Patent pending.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "swt3"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "SWT3 Protocol namespace reservation. Install swt3-ai for the AI Witness SDK."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
|
+
authors = [{name = "Tenable Nova LLC", email = "engineering@tenovaai.com"}]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
keywords = ["swt3", "witness", "ai", "compliance", "attestation"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
"AI Witness SDK" = "https://pypi.org/project/swt3-ai/"
|
|
17
|
+
"Documentation" = "https://sovereign.tenova.io/docs/"
|
|
18
|
+
"Homepage" = "https://tenova.io"
|
swt3-1.0.0/setup.cfg
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
SWT3 Protocol namespace reservation.
|
|
3
|
+
|
|
4
|
+
Looking for the AI Witness SDK? Install swt3-ai:
|
|
5
|
+
|
|
6
|
+
pip install swt3-ai
|
|
7
|
+
|
|
8
|
+
Docs: https://sovereign.tenova.io/docs/
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
def __getattr__(name):
|
|
12
|
+
raise ImportError(
|
|
13
|
+
"This is a namespace reservation. "
|
|
14
|
+
"Install the AI Witness SDK: pip install swt3-ai"
|
|
15
|
+
)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: swt3
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: SWT3 Protocol namespace reservation. Install swt3-ai for the AI Witness SDK.
|
|
5
|
+
Author-email: Tenable Nova LLC <engineering@tenovaai.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: AI Witness SDK, https://pypi.org/project/swt3-ai/
|
|
8
|
+
Project-URL: Documentation, https://sovereign.tenova.io/docs/
|
|
9
|
+
Project-URL: Homepage, https://tenova.io
|
|
10
|
+
Keywords: swt3,witness,ai,compliance,attestation
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# SWT3
|
|
15
|
+
|
|
16
|
+
This is a namespace reservation for the SWT3 protocol.
|
|
17
|
+
|
|
18
|
+
**Looking for the AI Witness SDK?**
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install swt3-ai
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- SDK Documentation: https://sovereign.tenova.io/docs/
|
|
25
|
+
- Protocol Registry: https://sovereign.tenova.io/registry/
|
|
26
|
+
- Anchor Verifier: https://sovereign.tenova.io/verify/
|
|
27
|
+
|
|
28
|
+
The SWT3 protocol is maintained by [Tenable Nova LLC](https://tenova.io). Patent pending.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
swt3
|