-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 950 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 950 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
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kinect-forge"
version = "0.1.0"
description = "Kinect-based 3D scanning toolkit for Ubuntu"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "Nik Reljin"}]
keywords = ["kinect", "3d", "scanner", "depth", "open3d"]
# Core deps are intentionally minimal; sensor backends are optional extras.
dependencies = [
"numpy>=1.26",
"open3d>=0.18",
"opencv-python>=4.9",
"imageio>=2.34",
"trimesh>=4.4",
"typer>=0.12",
"rich>=13.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"ruff>=0.6",
"mypy>=1.10",
]
packaging = [
"pyinstaller>=6.7",
]
[project.scripts]
kinect-forge = "kinect_forge.cli:app"
[tool.ruff]
line-length = 100
[tool.mypy]
python_version = "3.10"
strict = true
[[tool.mypy.overrides]]
module = ["open3d", "open3d.*"]
ignore_missing_imports = true