-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (41 loc) · 878 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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "samesh"
version = "0.0.1"
description = "Segment Any Mesh"
readme = "README.md"
requires-python = ">=3.12.0"
classifiers = [
"Programming Language :: Python",
]
dependencies = [
"pandas",
"omegaconf",
"igraph",
"networkx",
"pyrender",
"pymeshlab",
"trimesh",
"lightning",
"tqdm",
"scikit-learn",
"natsort",
"numpy==1.26.4",
"torch==2.3.1",
"torchvision==0.18.1",
"torchtyping",
"matplotlib",
"opencv-python",
"transformers",
]
# Install PyOpenGL==3.1.7 if pyrender errors
[project.optional-dependencies]
# Development dependencies
dev = []
# Install SAM2 with --no-build-isolation flag if build errors
[project.scripts]
[tool.setuptools.packages.find]
where = ["src"]
include = ["samesh*"]