-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
38 lines (28 loc) · 819 Bytes
/
requirements.txt
File metadata and controls
38 lines (28 loc) · 819 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
# BlendMR Dependencies
# Install with: pip install -r requirements.txt
# Core numerical and scientific computing
numpy>=1.21.0
scipy>=1.7.0
# Mesh processing
libigl>=2.4.0
pyvista>=0.37.0
meshplot>=0.4.0
# Image processing
Pillow>=9.0.0
# Machine learning (for spectral clustering)
scikit-learn>=1.0.0
# Optimization solver
# NOTE: Gurobi requires a separate license installation
# Download from: https://www.gurobi.com/downloads/
# Academic licenses are free: https://www.gurobi.com/academia/academic-program-and-licenses/
gurobipy>=9.5.0
# Visualization
matplotlib>=3.5.0
# Geometry processing
alphashape>=1.3.0
# Rectangle packing
rectangle-packing-solver>=0.0.5
# Argument parsing (included in Python stdlib, listed for completeness)
# argparse
# Additional utilities
pickle5>=0.0.11;python_version<"3.8"