plimsoll 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.
@@ -0,0 +1,20 @@
1
+ name: release
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ pypi:
10
+ runs-on: ubuntu-latest
11
+ environment: pypi
12
+ permissions:
13
+ id-token: write # required for PyPI Trusted Publishing (OIDC)
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3.12"
19
+ - run: pipx run build
20
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,5 @@
1
+ dist/
2
+ build/
3
+ *.egg-info/
4
+ __pycache__/
5
+ .venv/
plimsoll-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Plimsoll
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.5
2
+ Name: plimsoll
3
+ Version: 0.0.1
4
+ Summary: Neutral measurement and routing layer for quantum cloud spend.
5
+ Project-URL: Homepage, https://plimsollindex.com
6
+ Project-URL: Source, https://github.com/plimsollhq/plimsoll
7
+ Author: Plimsoll
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: benchmark,cost,quantum,quantum-computing,routing
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Requires-Python: >=3.11
18
+ Description-Content-Type: text/markdown
19
+
20
+ # plimsoll
21
+
22
+ Neutral measurement and routing layer for quantum cloud spend.
23
+
24
+ This package reserves the `plimsoll` namespace on PyPI. The client SDK is not
25
+ released yet.
26
+
27
+ - Public benchmark: <https://plimsollindex.com>
28
+ - Source: <https://github.com/plimsollhq/plimsoll>
29
+
30
+ ## Status
31
+
32
+ Pre-alpha. `plimsoll.index()` raises `NotImplementedError`. Watch the repo for
33
+ the first working release.
@@ -0,0 +1,14 @@
1
+ # plimsoll
2
+
3
+ Neutral measurement and routing layer for quantum cloud spend.
4
+
5
+ This package reserves the `plimsoll` namespace on PyPI. The client SDK is not
6
+ released yet.
7
+
8
+ - Public benchmark: <https://plimsollindex.com>
9
+ - Source: <https://github.com/plimsollhq/plimsoll>
10
+
11
+ ## Status
12
+
13
+ Pre-alpha. `plimsoll.index()` raises `NotImplementedError`. Watch the repo for
14
+ the first working release.
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "plimsoll"
7
+ version = "0.0.1"
8
+ description = "Neutral measurement and routing layer for quantum cloud spend."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Plimsoll" }]
13
+ keywords = ["quantum", "quantum-computing", "cost", "routing", "benchmark"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Topic :: Scientific/Engineering :: Physics",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://plimsollindex.com"
25
+ Source = "https://github.com/plimsollhq/plimsoll"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/plimsoll"]
@@ -0,0 +1,17 @@
1
+ """Plimsoll — neutral measurement and routing layer for quantum cloud spend.
2
+
3
+ The client SDK is not published yet. This release reserves the namespace and
4
+ records where the work lives.
5
+ """
6
+
7
+ __version__ = "0.0.1"
8
+ __all__ = ["__version__", "INDEX_URL", "index"]
9
+
10
+ INDEX_URL = "https://plimsollindex.com"
11
+
12
+
13
+ def index():
14
+ """Return the Plimsoll Index. Not implemented in this release."""
15
+ raise NotImplementedError(
16
+ f"The Plimsoll Index client is not released yet. See {INDEX_URL}"
17
+ )