-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
executable file
·84 lines (76 loc) · 1.52 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
[tool.black]
line-length = 240
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "vcr-gaus"
version = "0.0.0.dev0"
description = "VCR-GauS: View Consistent Depth-Normal Regularizer for Gaussian Surface Reconstruction"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
f1eval = [
"open3d==0.10.0",
"numpy"
]
train = [
"torch==2.0.1",
"torchvision==0.15.2",
"torchaudio==2.0.2",
"numpy==1.26.1",
"open3d",
"plyfile",
"ninja",
"GPUtil",
"opencv-python",
"lpips",
"trimesh",
"pymeshlab",
"termcolor",
"wandb",
"imageio",
"scikit-image",
"torchmetrics",
"mediapy",
]
[project.urls]
"Homepage" = "https://hlinchen.github.io/projects/VCR-GauS/"
"Bug Tracker" = "https://github.com/HLinChen/VCR-GauS/issues"
[tool.setuptools.packages.find]
include = ["vcr*", "trl*"]
exclude = [
"assets*",
"benchmark*",
"docs",
"dist*",
"playground*",
"scripts*",
"tests*",
"checkpoints*",
"project_checkpoints*",
"debug_checkpoints*",
"mlx_configs*",
"wandb*",
"notebooks*",
]
[tool.wheel]
exclude = [
"assets*",
"benchmark*",
"docs",
"dist*",
"playground*",
"scripts*",
"tests*",
"checkpoints*",
"project_checkpoints*",
"debug_checkpoints*",
"mlx_configs*",
"wandb*",
"notebooks*",
]