substrate-kernel 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,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: substrate-kernel
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved: Substrate, a concurrent streaming dataflow runtime whose product surface is an append-only, replayable run record. Real release imminent.
|
|
5
|
+
Author: Green Rose Systems
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# substrate-kernel
|
|
13
|
+
|
|
14
|
+
This name is held for **Substrate** — a concurrent streaming dataflow runtime
|
|
15
|
+
whose product surface is an append-only, replayable run record: Producers run
|
|
16
|
+
concurrently, coordinate only through a single totally-ordered log, and every
|
|
17
|
+
runtime decision is a typed, sequenced event you can replay, diff, and trace.
|
|
18
|
+
|
|
19
|
+
This is a placeholder published by the project's author. The first real release
|
|
20
|
+
(1.0.0rc1) follows shortly; it will provide the `substrate` import package.
|
|
21
|
+
This placeholder installs an empty `substrate_kernel` module only, so nothing
|
|
22
|
+
half-works in the meantime.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# substrate-kernel
|
|
2
|
+
|
|
3
|
+
This name is held for **Substrate** — a concurrent streaming dataflow runtime
|
|
4
|
+
whose product surface is an append-only, replayable run record: Producers run
|
|
5
|
+
concurrently, coordinate only through a single totally-ordered log, and every
|
|
6
|
+
runtime decision is a typed, sequenced event you can replay, diff, and trace.
|
|
7
|
+
|
|
8
|
+
This is a placeholder published by the project's author. The first real release
|
|
9
|
+
(1.0.0rc1) follows shortly; it will provide the `substrate` import package.
|
|
10
|
+
This placeholder installs an empty `substrate_kernel` module only, so nothing
|
|
11
|
+
half-works in the meantime.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "substrate-kernel"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Reserved: Substrate, a concurrent streaming dataflow runtime whose product surface is an append-only, replayable run record. Real release imminent."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
license = "Apache-2.0"
|
|
8
|
+
authors = [{ name = "Green Rose Systems" }]
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Development Status :: 1 - Planning",
|
|
11
|
+
"Programming Language :: Python :: 3.12",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/substrate_kernel"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Placeholder for substrate-kernel. The real release provides `import substrate`."""
|