File size: 600 Bytes
27f1113 0ce1450 27f1113 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
[project]
name = "hellrl"
version = "0.1.0"
description = "RL Implementations with Cutting Edge Versions and Vectorized Training"
readme = "README.md"
authors = [
{ name = "Alperen ÜNLÜ"}
]
requires-python = ">=3.12"
dependencies = [
"gymnasium[all]>=1.2.0",
"huggingface-hub>=0.34.4",
"safetensors>=0.6.2",
"tensorboard>=2.20.0",
"torch>=2.8.0",
"tqdm>=4.67.1",
"tyro>=0.9.28",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["hellrl"]
[tool.hatch.build.targets.sdist]
include = ["hellrl"]
|