-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (41 loc) · 879 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
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "NexusSplats"
version = "0.0.1"
description = "Official code release for the NexusSplats paper"
readme = "README.md"
requires-python = ">=3.9"
license = {text="MIT License"}
dependencies = []
[project.scripts]
ns = "method.cli:main"
[project.optional-dependencies]
local = [
"torch>=2.0.0,<2.1.0",
"numpy<2.0.0",
"omegaconf",
"plyfile",
"tqdm",
"click",
"matplotlib",
"mediapy",
"requests",
"tensorboard",
"einops",
"torch-scatter",
"nerfbaselines>=1.2.0",
]
[tool.setuptools.packages.find]
include = ["method*"]
[tool.setuptools.package-data]
"*" = ["*.yml", "*.yaml", "*.json"]
[tool.ruff]
ignore = ["E741", "E501"]
[tool.pyright]
ignore = ["E741", "E501"]
exclude = [
"method/dinov2.py",
"submodules/**/*.py"
]