-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
48 lines (43 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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "mad-icp"
version = "0.0.8"
description = "It Is All About Matching Data -- Robust and Informed LiDAR Odometry"
readme = "README.md"
authors = [
{ name = "Simone Ferrari", email = "[email protected]" },
{ name = "Luca Di Giammarino", email = "[email protected]" },
{ name = "Leonardo Brizi", email = "[email protected]" },
{ name = "Emanuele Giacomini", email = "[email protected]" },
]
keywords = ["LiDAR"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
dependencies = [
"PyYAML==6.0.1",
"numpy==1.23.5",
"rosbags==0.9.23",
"open3d",
"matplotlib==3.1.2",
"typer==0.12.3",
"natsort==8.4.0",
"rich==13.7.1",
]
[project.scripts]
mad_icp = "mad_icp.apps.mad_icp:run"
[project.urls]
Homepage = "https://github.com/rvp-group/mad-icp"
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
cmake.source-dir = "mad_icp/"
cmake.verbose = false
cmake.version = ">=3.8"
wheel.install-dir = "mad_icp/src/pybind"