scalo 0.0.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.
scalo-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: scalo
3
+ Version: 0.0.0
4
+ Summary: Name reservation for scalo -- the embedded, self-regulating runtime for data-plane services (also a Rust crate, scalo-rs). Real release to follow.
5
+ Keywords: placeholder,reservation
6
+ Author: HyperI
7
+ Author-email: HyperI <dev@hyperi.io>
8
+ License-Expression: Apache-2.0
9
+ Requires-Python: >=3.12
10
+ Project-URL: Homepage, https://github.com/hyperi-io/scalo-py
11
+ Description-Content-Type: text/markdown
12
+
13
+ # scalo
14
+
15
+ Name reservation placeholder (`0.0.0`).
16
+
17
+ `scalo` is the embedded, self-regulating runtime for data-plane services --
18
+ config cascade, structured logging with PII masking, Prometheus +
19
+ OpenTelemetry, multi-backend secrets, Kafka, CEL, FastAPI-friendly. Same
20
+ batteries in each language: `pip install scalo` (scalo-py) /
21
+ `cargo add scalo` (scalo-rs).
22
+
23
+ The real release follows shortly. See <https://github.com/hyperi-io/scalo-py>.
scalo-0.0.0/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # scalo
2
+
3
+ Name reservation placeholder (`0.0.0`).
4
+
5
+ `scalo` is the embedded, self-regulating runtime for data-plane services --
6
+ config cascade, structured logging with PII masking, Prometheus +
7
+ OpenTelemetry, multi-backend secrets, Kafka, CEL, FastAPI-friendly. Same
8
+ batteries in each language: `pip install scalo` (scalo-py) /
9
+ `cargo add scalo` (scalo-rs).
10
+
11
+ The real release follows shortly. See <https://github.com/hyperi-io/scalo-py>.
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["uv_build>=0.8.0,<1"]
3
+ build-backend = "uv_build"
4
+
5
+ [project]
6
+ name = "scalo"
7
+ version = "0.0.0"
8
+ description = "Name reservation for scalo -- the embedded, self-regulating runtime for data-plane services (also a Rust crate, scalo-rs). Real release to follow."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "HyperI", email = "dev@hyperi.io" }]
13
+ keywords = ["placeholder", "reservation"]
14
+
15
+ [project.urls]
16
+ Homepage = "https://github.com/hyperi-io/scalo-py"
17
+
18
+ [tool.uv.build-backend]
19
+ module-name = "scalo"
20
+ module-root = "src"
@@ -0,0 +1,8 @@
1
+ """scalo -- name reservation placeholder.
2
+
3
+ This 0.0.0 release reserves the ``scalo`` distribution name. The real
4
+ package (the embedded, self-regulating runtime for data-plane services) is
5
+ released subsequently. See https://github.com/hyperi-io/scalo-py.
6
+ """
7
+
8
+ __version__ = "0.0.0"