contractforge-gcp 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.
- contractforge_gcp-0.1.0/.gitignore +19 -0
- contractforge_gcp-0.1.0/CHANGELOG.md +7 -0
- contractforge_gcp-0.1.0/PKG-INFO +48 -0
- contractforge_gcp-0.1.0/README.md +22 -0
- contractforge_gcp-0.1.0/pyproject.toml +42 -0
- contractforge_gcp-0.1.0/src/contractforge_gcp/__init__.py +12 -0
- contractforge_gcp-0.1.0/src/contractforge_gcp/cli.py +18 -0
|
@@ -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,22 @@
|
|
|
1
|
+
# contractforge-gcp
|
|
2
|
+
|
|
3
|
+
`contractforge-gcp` is a reserved Google Cloud adapter package for ContractForge.
|
|
4
|
+
|
|
5
|
+
This initial release is intentionally a placeholder. It reserves the PyPI
|
|
6
|
+
distribution name and provides an importable package and CLI entry point, but it
|
|
7
|
+
does not yet implement planning, rendering or runtime execution.
|
|
8
|
+
|
|
9
|
+
Install:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install contractforge-gcp
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Use:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
contractforge-gcp --help
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Runtime support will be added after a GCP adapter surface is designed and
|
|
22
|
+
validated with real end-to-end evidence.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "contractforge-gcp"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Reserved Google Cloud adapter package for ContractForge Core."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "ContractForge contributors" }]
|
|
13
|
+
keywords = ["contractforge", "google-cloud", "gcp", "bigquery", "data-contracts", "ingestion"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Topic :: Database",
|
|
24
|
+
"Topic :: Software Development :: Libraries",
|
|
25
|
+
]
|
|
26
|
+
dependencies = ["contractforge-core>=0.1,<0.2"]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://github.com/marquesantero/contractforge-core/tree/main/adapters/gcp"
|
|
30
|
+
Documentation = "https://marquesantero.github.io/contractforge-core/"
|
|
31
|
+
Repository = "https://github.com/marquesantero/contractforge-core"
|
|
32
|
+
Issues = "https://github.com/marquesantero/contractforge-core/issues"
|
|
33
|
+
Changelog = "https://github.com/marquesantero/contractforge-core/blob/main/adapters/gcp/CHANGELOG.md"
|
|
34
|
+
|
|
35
|
+
[project.scripts]
|
|
36
|
+
contractforge-gcp = "contractforge_gcp.cli:main"
|
|
37
|
+
|
|
38
|
+
[tool.hatch.build.targets.wheel]
|
|
39
|
+
packages = ["src/contractforge_gcp"]
|
|
40
|
+
|
|
41
|
+
[tool.hatch.build.targets.sdist]
|
|
42
|
+
include = ["/src/contractforge_gcp", "/README.md", "/CHANGELOG.md", "/pyproject.toml"]
|
|
@@ -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())
|