Initial commit

This commit is contained in:
Chris Proctor
2026-06-22 16:14:58 -04:00
commit 42bc2e7a50
14 changed files with 2049 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "lab-reinforcement-learning"
version = "0.1.0"
description = "Reinforcement learning lab"
requires-python = ">=3.11"
dependencies = [
"retro-games>=2.3.1",
"retro-gamer>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["babysnake", "forager"]
[tool.uv.sources]
retro-games = { path = "../../packages/retro", editable = true }
retro-gamer = { path = "../../packages/retro-gamer", editable = true }