secretvm-verify 0.1.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.
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: secretvm-verify
3
+ Version: 0.1.0
4
+ Summary: Attestation verification for Intel TDX, AMD SEV-SNP, and NVIDIA GPU
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: requests
7
+ Requires-Dist: cryptography
8
+ Requires-Dist: PyYAML
9
+ Provides-Extra: dev
10
+ Requires-Dist: build; extra == "dev"
11
+ Requires-Dist: twine; extra == "dev"
12
+ Requires-Dist: pytest; extra == "dev"
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=67.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "secretvm-verify"
7
+ version = "0.1.0"
8
+ description = "Attestation verification for Intel TDX, AMD SEV-SNP, and NVIDIA GPU"
9
+ requires-python = ">=3.10"
10
+ dependencies = [
11
+ "requests",
12
+ "cryptography",
13
+ "PyYAML",
14
+ ]
15
+
16
+ [project.optional-dependencies]
17
+ dev = [
18
+ "build",
19
+ "twine",
20
+ "pytest",
21
+ ]
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
25
+ namespaces = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+