attesso-cli 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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: attesso-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Attesso CLI — generate signed CRA Evidence Packs from your terminal (placeholder; full release coming soon).
|
|
5
|
+
Project-URL: Homepage, https://attesso.eu
|
|
6
|
+
Author-email: Tudor Haruta <tudor.haruta@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: compliance,cra,cyber-resilience-act,evidence-pack,sbom,security
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# attesso-cli
|
|
17
|
+
|
|
18
|
+
Placeholder reserving the name for **Attesso** — signed, audit-ready EU Cyber
|
|
19
|
+
Resilience Act (CRA) Evidence Packs. The full release is coming soon.
|
|
20
|
+
|
|
21
|
+
https://attesso.eu
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "attesso-cli"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Attesso CLI — generate signed CRA Evidence Packs from your terminal (placeholder; full release coming soon)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Tudor Haruta", email = "tudor.haruta@gmail.com" }]
|
|
13
|
+
keywords = ["cra", "cyber-resilience-act", "sbom", "compliance", "evidence-pack", "security"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://attesso.eu"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|