-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (66 loc) · 1.66 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "manual-pa"
version = "0.1.0"
description = "Official implementation of Manual PA"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"autorootcwd>=1.0.1",
"debugpy>=1.8.17",
"einops>=0.8.1",
"ftfy>=6.3.1",
"huggingface-hub>=0.36.0",
"imageio>=2.37.0",
"ipykernel>=7.1.0",
"ipywidgets>=8.1.8",
"jsonargparse[signatures]>=4.42.0",
"matplotlib>=3.10.7",
"opencv-python>=4.12.0.88",
"pandas>=2.3.3",
"peft>=0.17.1",
"plotly>=6.3.1",
"python-dotenv>=1.2.1",
"pytorch-lightning>=2.5.5",
"pytorch3d==0.7.8+pt2.8.0cu128",
"rich>=14.2.0",
"scikit-image>=0.25.2",
"scipy>=1.16.3",
"termcolor>=3.2.0",
"torch==2.8.0",
"torch-scatter>=2.1.2",
"torchmetrics>=1.8.2",
"torchvision==0.23.0",
"transformers>=4.57.1",
"trimesh>=4.9.0",
"wandb>=0.22.3",
]
[tool.uv]
find-links = ["https://data.pyg.org/whl/torch-2.8.0+cu128.html"]
[tool.uv.sources]
torch = [{ index = "pytorch-cu128" }]
torchvision = [{ index = "pytorch-cu128" }]
pytorch3d = [{ index = "pytorch3d" }]
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[[tool.uv.index]]
name = "pytorch3d"
url = "https://miropsota.github.io/torch_packages_builder"
explicit = true
[tool.uv.extra-build-dependencies]
torch-scatter = ["torch"]
# https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 120
select = [
"I", # isort
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"UP", # pyupgrade
]
ignore = ["F401"]
[tool.pyright]
exclude = ["**/__pycache__", "data", "logs"]
typeCheckingMode = "off"