praxer 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.
@@ -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
praxer-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.5
2
+ Name: praxer
3
+ Version: 0.0.0
4
+ Summary: Reserved name. You are probably looking for prxr, which 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
+ # praxer
13
+
14
+ This name is reserved. There is no package called **praxer**: you are probably looking for
15
+ **prxr**, the CLI and Python SDK for the Open Efficacy RL platform. prxr is distributed privately
16
+ to invited users, not through public PyPI.
17
+
18
+ This `0.0.0` release contains no code: installing it gives you nothing to import or run, and it
19
+ does not install prxr.
20
+
21
+ If you have access, install prxr from the platform's private package index as described in the
22
+ console under **Docs → Quickstart**, for example:
23
+
24
+ ```bash
25
+ export UV_INDEX_PRXR_USERNAME=__token__
26
+ export UV_INDEX_PRXR_PASSWORD=<your prxr API key>
27
+ uv tool install prxr --index prxr=<your platform>/v1/pypi/simple/
28
+ ```
praxer-0.0.0/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # praxer
2
+
3
+ This name is reserved. There is no package called **praxer**: you are probably looking for
4
+ **prxr**, the CLI and Python SDK for the Open Efficacy RL platform. prxr is distributed privately
5
+ to invited users, not through public PyPI.
6
+
7
+ This `0.0.0` release contains no code: installing it gives you nothing to import or run, and it
8
+ does not install prxr.
9
+
10
+ If you have access, install prxr from the platform's private package index as described in the
11
+ console under **Docs → Quickstart**, for example:
12
+
13
+ ```bash
14
+ export UV_INDEX_PRXR_USERNAME=__token__
15
+ export UV_INDEX_PRXR_PASSWORD=<your prxr API key>
16
+ uv tool install prxr --index prxr=<your platform>/v1/pypi/simple/
17
+ ```
@@ -0,0 +1,27 @@
1
+ # The public-PyPI placeholder for the name "praxer" (tech spec §3.7).
2
+ #
3
+ # "praxer" is how prxr is said out loud, so it is the name someone is most likely to type by
4
+ # mistake, or to squat. This 0.0.0 release only reserves it on public PyPI. It contains no code,
5
+ # depends on nothing, and does not install prxr. There is no real package called praxer.
6
+ [project]
7
+ name = "praxer"
8
+ version = "0.0.0"
9
+ description = "Reserved name. You are probably looking for prxr, which is distributed privately; this release contains no code."
10
+ readme = "README.md"
11
+ requires-python = ">=3.10"
12
+ license = { text = "Proprietary" }
13
+ authors = [{ name = "Open Efficacy" }]
14
+ classifiers = [
15
+ "Development Status :: 7 - Inactive",
16
+ "Programming Language :: Python :: 3",
17
+ ]
18
+
19
+ [build-system]
20
+ requires = ["hatchling>=1.24"]
21
+ build-backend = "hatchling.build"
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ bypass-selection = true # an empty wheel: no package, nothing to import
25
+
26
+ [tool.hatch.build.targets.sdist]
27
+ only-include = ["pyproject.toml", "README.md"]