-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.63 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
58
59
60
[project]
name = "hyve"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"discregrid",
"einops==0.8.1",
"fileseq>=2.3.0",
"ipykernel>=7.1.0",
"jsonargparse[signatures]>=4.45.0",
"lightning[extra]==2.5",
"meshio==5.1.0",
"numpy==1.26.4",
"open3d>=0.19.0",
"pandas>=3.0.0",
"pathos>=0.3.5",
"plyfile>=1.1.3",
"polyscope>=2.5.0",
"protobuf==4.25",
"pyevtk==1.2.0",
"pyg-lib>=0.5.0",
"pyg-lib ; sys_platform == 'linux' or sys_platform == 'win32'",
"pytest>=9.0.2",
"rtree>=1.4.1",
"scikit-image>=0.26.0",
"scikit-learn>=1.8.0",
"scipy>=1.17.0",
"tensorboard==2.14.0",
"timm==0.9.16",
"torch==2.8",
"torch-cluster ; sys_platform == 'linux' or sys_platform == 'win32'",
"torch-geometric>=2.7.0",
"torch-scatter ; sys_platform == 'linux' or sys_platform == 'win32'",
"torch-sparse ; sys_platform == 'linux' or sys_platform == 'win32'",
"torch-spline-conv ; sys_platform == 'linux' or sys_platform == 'win32'",
"torchaudio>=2.8.0",
"torchvision>=0.23.0",
"torchviz>=0.0.3",
"trimesh>=4.11.1",
]
[tool.uv]
# This tells uv to scan this HTML page for wheels (like pip -f)
find-links = [
"https://data.pyg.org/whl/torch-2.8.0+cu128.html"
]
no-build-isolation-package = ["torch-cluster", "torch-scatter", "torch-sparse", "torch-spline-conv"]
[tool.uv.sources]
discregrid = { git = "https://github.com/digitalillusions/Discregrid.git" }
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hyve"]