File size: 528 Bytes
473253d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[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"]