37 lines
768 B
TOML
37 lines
768 B
TOML
[project]
|
|
name = "retro-gamer"
|
|
version = "0.1.1"
|
|
description = "A toolkit for learning reinforcement learning by training agents to play retro games"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"retro-games>=2.3.1",
|
|
"torch>=2.0",
|
|
"numpy>=1.24",
|
|
"click>=8.0",
|
|
"tomli-w>=1.0",
|
|
"tqdm>=4.0",
|
|
"plotext>=5.0",
|
|
"matplotlib>=3.7",
|
|
"seaborn>=0.13",
|
|
]
|
|
|
|
[project.urls]
|
|
documentation = "https://docs.makingwithcode.org/retro-gamer"
|
|
|
|
[project.scripts]
|
|
retro-gamer = "retro_gamer.cli:cli"
|
|
|
|
[dependency-groups]
|
|
documentation = [
|
|
"sphinx>=7.0",
|
|
"sphinx-rtd-theme>=2.0",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
retro-games = { path = "../retro", editable = true }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|