-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
71 lines (63 loc) · 1.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "arena-rosnav"
version = "0.1.0"
description = ""
authors = ["ReykCS <reyk-carstens@web.de>", "Volodymyr Shcherbyna <edu@vshch.com>"]
[tool.poetry.dependencies]
python = "^3.8,<3.11"
rospkg = "^1.4.0"
PyYAML = "^6.0"
filelock = "^3.7.1"
scipy = "^1.8.1"
empy = "^3.3.4"
defusedxml = "^0.7.1"
lxml = "^4.9.1"
netifaces = "^0.11.0"
watchdog = "^3.0.0"
# all planners except rosnav and aio
regex = "^2024.5.15"
shapely = "^2.0.4"
pydantic = "^2.7.2"
[tool.poetry.group.planner.dependencies]
torch = "^1.11.0" # applr, crowdnav, lflh, rlca, sarl, trail
seaborn = "^0.12.2" # lflh
tensorboard = "^2.12.2" # lflh
torchdiffeq = "^0.2.3" # lflh
cvxpy = "^1.3.0" # lflh
cvxpylayers = "^0.1.5" #lflh
mpi4py = "^3.1.4" # cadrl, rlca
tensorboardx = "^2.6" # applr
gym = "^0.22" # applr, crowdnav, sarl, trail
opencv-python = "^4.8" # applr
# rosnav incl training toolchain
[tool.poetry.group.training]
optional = true
[tool.poetry.group.training.dependencies]
stable-baselines3 = {path = "../utils/stable-baselines3", develop = true}
torch = "^1.11.0"
wandb = "^0.13.9"
tensorboard = "^2.12.2"
torchdiffeq = "^0.2.3"
diffcp = "^1.0.21"
cvxpy = "^1.3.0"
cvxpylayers = "^0.1.5"
mpi4py = "^3.1.4"
gputil = "^1.4.0"
tensorboardx = "^2.6"
gym = "^0.22"
opencv-python = "^4.8"
sb3-contrib = "^2.1.0"
shimmy = "^1.3.0"
# crowdsim deps
[tool.poetry.group.social.dependencies]
pysocialforce = "^1.1.2"
socialforce = "^0.2.3"
pyinstrument = "^4.6.1"
sismic = "^1.6.6"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["setuptools==62.2.0", "wheel==0.38.4"]
build-backend = "setuptools.build_meta"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"