-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpyproject.toml
47 lines (41 loc) · 966 Bytes
/
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
[project]
name = "zipnerf"
description = "Zipnerf plugin for creating and registering zipnerf in nerfstudio."
version = "0.1.0"
dependencies = [
"nerfstudio >= 0.3.0",
"numpy",
"torch",
"absl-py",
"accelerate",
"gin-config",
"imageio",
"imageio[ffmpeg]",
"matplotlib",
"mediapy",
"opencv-contrib-python",
"opencv-python",
"Pillow",
"trimesh",
"pymeshlab",
"xatlas",
"plyfile",
"rawpy",
"ninja",
"scipy",
"scikit-image",
"scikit-learn",
"tensorboard",
"tensorboardX",
"tqdm",
"gin-config"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["zipnerf_ns*","internal*","gridencoder*","extensions*","configs*"]
[tool.setuptools.package-data]
configs = ["*.gin"]
# register the entry point of your new method here:
[project.entry-points.'nerfstudio.method_configs']
zipnerf_ns = 'zipnerf_ns.zipnerf_config:zipnerf_method'