-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 849 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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "digiforests_devkit"
version = "0.1.0"
description = "A development kit for digiforests"
readme = "README.md"
authors = [{ name = "Meher Malladi", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = [
"numpy",
"typer[all]",
"open3d==0.18",
"quickshift @ git+https://github.com/mehermvr/quickshift.git",
# please pre-install torch compiled with CUDA 11.8 manually
"lightning",
"tensorboard",
]
[project.optional-dependencies]
test = ["pytest"]
[tool.scikit-build]
wheel.packages = [
"src/digiforests_dataloader",
"src/forest_pan_seg",
"src/tree_dbh_estimation",
]
build-dir = "build/{wheel_tag}"
wheel.cmake = false
editable.mode = "redirect"
editable.rebuild = true
editable.verbose = true