-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "frogger"
version = "0.1.1"
description = "Repository for fast robust grasp generation"
readme = "README.md"
license = {text="Apache 2.0"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
dependencies = [
"dill>=0.3.6",
"drake>=1.22.0",
"jax[cpu]>=0.4.1",
"jaxlib>=0.4.1",
"matplotlib>=3.5.2",
"nlopt>=2.7.1",
"numba>=0.56.4",
"numpy>=1.23.1",
"open3d>=0.16.0",
"pyvhacd>=0.0.2",
"qpth>=0.0.16",
"quantecon>=0.6.0",
"scikit-image>=0.19.3",
"scipy>=1.10.0",
"tbb>=2021.11.0",
"torch>=1.13.1",
"trimesh>=4.0.0",
"vhacdx>=0.0.4",
]
[project.optional-dependencies]
# development-only dependencies
dev = [
"black>=23.3.0",
"flake8>=6.0.0",
"isort>=5.12.0",
"pre-commit>=3.3.2",
"pyglet<2", # for showing meshes in trimesh
]
[options]
dependency_links = [
"https://storage.googleapis.com/jax-releases/jax_releases.html",
"https://download.pytorch.org/whl/cu118",
"https://download.pytorch.org/whl/cu121",
]
[tool.setuptools.packages.find]
include = ["frogger"]