-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 973 Bytes
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
[project]
name = "interactive_segmesh3d"
version = "0.1.0"
requires-python = ">=3.12"
description = "Interactive 3D mesh segmentation with SAM3 and PyTorch3D"
authors = [
{ name = "Yihan Zhang" },
{ name = "Ningyuan Tang" }
]
dependencies = [
# -------- vision / geometry --------
"opencv-python",
"scikit-image",
"trimesh==4.11.2",
"pycocotools==2.0.11",
"decord==0.6.0",
# -------- transformers / text (SAM3 deps) --------
"timm==1.0.24",
"huggingface_hub",
"ftfy",
"regex",
"iopath",
"typing_extensions==4.15.0",
# -------- math / utils --------
"einops==0.8.2",
"tqdm",
"networkx==3.6.1",
"psutil==7.2.2",
"pandas",
# -------- visualization --------
"matplotlib",
"imageio",
"plotly",
# -------- backend / api --------
"fastapi==0.128.8",
"pydantic==2.12.5",
"uvicorn==0.40.0",
"python-multipart==0.0.22",
]
[tool.setuptools]
py-modules = []