rip-spec 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.
- rip_spec-0.0.0/PKG-INFO +15 -0
- rip_spec-0.0.0/README.md +5 -0
- rip_spec-0.0.0/pyproject.toml +15 -0
- rip_spec-0.0.0/src/rip_spec/__init__.py +1 -0
rip_spec-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: rip-spec
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name placeholder for the Reasoning Interop Protocol (RIP) SDK. See https://rip-spec.dev
|
|
5
|
+
Project-URL: Homepage, https://rip-spec.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/reasoning-interop/rip-spec
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# rip-spec
|
|
12
|
+
|
|
13
|
+
This is a name placeholder for the **Reasoning Interop Protocol (RIP)** SDK. It contains no code.
|
|
14
|
+
|
|
15
|
+
The first real release is on its way. See https://rip-spec.dev.
|
rip_spec-0.0.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "rip-spec"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Name placeholder for the Reasoning Interop Protocol (RIP) SDK. See https://rip-spec.dev"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
|
|
9
|
+
[project.urls]
|
|
10
|
+
Homepage = "https://rip-spec.dev"
|
|
11
|
+
Repository = "https://github.com/reasoning-interop/rip-spec"
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["hatchling>=1.27"]
|
|
15
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Name placeholder for the Reasoning Interop Protocol (RIP) SDK. See https://rip-spec.dev."""
|