contractforge-gcp 0.1.0__py3-none-any.whl

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
+ """Reserved Google Cloud adapter package for ContractForge."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from importlib.metadata import PackageNotFoundError, version
6
+
7
+ try:
8
+ __version__ = version("contractforge-gcp")
9
+ except PackageNotFoundError: # pragma: no cover
10
+ __version__ = "0.0.0"
11
+
12
+ __all__ = ["__version__"]
@@ -0,0 +1,18 @@
1
+ """CLI placeholder for the reserved ContractForge GCP adapter package."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import argparse
6
+
7
+
8
+ def main(argv: list[str] | None = None) -> int:
9
+ parser = argparse.ArgumentParser(prog="contractforge-gcp")
10
+ parser.description = (
11
+ "Reserved ContractForge GCP adapter package. Runtime planning and execution are not implemented yet."
12
+ )
13
+ parser.parse_args(argv)
14
+ return 0
15
+
16
+
17
+ if __name__ == "__main__": # pragma: no cover
18
+ raise SystemExit(main())
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: contractforge-gcp
3
+ Version: 0.1.0
4
+ Summary: Reserved Google Cloud adapter package for ContractForge Core.
5
+ Project-URL: Homepage, https://github.com/marquesantero/contractforge-core/tree/main/adapters/gcp
6
+ Project-URL: Documentation, https://marquesantero.github.io/contractforge-core/
7
+ Project-URL: Repository, https://github.com/marquesantero/contractforge-core
8
+ Project-URL: Issues, https://github.com/marquesantero/contractforge-core/issues
9
+ Project-URL: Changelog, https://github.com/marquesantero/contractforge-core/blob/main/adapters/gcp/CHANGELOG.md
10
+ Author: ContractForge contributors
11
+ License: MIT
12
+ Keywords: bigquery,contractforge,data-contracts,gcp,google-cloud,ingestion
13
+ Classifier: Development Status :: 2 - Pre-Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Topic :: Database
22
+ Classifier: Topic :: Software Development :: Libraries
23
+ Requires-Python: >=3.10
24
+ Requires-Dist: contractforge-core<0.2,>=0.1
25
+ Description-Content-Type: text/markdown
26
+
27
+ # contractforge-gcp
28
+
29
+ `contractforge-gcp` is a reserved Google Cloud adapter package for ContractForge.
30
+
31
+ This initial release is intentionally a placeholder. It reserves the PyPI
32
+ distribution name and provides an importable package and CLI entry point, but it
33
+ does not yet implement planning, rendering or runtime execution.
34
+
35
+ Install:
36
+
37
+ ```bash
38
+ pip install contractforge-gcp
39
+ ```
40
+
41
+ Use:
42
+
43
+ ```bash
44
+ contractforge-gcp --help
45
+ ```
46
+
47
+ Runtime support will be added after a GCP adapter surface is designed and
48
+ validated with real end-to-end evidence.
@@ -0,0 +1,6 @@
1
+ contractforge_gcp/__init__.py,sha256=vKlxxocqtJ_4xEaYiaSpgi9aJEh4otl7FCFVIjb0aV4,316
2
+ contractforge_gcp/cli.py,sha256=CwIibAO-T6QA7dDeO4E1Ny-N553E1FzPS8-linCrMHY,502
3
+ contractforge_gcp-0.1.0.dist-info/METADATA,sha256=XmGnEEaRo3wbKSF0ZOD6KNqv0ubXj6kUlCQ-rXHH12g,1824
4
+ contractforge_gcp-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
5
+ contractforge_gcp-0.1.0.dist-info/entry_points.txt,sha256=QFN25PUAK82yiGRIDmxgfUMiTywpO6XuD-88unoxZu0,65
6
+ contractforge_gcp-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ contractforge-gcp = contractforge_gcp.cli:main