-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.1 KB
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
[project]
authors = [{name = "Jiangwei Ren", email = "reverhere@gmail.com"}]
dependencies = [
"numpy<2",
"Pillow",
"huggingface_hub",
"einops",
"safetensors",
"opencv-python",
]
name = "wat3r"
requires-python = ">= 3.10"
version = "0.1.0"
[project.optional-dependencies]
demo = [
"gradio==5.17.1",
"viser==1.0.16",
"tqdm",
"hydra-core",
"omegaconf",
"opencv-python",
"scipy",
"onnxruntime",
"requests",
"trimesh",
"matplotlib",
"pandas",
"pydantic==2.11.5",
"open3d",
"roma",
"pycolmap==3.12.6",
]
# Using setuptools as the build backend
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
# setuptools configuration
[tool.setuptools.packages.find]
where = ["."]
include = ["wat3r*"]
# Pixi configuration
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
wat3r = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
demo = { features = ["demo"], solve-group = "default" }
[tool.pixi.tasks]