Skip to content

Commit 41d6fa5

Browse files
committed
Move pymeshlab to optional
1 parent 96d56b6 commit 41d6fa5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ The fastest way to get going is to install this repository as an editable packag
2525
```bash
2626
python3 -m venv cube_env
2727
source cube_env/bin/activate
28-
pip install -e .
28+
pip install -e .[meshlab]
2929
```
30+
> **Note**: The `[meshlab]` dependency can be removed for better compatibility support but mesh simplification won't be supported.
31+
3032

3133
## Inference
3234

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,11 @@ dependencies = [
2525
"warp-lang",
2626
"accelerate",
2727
"scikit-image",
28-
"pymeshlab",
2928
"huggingface_hub[cli]",
3029
]
3130
[project.optional-dependencies]
32-
lint = ["ruff","pyright"] # Development tools
33-
31+
meshlab = ["pymeshlab"]
32+
lint = ["ruff==0.9.10"]
3433
[project.urls]
3534
Homepage = "TODO"
3635

0 commit comments

Comments
 (0)