-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
102 lines (95 loc) · 2.18 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "flowbot3d"
version = "0.1.0"
description = "FlowBot3D: Learning 3D Articulation Flow to Manipulate Articulated Objects"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
authors = [
{email = "[email protected]", name = "Ben Eisner"},
{email = "[email protected]", name = "Harry Zhang"},
{email = "[email protected]", name = "David Held"}
]
dependencies = [
"gif",
# "gym <= 0.20.0", # This specific version is probably desired, but the CI no longer seems to build :( will fix later.
"gym",
"h5py",
"numpy <= 1.23.1",
"open3d",
"opencv-python",
"pandas",
"pybullet",
"pyransac3d",
"pytorch-lightning >= 1.6.4",
"pytransform3d",
"rpad-partnet-mobility-utils[pybullet] @ git+https://github.com/r-pad/partnet_mobility_utils",
"rpad-pyg @ git+https://github.com/r-pad/pyg_libs",
"rpad-visualize-3d @ git+https://github.com/r-pad/visualize_3d",
"sapien == 1.1.0; sys_platform == 'linux'",
"scipy",
"shapely",
"torch >= 1.11.0",
"typer >= 0.4.0",
"torch-scatter >= 2.0.9",
"torch-sparse >= 0.6",
"torch-cluster >= 1.6.0",
"torch-spline-conv >= 1.2.1",
"torch-geometric >= 2.0, < 2.3",
"transforms3d",
"trimesh",
"tqdm",
"wandb",
]
[build-system]
requires = [
"setuptools >= 62.3.2",
"setuptools-scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
develop = [
"autoflake",
"black >= 22.3.0",
"isort",
"jupyterlab",
"mypy",
"pre-commit",
"pylint",
"pytest",
"types-tqdm",
]
build_docs = [
"mkdocs-material",
"mkdocstrings[python]",
]
# This is required to allow us to have notebooks/ at the top level.
[tool.setuptools]
packages = ["flowbot3d"]
[tool.isort]
profile = "black"
[tool.mypy]
python_version = 3.8
warn_return_any = true
warn_unused_configs = true
# Uncomment this when you have imports for mypy to ignore.
[[tool.mypy.overrides]]
module = [
"cv2.*",
"gif.*",
"gym.*",
"h5py.*",
"mani_skill.*",
"mani_skill_learn.*",
"open3d.*",
"pandas.*",
"plotly.*",
"pyransac3d.*",
"sapien.*",
"scipy.*",
"torch_geometric.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--ignore=third_party/"