forked from tud-airlab/mppi-isaac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 923 Bytes
/
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
[tool.poetry]
name = "mppiisaac"
version = "0.1.0"
description = ""
authors = [
"Corrado Pezzato <c.pezzato@tudelft.nl>",
"Chadi Salmi <c.salmi@tudelft.nl",
"Elia Trevisan <e.trevisan@tudelft.nl>",
"Max Spahn <m.spahn@tudelft.nl>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8,<3.9"
pytest = "^7.2.1"
isaacgym = {path = "thirdparty/isaacgym/python", develop = true}
hydra-core = "^1.3.1"
ghalton = "^0.6.2"
mpscenes = "^0.3.1"
fabrics = "^0.6.2"
yourdfpy = "^0.0.52"
pytorch3d = "^0.3.0"
urdfenvs = "^0.7.1"
casadi = "3.5.5"
zerorpc = "^0.6.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pylint = "^2.16.1"
black = "^23.1.0"
[tool.poetry.group.benchmark]
optional = true
[tool.poetry.group.benchmark.dependencies]
plannerbenchmark = {version = "^1.1.1", extras = ["mpc"]}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"