streambuild 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: streambuild
3
+ Version: 0.0.1
4
+ Summary: Declarative, versioned streaming data pipelines
5
+ Project-URL: Homepage, https://github.com/chio-labs/streambuild
6
+ Project-URL: Repository, https://github.com/chio-labs/streambuild
7
+ Author: Chio Labs
8
+ License-Expression: Apache-2.0
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Requires-Python: >=3.12
14
+ Description-Content-Type: text/markdown
15
+
16
+ # streambuild
17
+
18
+ This placeholder reserves the package name for
19
+ [StreamBuild](https://github.com/chio-labs/streambuild), a declarative system for
20
+ versioned streaming data pipelines.
21
+
22
+ The first functional release will replace this placeholder.
@@ -0,0 +1,7 @@
1
+ # streambuild
2
+
3
+ This placeholder reserves the package name for
4
+ [StreamBuild](https://github.com/chio-labs/streambuild), a declarative system for
5
+ versioned streaming data pipelines.
6
+
7
+ The first functional release will replace this placeholder.
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27.0"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "streambuild"
7
+ version = "0.0.1"
8
+ description = "Declarative, versioned streaming data pipelines"
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "Apache-2.0"
12
+ authors = [
13
+ { name = "Chio Labs" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "License :: OSI Approved :: Apache Software License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.12",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/chio-labs/streambuild"
24
+ Repository = "https://github.com/chio-labs/streambuild"
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["src/streambuild"]
@@ -0,0 +1,3 @@
1
+ """StreamBuild package-name placeholder."""
2
+
3
+ __version__: str = "0.0.1"