-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
41 lines (36 loc) · 1.09 KB
/
pyproject.toml
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
36
37
38
39
40
41
[tool.poetry]
name = "ppo_details"
version = "0.1.0"
description = ""
authors = ["Iclr Blog <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
torch = "^1.7.1"
stable-baselines3 = "^1.1.0"
tensorboard = "^2.5.0"
wandb = "0.12.1"
pyglet = "^1.5.19"
opencv-python = "^4.5.3"
gym = "^0.21.0"
# Optional dependencies
spyder = {version = "^5.1.1", optional = true}
ale-py = {version = "^0.7", optional = true}
AutoROM = {version = "^0.4.2", optional = true, extras = ["accept-rom-license"]}
pybullet = {version = "3.1.8", optional = true}
gym-microrts = {version = "^0.2.0", optional = true}
free-mujoco-py = {version = "^2.1.6", optional = true}
envpool = {version = "^0.4.4", optional = true}
procgen = {version = "^0.10.6", optional = true}
[tool.poetry.dev-dependencies]
pre-commit = "^2.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
atari = ["ale-py", "AutoROM"]
pybullet = ["pybullet"]
gym-microrts = ["gym-microrts"]
spyder = ["spyder"]
mujoco = ["free-mujoco-py"]
envpool = ["envpool"]
procgen = ["procgen"]