-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
52 lines (45 loc) · 1.28 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
[project]
name = "feature_splatting"
version = "0.0.3"
description = "Feature Splatting"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["gaussian splatting", "feature fields", "physics simulation", "3D segmentation"]
authors = [
{ name = "Ri-Zhao Qiu", email = "[email protected]" },
]
dependencies = [
"einops",
"ftfy",
"gdown",
"matplotlib",
"nerfstudio",
"numpy",
"gsplat>=1.0.0",
"pillow",
"regex",
"torchtyping",
"tqdm",
"segment-anything @ git+https://github.com/facebookresearch/segment-anything.git",
"MobileSAMV2 @ git+https://github.com/RogerQi/MobileSAMV2.git",
"maskclip_onnx @ git+https://github.com/RogerQi/maskclip_onnx.git",
"taichi",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
]
[tool.black]
line-length = 120
[project.urls]
"Homepage" = "https://feature-splatting.github.io"
"Source" = "https://github.com/vuer-ai/feature-splatting"
[project.entry-points."nerfstudio.method_configs"]
feature-splatting = "feature_splatting.feature_splatting_config:feature_splatting_method"
[tool.setuptools.packages]
find = { include = ["feature_splatting", "feature_splatting.*"] }
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"