-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.03 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tactile-mnist"
version = "0.12.0"
description = "The Tactile MNIST benchmark for active tactile perception."
readme = "README.md"
authors = [
{ name = "Tim Schneider", email = "tim@robot-learning.de" }
]
license = { text = "MIT" }
dependencies = [
"ap_gym>=0.4.0",
"filelock",
"numpy",
"transformation3d>=1.0.1",
"tqdm",
"trimesh[easy]",
"scikit-robot-pyrender",
"scipy",
"requests",
"opencv-python",
"av",
"objaverse"
]
[project.urls]
Homepage = "https://github.com/TimSchneider42/tactile-mnist"
[project.optional-dependencies]
examples = [
"matplotlib",
"trimesh[recommend]",
]
torch = [
"taxim[torch]>=1.4.0",
"torch",
"torchvision"
]
jax-cpu = [
"taxim[jax-cpu]>=1.4.0",
"jax"
]
jax = [
"taxim[jax]>=1.4.0",
"jax[cuda12]"
]
[tool.setuptools.packages.find]
include = ["tactile_mnist*"]
[tool.setuptools.package-data]
tactile_mnist = ["resources/*"]