-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.31 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
[tool.poetry]
name = "sim2sim"
version = "0.1.0"
description = ""
authors = ["Nicholas Pfaff <nepfaff@mit.edu>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
torch = {version = "2.0.1", source = "torch_cuda118"}
pytorch3d = {url = "https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py310_cu118_pyt201/pytorch3d-0.7.4-cp310-cp310-linux_x86_64.whl"}
numpy = "^1.25.2"
wandb = "^0.15.10"
trimesh = "^4.0.0"
open3d = "^0.17.0"
matplotlib = "3.4.3"
tabulate = "^0.9.0"
scipy = "^1.11.2"
tqdm = "^4.66.1"
meshio = "^5.3.4"
coacd = "^0.0.5"
manipulation = {git = "https://github.com/RussTedrake/manipulation.git"}
prettytable = "^3.9.0"
pyrender = "^0.1.45"
plotly = "^5.17.0"
pyopengl-accelerate = "^3.1.7"
scikit-learn = "^1.3.0"
addict = "^2.4.0"
pandas = "^2.1.0"
ipython = "^8.15.0"
drake = "^1.33.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
black = "^23.9.1"
isort = "^5.12.0"
poetry-pre-commit-plugin = "^0.1.2"
[[tool.poetry.source]]
name = "torch_cuda118"
url = "https://download.pytorch.org/whl/cu118"
priority = "supplemental"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.isort]
profile = 'black'
lines_between_types = 1
combine_as_imports = true
known_first_party = ['sim2sim']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"