-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 841 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 841 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tree-trunk-mapper"
version = "0.1.0"
description = "Detect and map individual tree trunks from LiDAR point clouds (FinnWoodlands dataset)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"open3d>=0.17",
"numpy>=1.24",
"click>=8.1",
"matplotlib>=3.7",
"scipy>=1.10",
"scikit-learn>=1.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.1",
]
ros2 = [
"sensor-msgs",
"geometry-msgs",
"visualization-msgs",
"std-msgs",
"rclpy",
]
[project.scripts]
tree-trunk-mapper = "tree_trunk_mapper.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py310"
line-length = 100