-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.28 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel", "torch"]
build-backend = "setuptools.build_meta"
[project]
name = "neural_graph_mapping"
version = "0.1.0"
requires-python = ">=3.10"
authors = [
{name = "Leonard Bruns", email = "leonardb@kth.se"},
{name = "Jun Zhang"},
{name = "Patric Jensfelt"},
]
description="Efficient neural field-based mapping relative to a pose graph"
readme = "README.md"
dependencies = [
"einops",
"evo",
"pytorch3d @ git+https://github.com/facebookresearch/pytorch3d.git@47d5dc88247035b35ca3cfce159565f92d8fbb75",
"permutohedral_encoding @ git+https://github.com/roym899/permutohedral_encoding.git@bf445adb4b3aa77eeff42d3443bf04b6aad8338b",
"numpy",
"open3d",
"Pillow",
"pyrender",
"rerun-sdk>=0.16",
"scipy",
"tabulate",
"torch>=2.2",
"torchmetrics[image]",
"tqdm",
"wandb",
"yoco>=1.1.0",
]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[project.urls]
Homepage = "https://roym899.github.io/neural_graph_mapping/"
Repository = "https://github.com/roym899/neural_graph_mapping"
[tool.black]
line-length = 95
[tool.ruff]
line-length = 95
select = ["E", "F", "ANN", "D", "W"]
ignore = ["ANN101", "D417", "ANN003"]
[tool.ruff.pycodestyle]
max-doc-length = 95
[tool.ruff.pydocstyle]
convention = "google"