auto-mdp-solver 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,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: auto-mdp-solver
3
+ Version: 0.0.1
4
+ Summary: Name reservation for the MDP solver pipeline (IR schema + interpreter, conformance harness, eval gates, tuning driver). First real release upcoming.
5
+ Project-URL: Repository, https://github.com/tong-wang/auto-mdp-solver
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
9
+ # mdp-solver
10
+
11
+ Placeholder release reserving the name for the MDP solver pipeline:
12
+ an MDP-IR schema + interpreter, spec-conformance harness, evaluation
13
+ gates, and an Optuna tuning driver for building trained RL policies
14
+ from verbal problem descriptions.
15
+
16
+ The first functional release will appear at
17
+ https://github.com/tong-wang/auto-mdp-solver — do not depend on this stub.
@@ -0,0 +1,9 @@
1
+ # mdp-solver
2
+
3
+ Placeholder release reserving the name for the MDP solver pipeline:
4
+ an MDP-IR schema + interpreter, spec-conformance harness, evaluation
5
+ gates, and an Optuna tuning driver for building trained RL policies
6
+ from verbal problem descriptions.
7
+
8
+ The first functional release will appear at
9
+ https://github.com/tong-wang/auto-mdp-solver — do not depend on this stub.
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "auto-mdp-solver"
7
+ version = "0.0.1"
8
+ description = "Name reservation for the MDP solver pipeline (IR schema + interpreter, conformance harness, eval gates, tuning driver). First real release upcoming."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+
12
+ [project.urls]
13
+ Repository = "https://github.com/tong-wang/auto-mdp-solver"
14
+
15
+ [tool.setuptools]
16
+ packages = ["mdp_solver_stub"]
17
+ package-dir = {"" = "src"}
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: auto-mdp-solver
3
+ Version: 0.0.1
4
+ Summary: Name reservation for the MDP solver pipeline (IR schema + interpreter, conformance harness, eval gates, tuning driver). First real release upcoming.
5
+ Project-URL: Repository, https://github.com/tong-wang/auto-mdp-solver
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
9
+ # mdp-solver
10
+
11
+ Placeholder release reserving the name for the MDP solver pipeline:
12
+ an MDP-IR schema + interpreter, spec-conformance harness, evaluation
13
+ gates, and an Optuna tuning driver for building trained RL policies
14
+ from verbal problem descriptions.
15
+
16
+ The first functional release will appear at
17
+ https://github.com/tong-wang/auto-mdp-solver — do not depend on this stub.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/auto_mdp_solver.egg-info/PKG-INFO
4
+ src/auto_mdp_solver.egg-info/SOURCES.txt
5
+ src/auto_mdp_solver.egg-info/dependency_links.txt
6
+ src/auto_mdp_solver.egg-info/top_level.txt
7
+ src/mdp_solver_stub/__init__.py
@@ -0,0 +1 @@
1
+ mdp_solver_stub
@@ -0,0 +1,2 @@
1
+ """Placeholder — see https://github.com/tong-wang/mdp-solver."""
2
+ __version__ = "0.0.1"