blobpack 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.
- blobpack-0.0.0/PKG-INFO +12 -0
- blobpack-0.0.0/README.md +3 -0
- blobpack-0.0.0/pyproject.toml +15 -0
- blobpack-0.0.0/src/blobpack/__init__.py +2 -0
blobpack-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: blobpack
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder release reserving the name. Blob Pack: dataset media as plain STORED zip shards.
|
|
5
|
+
Author: Suhwan Choi
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# blobpack
|
|
11
|
+
|
|
12
|
+
Name reservation for the Blob Pack reference implementation. First real release coming soon.
|
blobpack-0.0.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "blobpack"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder release reserving the name. Blob Pack: dataset media as plain STORED zip shards."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "Suhwan Choi" }]
|
|
13
|
+
|
|
14
|
+
[tool.hatch.build.targets.wheel]
|
|
15
|
+
packages = ["src/blobpack"]
|