-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.12 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
[project]
name = "diff-rendering"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"ipykernel>=7.2.0",
"matplotlib>=3.10.8",
"numpy>=2.2.6",
"plotly>=6.5.2",
"pytorch3d",
"recon-bench",
"setuptools>=82.0.0",
"torch",
"torchvision",
"tqdm>=4.67.3",
"wheel>=0.46.3",
]
[project.scripts]
diff-rendering = "diff_rendering:main"
[build-system]
requires = ["uv_build>=0.9.22,<0.10.0"]
build-backend = "uv_build"
[tool.uv]
# Require that the package is available for linux ARM.
required-environments = [
"sys_platform == 'linux' and platform_machine == 'aarch64'",
]
[[tool.uv.index]]
name = "pytorch-cu130"
url = "https://download.pytorch.org/whl/cu130"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu130" }
torchvision = { index = "pytorch-cu130" }
pytorch3d = { git = "https://github.com/facebookresearch/pytorch3d.git", rev = "main" }
recon-bench = { path = "../recon-bench" }
[tool.jupytext]
formats = "ipynb,py:percent"
[dependency-groups]
dev = [
"setuptools>=82.0.0",
"wheel>=0.46.3",
]