-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
55 lines (47 loc) · 1.11 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
55
[project]
name = "mapmos"
version = "1.0.0"
description = "Building Volumetric Beliefs for Dynamic Environments Exploiting Map-Based Moving Object Segmentation"
readme = "README.md"
authors = [
{ name = "Benedikt Mersch", email = "[email protected]" },
]
license_files = "LICENSE"
dependencies = [
"kiss-icp>=1.0.0",
"diskcache>=5.3.0",
"pytorch_lightning>=1.6.4",
]
[project.optional-dependencies]
all = [
"PyYAML",
"ouster-sdk>=0.7.1",
"pyntcloud",
"trimesh",
"open3d>=0.13",
]
[project.scripts]
mapmos_pipeline = "mapmos.cli:app"
[project.urls]
Homepage = "https://github.com/PRBonn/MapMOS"
[build-system]
requires = [
"scikit_build_core","pybind11",
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = "build"
cmake.verbose = false
cmake.minimum-version = "3.16"
cmake.source-dir = "src/mapmos/pybind/"
editable.mode = "redirect"
editable.rebuild = true
editable.verbose = true
sdist.exclude = ["pybind/"]
wheel.install-dir = "mapmos/pybind/"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "100"