bosn 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.
- bosn-0.0.0/PKG-INFO +17 -0
- bosn-0.0.0/README.md +8 -0
- bosn-0.0.0/pyproject.toml +16 -0
- bosn-0.0.0/setup.cfg +4 -0
- bosn-0.0.0/src/bosn/__init__.py +3 -0
- bosn-0.0.0/src/bosn.egg-info/PKG-INFO +17 -0
- bosn-0.0.0/src/bosn.egg-info/SOURCES.txt +7 -0
- bosn-0.0.0/src/bosn.egg-info/dependency_links.txt +1 -0
- bosn-0.0.0/src/bosn.egg-info/top_level.txt +1 -0
bosn-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bosn
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved: bosn — a container dev-environment lifecycle supervisor (bo's'n). Placeholder release; the real package will follow.
|
|
5
|
+
Author-email: Zach Vorhies <zachvorhies@protonmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: ==1.5.*
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# bosn
|
|
11
|
+
|
|
12
|
+
Name reservation for **bosn** (bo's'n) — a machine-wide lifecycle supervisor for
|
|
13
|
+
container development resources (Docker today, podman later): registry, leases,
|
|
14
|
+
retention tiers, and continuous garbage collection.
|
|
15
|
+
|
|
16
|
+
This 0.0.0 placeholder is intentionally uninstallable (`requires-python ==1.5.*`).
|
|
17
|
+
The real package will replace it.
|
bosn-0.0.0/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# bosn
|
|
2
|
+
|
|
3
|
+
Name reservation for **bosn** (bo's'n) — a machine-wide lifecycle supervisor for
|
|
4
|
+
container development resources (Docker today, podman later): registry, leases,
|
|
5
|
+
retention tiers, and continuous garbage collection.
|
|
6
|
+
|
|
7
|
+
This 0.0.0 placeholder is intentionally uninstallable (`requires-python ==1.5.*`).
|
|
8
|
+
The real package will replace it.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bosn"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved: bosn — a container dev-environment lifecycle supervisor (bo's'n). Placeholder release; the real package will follow."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = "==1.5.*"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Zach Vorhies", email = "zachvorhies@protonmail.com" }]
|
|
13
|
+
|
|
14
|
+
[tool.setuptools]
|
|
15
|
+
packages = ["bosn"]
|
|
16
|
+
package-dir = { "" = "src" }
|
bosn-0.0.0/setup.cfg
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bosn
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved: bosn — a container dev-environment lifecycle supervisor (bo's'n). Placeholder release; the real package will follow.
|
|
5
|
+
Author-email: Zach Vorhies <zachvorhies@protonmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: ==1.5.*
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# bosn
|
|
11
|
+
|
|
12
|
+
Name reservation for **bosn** (bo's'n) — a machine-wide lifecycle supervisor for
|
|
13
|
+
container development resources (Docker today, podman later): registry, leases,
|
|
14
|
+
retention tiers, and continuous garbage collection.
|
|
15
|
+
|
|
16
|
+
This 0.0.0 placeholder is intentionally uninstallable (`requires-python ==1.5.*`).
|
|
17
|
+
The real package will replace it.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bosn
|