-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (89 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
94 lines (89 loc) · 1.9 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "cleanrl"
version = "2.0.0b1"
description = "High-quality single file implementation of Deep Reinforcement Learning algorithms with research-friendly features"
authors = [{ name = "Costa Huang", email = "costa.huang@outlook.com" }]
requires-python = ">=3.8,<3.11"
readme = "README.md"
license = "MIT"
keywords = [
"reinforcement learning",
"machine learning",
"research",
]
dependencies = [
"tensorboard>=2.10.0",
"wandb>=0.13.11",
"gym==0.23.1",
"gymnasium==0.29.1",
"torch==2.4.1",
"moviepy>=1.0.3",
"pygame>=2.1",
"huggingface-hub>=0.11.1",
"rich<12.0",
"tenacity>=8.2.2",
"tyro>=0.5.10",
]
[project.optional-dependencies]
atari = [
"ale-py==0.8.1",
"AutoROM[accept-rom-license]~=0.4.2",
"opencv-python>=4.6.0.66,<5",
"shimmy>=1.1.0",
]
envpool = ["envpool>=0.6.4,<0.7", "opencv-python>=4.6.0.66,<5",]
procgen = ["procgen>=0.10.7,<0.11"]
mujoco = [
"mujoco<=2.3.3",
"imageio>=2.14.1,<3",
]
dm_control = [
"shimmy>=1.1.0",
"mujoco<=2.3.3",
"dm-control>=1.0.10",
"h5py>=3.7.0",
]
pettingzoo = [
"PettingZoo==1.18.1",
"SuperSuit==3.4.0",
"multi-agent-ale-py==0.1.11",
]
jax = [
"jax==0.4.8",
"jaxlib==0.4.7",
"flax==0.6.8",
"optax==0.1.4",
"chex==0.1.5",
"scipy<1.13.0"
]
optuna = [
"optuna>=3.0.1,<4",
"optuna-dashboard>=0.7.2,<0.8",
"typing_extensions>=4.6.0"
]
docs = [
"mkdocs-material>=8.4.3,<9",
"markdown-include>=0.7.0,<0.8",
"openrlbenchmark>=0.1.1b4,<0.2",
]
cloud = [
"boto3>=1.24.70,<2",
"awscli>=1.31.0,<2",
]
plot = []
pytest = ["pytest>=7.1.3,<8"]
[dependency-groups]
dev = ["pre-commit>=2.20.0,<3"]
[tool.hatch.build.targets.sdist]
include = [
"cleanrl",
"cleanrl_utils",
]
[tool.hatch.build.targets.wheel]
include = [
"cleanrl",
"cleanrl_utils",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"