prxr 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.
prxr-0.0.0/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ *.egg-info/
4
+ .venv/
5
+ dist/
6
+ build/
7
+ .pytest_cache/
8
+ .ruff_cache/
9
+ .mypy_cache/
10
+ .coverage
11
+ htmlcov/
12
+ .env
prxr-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.5
2
+ Name: prxr
3
+ Version: 0.0.0
4
+ Summary: Reserved name. prxr is distributed privately; this release contains no code.
5
+ Author: Open Efficacy
6
+ License: Proprietary
7
+ Classifier: Development Status :: 7 - Inactive
8
+ Classifier: Programming Language :: Python :: 3
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # prxr
13
+
14
+ This name is reserved. **prxr** — the CLI and Python SDK for the Open Efficacy RL platform — is
15
+ distributed privately to invited users, not through public PyPI.
16
+
17
+ This `0.0.0` release contains no code: installing it gives you nothing to import or run.
18
+
19
+ If you have access, install prxr from the platform's private package index as described in the
20
+ console under **Docs → Quickstart**, for example:
21
+
22
+ ```bash
23
+ export UV_INDEX_PRXR_USERNAME=__token__
24
+ export UV_INDEX_PRXR_PASSWORD=<your prxr API key>
25
+ uv tool install prxr --index prxr=<your platform>/v1/pypi/simple/
26
+ ```
prxr-0.0.0/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # prxr
2
+
3
+ This name is reserved. **prxr** — the CLI and Python SDK for the Open Efficacy RL platform — is
4
+ distributed privately to invited users, not through public PyPI.
5
+
6
+ This `0.0.0` release contains no code: installing it gives you nothing to import or run.
7
+
8
+ If you have access, install prxr from the platform's private package index as described in the
9
+ console under **Docs → Quickstart**, for example:
10
+
11
+ ```bash
12
+ export UV_INDEX_PRXR_USERNAME=__token__
13
+ export UV_INDEX_PRXR_PASSWORD=<your prxr API key>
14
+ uv tool install prxr --index prxr=<your platform>/v1/pypi/simple/
15
+ ```
@@ -0,0 +1,28 @@
1
+ # The public-PyPI placeholder for the name "prxr" (tech spec §3.7).
2
+ #
3
+ # prxr is distributed privately, from the platform's own package index. This 0.0.0 release only
4
+ # reserves the name on public PyPI so nobody else can publish a package called prxr there. It
5
+ # contains no importable code. Never publish a higher version of it: a private release must
6
+ # always be the newest "prxr" any resolver can see.
7
+ [project]
8
+ name = "prxr"
9
+ version = "0.0.0"
10
+ description = "Reserved name. prxr is distributed privately; this release contains no code."
11
+ readme = "README.md"
12
+ requires-python = ">=3.10"
13
+ license = { text = "Proprietary" }
14
+ authors = [{ name = "Open Efficacy" }]
15
+ classifiers = [
16
+ "Development Status :: 7 - Inactive",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [build-system]
21
+ requires = ["hatchling>=1.24"]
22
+ build-backend = "hatchling.build"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ bypass-selection = true # an empty wheel: no package, nothing to import
26
+
27
+ [tool.hatch.build.targets.sdist]
28
+ only-include = ["pyproject.toml", "README.md"]