-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.39 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "OD3D"
authors = [
{name = "Leonhard Sommer", email = "[email protected]"},
]
description = "Neural Mesh, Render and Compare"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["3D", "detection", "object"]
license = {text = "BSD-3-Clause"}
dynamic = ["version"]
dependencies = [
"wheel",
"pytest",
"wget",
"fvcore",
"iopath",
"tqdm",
"requests",
"h5py",
"wandb",
"cython",
"gdown",
"typer",
"hydra-core",
"pygit2",
"numba",
"pandas",
"seaborn",
"plotly",
"pycocotools",
"bboxtools",
"scipy",
"scikit-learn",
"scikit-image",
"seaborn",
"opencv-python",
"timm",
"torch",
"torchvision",
"torchaudio",
"visdom",
"open3d==0.17.0",
"tvb-gdist",
"pycuda",
"co3d@git+https://github.com/facebookresearch/co3d",
"segment-anything@git+https://github.com/facebookresearch/segment-anything.git",
"pytorch3d@git+https://github.com/facebookresearch/pytorch3d@stable",
"CGAL",
]
[project.optional-dependencies]
od3d-gauss-splat = ["diff-gaussian-rasterization@git+https://github.com/limpbot/diff-gaussian-rasterization.git",]
od3d-nvdiffrast = ["nvdiffrast@git+https://github.com/NVlabs/nvdiffrast",]
[project.scripts]
od3d = "od3d.cli._entry:main"