planir 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.
- planir-0.0.1/.gitignore +5 -0
- planir-0.0.1/PKG-INFO +15 -0
- planir-0.0.1/README.md +5 -0
- planir-0.0.1/pyproject.toml +15 -0
- planir-0.0.1/src/planir/__init__.py +2 -0
planir-0.0.1/.gitignore
ADDED
planir-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: planir
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official SDK for planir.io — hosted microVM runtimes. Placeholder release; the real SDK ships with the public beta.
|
|
5
|
+
Project-URL: Homepage, https://planir.io
|
|
6
|
+
Project-URL: Repository, https://github.com/Planir-io/sdk
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# planir
|
|
12
|
+
|
|
13
|
+
Official SDK for [planir.io](https://planir.io) — hosted, hardware-isolated microVM runtimes with a stable public URL per runtime.
|
|
14
|
+
|
|
15
|
+
This is a placeholder release reserving the package name. The real SDK (generated Python client: `PlanirClient`, sync + async) ships with the public beta.
|
planir-0.0.1/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# planir
|
|
2
|
+
|
|
3
|
+
Official SDK for [planir.io](https://planir.io) — hosted, hardware-isolated microVM runtimes with a stable public URL per runtime.
|
|
4
|
+
|
|
5
|
+
This is a placeholder release reserving the package name. The real SDK (generated Python client: `PlanirClient`, sync + async) ships with the public beta.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "planir"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official SDK for planir.io — hosted microVM runtimes. Placeholder release; the real SDK ships with the public beta."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://planir.io"
|
|
15
|
+
Repository = "https://github.com/Planir-io/sdk"
|