-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 758 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (37 loc) · 758 Bytes
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
[project]
name = "rl-from-zero"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"gymnasium[classic-control,toy-text]>=0.29.1",
"numpy>=1.24.4",
"tqdm>=4.67.0",
"torch>=2.0.1",
"fire>=0.6.0",
"PyYAML>=6.0.1",
"wandb>=0.17.0",
"pygame>=2.5.2",
"scipy>=1.10.0",
"pettingzoo[mpe]>=1.24.4",
"pytest>=8.2.0",
"matplotlib>=3.8.0",
"imageio>=2.34.0",
"pillow>=10.0.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = [
"A3C*",
"DDPG*",
"IQL*",
"MAPPO*",
"PPO*",
"TD3*",
"TRPO*",
"deepQN*",
"Qlearning*",
]