-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 867 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
[project]
name = "pyRecFusionSDK"
version = "0.1.2-rc1"
description = "Python wrapper around the RecFusionSDK library"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Patryk Kiepas", email = "kiepas.patryk@gmail.com" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
dependencies = [
"numpy >=2.3.2"
]
[project.optional-dependencies]
dev = ["pytest >=8.4.1"]
[project.urls]
Homepage = "https://github.com/quepas/pyRecFusionSDK"
[build-system]
requires = ["scikit-build-core >=0.11.5", "nanobind >=2.8.0"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "0.4"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
# Build stable ABI wheels for CPython 3.12+
wheel.py-api = "cp312"