repark 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.
- repark-0.0.1/PKG-INFO +17 -0
- repark-0.0.1/README.md +8 -0
- repark-0.0.1/pyproject.toml +14 -0
- repark-0.0.1/src/repark/__init__.py +7 -0
repark-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: repark
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation for Repark - a pure-Rust, single-node data engine with first-class Apache Iceberg support.
|
|
5
|
+
Project-URL: Repository, https://github.com/TRO-Wolf/repark
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# repark
|
|
11
|
+
|
|
12
|
+
This is a name-reservation placeholder. Repark — a pure-Rust, single-node data
|
|
13
|
+
engine with a lazy DataFrame API, ANSI SQL, and first-class Apache Iceberg
|
|
14
|
+
support — is under active development at
|
|
15
|
+
[github.com/TRO-Wolf/repark](https://github.com/TRO-Wolf/repark).
|
|
16
|
+
|
|
17
|
+
Do not depend on this version.
|
repark-0.0.1/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# repark
|
|
2
|
+
|
|
3
|
+
This is a name-reservation placeholder. Repark — a pure-Rust, single-node data
|
|
4
|
+
engine with a lazy DataFrame API, ANSI SQL, and first-class Apache Iceberg
|
|
5
|
+
support — is under active development at
|
|
6
|
+
[github.com/TRO-Wolf/repark](https://github.com/TRO-Wolf/repark).
|
|
7
|
+
|
|
8
|
+
Do not depend on this version.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "repark"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name reservation for Repark - a pure-Rust, single-node data engine with first-class Apache Iceberg support."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Repository = "https://github.com/TRO-Wolf/repark"
|