Initial commit
This commit is contained in:
26
pyproject.toml
Normal file
26
pyproject.toml
Normal file
@@ -0,0 +1,26 @@
|
||||
[project]
|
||||
name = "retro-gamer"
|
||||
version = "0.1.0"
|
||||
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.2.0",
|
||||
"torch>=2.0",
|
||||
"numpy>=1.24",
|
||||
"click>=8.0",
|
||||
"tomli-w>=1.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
retro-gamer = "retro_gamer.cli:cli"
|
||||
|
||||
[dependency-groups]
|
||||
documentation = [
|
||||
"sphinx>=7.0",
|
||||
"sphinx-rtd-theme>=2.0",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
Reference in New Issue
Block a user