GMIHHrJ6Wp / code /pyproject.toml
DineshAI's picture
Rigorous claim-by-claim reproduction: model-free RHI + R-SAMPLE, 6/6 VERIFIED
473253d verified
Raw
History Blame Contribute Delete
528 Bytes
[project]
name = "rhi-repro"
version = "0.1.0"
description = "Clean-room reproduction of 'A Finite-Sample Analysis of Distributionally Robust Average-Reward RL' (arXiv 2505.12462)"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"matplotlib>=3.7",
]
[project.optional-dependencies]
dev = ["pytest>=7"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/rhi_repro"]
[tool.pytest.ini_options]
testpaths = ["tests"]