-
-
Notifications
You must be signed in to change notification settings - Fork 514
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·122 lines (114 loc) · 2.82 KB
/
pyproject.toml
File metadata and controls
executable file
·122 lines (114 loc) · 2.82 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[project]
name = "pyslam"
version = "2.10.5"
authors = [
{name = "Luigi Freda", email = "luigifreda@gmail.com"},
]
maintainers = [
{name = "Luigi Freda", email = "luigifreda@gmail.com"},
]
description = "pySLAM is a Python-based Visual SLAM pipeline that supports monocular, stereo, and RGB-D cameras. It offers a wide range of modern local and global features, multiple loop-closing strategies, a volumetric reconstruction pipeline, integration of depth prediction models, and semantic segmentation for enhanced scene understanding."
readme = "README.md"
requires-python = ">=3.11.9"
dependencies = [
"absl-py==1.4.0",
"astor==0.8.1",
"cycler>=0.10.0",
"decorator==4.4.2",
"gast==0.3.3",
"google-pasta==0.2.0",
"grpcio>=1.56.2",
"h5py>=3.1.1",
"imageio==2.34.2",
"importlib_metadata==8.0.0",
"kornia==0.8.2",
"kornia_moons==0.2.9",
"Keras-Applications==1.0.8",
"Keras-Preprocessing==1.1.2",
"kiwisolver>=1.0.1",
"Markdown==3.1.1",
"matplotlib==3.7.5",
"networkx==3.1",
"numpy>=1.24.3",
"ordered-set==4.1.0",
"pillow>=10.4.0",
"protobuf>=3.20.3",
"psutil>=5.5.1",
"pybind11==2.13.1",
"pygame==2.6.0",
"pyopengl==3.1.7",
"pyOpenSSL>=19.0.0",
"pyparsing>=2.4.6",
"python-dateutil==2.8.2",
"pyyaml>=6.0.1",
"scipy>=1.10.1",
"scikit-image==0.21.0",
"seaborn==0.13.2",
"six==1.14.0",
"sklearn-pandas==1.8.0",
"termcolor==2.4.0",
"tf-slim==1.1.0",
"tqdm==4.66.4",
"Werkzeug>=2.2.2",
"wrapt==1.17.2",
"yacs==0.1.8",
"onnxruntime>=1.22.0",
"gdown",
"hjson",
"ujson",
"jinja2",
"timm",
"rerun-sdk>=0.17.0",
"einops",
"fast-pytorch-kmeans",
"pyflann-py3",
"evo",
"trimesh",
"munch",
"wandb",
"plyfile",
"glfw",
"PyGLM",
"lpips",
"rich",
"ruff",
"gradio",
"roma",
"quaternion",
"open3d",
"pyqtgraph",
"pyqt5",
"pillow_heif",
"opt_einsum",
"configargparse",
"numba",
"pytest",
"mcap",
"mcap-ros2-support",
"mcap-ros1-support",
#"faiss-cpu",
]
[tool.setuptools]
packages = ["pyslam", "thirdparty"]
[tool.setuptools.package-dir]
pyslam = "pyslam"
thirdparty = "thirdparty"
[project.urls]
Repository = "https://github.com/luigifreda/pyslam"
[tool.black]
line-length = 100 # default 88; 100 or 120 are common in industry
target-version = ['py311']
# only format .py / .pyi files
include = '\.pyi?$'
# exclude dirs (regex; Black uses re.VERBOSE so whitespace/comments are OK)
exclude = '''
/(
\.git
| \.mypy_cache
| \.pytest_cache
| \.venv
| logs
| results
| thirdparty/(?! (contextdesc|g2opy|geodesc|gtsam_factors|l2net|l2net_keras|lietorch|monogs|mvdust3r_scripts|orbslam2_features|pangolin|pybind11|pydbow2|pydbow3|pyibow|ros2_pybindings) (?:/|$) )
)/
'''