-
Notifications
You must be signed in to change notification settings - Fork 744
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.81 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "cleanrl"
version = "0.5.0"
description = "High-quality single file implementation of Deep Reinforcement Learning algorithms with research-friendly features"
authors = ["Costa Huang <costa.huang@outlook.com>"]
include = ["cleanrl_utils"]
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
torch = "^1.7.1"
tensorboard = "^2.5.0"
wandb = "^0.12.1"
pyglet = "^1.5.19"
opencv-python = "^3.4.0"
stable-baselines3 = "^1.1.0"
gym = {version = "^0.23.0", extras = ["classic_control"]}
# Optional dependencies
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}
procgen = {version = "^0.10.4", optional = true}
pettingzoo = {version = "^1.15.0", optional = true}
supersuit = {version = "^3.3.3", optional = true}
pygame = {version = "^2.0.1", optional = true}
pymunk = {version = "^6.2.0", optional = true}
pandas = {version = "^1.3.3", optional = true}
seaborn = {version = "^0.11.2", optional = true}
boto3 = {version = "^1.18.57", optional = true}
awscli = {version = "^1.20.57", optional = true}
spyder = {version = "^5.1.5", optional = true}
pytest = {version = "^6.2.5", optional = true}
free-mujoco-py = {version = "^2.1.6", optional = true}
mkdocs-material = {version = "^7.3.4", optional = true}
envpool = {version = "^0.4.3", optional = true}
[tool.poetry.dev-dependencies]
pre-commit = "^2.17.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
atari = ["ale-py", "AutoROM"]
pybullet = ["pybullet"]
procgen = ["procgen"]
pettingzoo = ["pettingzoo", "pygame", "pymunk"]
plot = ["pandas", "seaborn"]
cloud = ["boto3", "awscli"]
spyder = ["spyder"]
pytest = ["pytest"]
mujoco = ["free-mujoco-py"]
docs = ["mkdocs-material"]
envpool = ["envpool"]