-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml.bak
35 lines (31 loc) · 1016 Bytes
/
pyproject.toml.bak
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
30
31
32
33
34
35
[tool.poetry]
name = "Mario-RL"
version = "0.1.0"
description = "Reinforcement learning using nes-py for Super Mario Bros"
authors = ["swappy <[email protected]>"]
license = "WTFPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.11"
gymnasium = {extras = ["box2d"], version = "^0.29.1"}
nes-py = {path = "custom_packages/nes_py-8.3.0-cp311-cp311-win_amd64.whl"}
gym-super-mario-bros = {path = "custom_packages/gym_super_mario_bros-7.5.0-py3-none-any.whl"}
ipykernel = "^6.29.2"
pygame = "^2.5.2"
swig = "^4.2.0"
torch = { version = "2.2.0+cu121", source = "torch-cu121" }
stable-baselines3 = "2.2.1"
numpy = "^1.26.4"
matplotlib = "^3.8.2"
torchrl = "^0.3.0"
[[tool.poetry.source]]
name = "torch-cu121"
url = "https://download.pytorch.org/whl/cu121"
priority = "supplemental"
[[tool.poetry.source]]
name = "torch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"