-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 901 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
[build-system]
requires = ["scikit-build-core>=0.10", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "homlib"
version = "0.1.1"
description = "State-of-the-art homography estimators."
readme = "README.md"
authors = [
{ name = "Marcus Valtonen Ornhag", email = "marcus.valtonen.ornhag@ericsson.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[tool.scikit-build]
wheel.packages = ["python/src/homlib"]
wheel.expand-macos-universal-tags = true
minimum-version = "build-system.requires"
[tool.scikit-build.cmake.define]
BUILD_EXAMPLES = "OFF"
BUILD_TESTS = "OFF"