cxbom 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.
cxbom-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: cxbom
3
+ Version: 0.0.1
4
+ Summary: Name reservation for CxBOM, the Context Bill of Materials tool. See https://cxbom.org
5
+ Project-URL: Homepage, https://cxbom.org
6
+ Author: ATACE Working Group
7
+ License-Expression: Apache-2.0
8
+ Classifier: Development Status :: 1 - Planning
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # cxbom
13
+
14
+ This release reserves the package name. The CxBOM tool (MCP pinning proxy,
15
+ emitter, validator) is published at https://cxbom.org and will replace this
16
+ release on PyPI.
cxbom-0.0.1/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # cxbom
2
+
3
+ This release reserves the package name. The CxBOM tool (MCP pinning proxy,
4
+ emitter, validator) is published at https://cxbom.org and will replace this
5
+ release on PyPI.
@@ -0,0 +1,21 @@
1
+ # Name reservation for the cxbom tool. Owner: ATACE Working Group.
2
+ # The real package replaces this release. It installs nothing usable on purpose.
3
+ [build-system]
4
+ requires = ["hatchling==1.27.0"]
5
+ build-backend = "hatchling.build"
6
+
7
+ [project]
8
+ name = "cxbom"
9
+ version = "0.0.1"
10
+ description = "Name reservation for CxBOM, the Context Bill of Materials tool. See https://cxbom.org"
11
+ readme = "README.md"
12
+ requires-python = ">=3.10"
13
+ license = "Apache-2.0"
14
+ authors = [{ name = "ATACE Working Group" }]
15
+ classifiers = ["Development Status :: 1 - Planning"]
16
+
17
+ [project.urls]
18
+ Homepage = "https://cxbom.org"
19
+
20
+ [project.scripts]
21
+ cxbom = "cxbom:main"
@@ -0,0 +1,9 @@
1
+ """Name reservation for the cxbom tool. Owner: ATACE Working Group."""
2
+ import sys
3
+
4
+ MESSAGE = "cxbom: this PyPI release only reserves the name. Install the tool from https://cxbom.org"
5
+
6
+
7
+ def main() -> int:
8
+ print(MESSAGE, file=sys.stderr)
9
+ return 1