-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.78 KB
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
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["scikit-build-core>=0.10", "pybind11>=2.12", "numpy>=1.20"]
build-backend = "scikit_build_core.build"
[project]
name = "scikit-surgeryopencvcpp"
version = "0.2.0"
description = "Image-guided surgery functions, in C++, using OpenCV and wrapped in Python."
readme = "README.md"
license = "BSD-3-Clause"
authors = [
{ name = "Matt Clarkson", email = "m.clarkson@ucl.ac.uk" },
]
requires-python = ">=3.9"
dependencies = ["numpy>=1.20"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
[project.urls]
Homepage = "https://github.com/UCL/scikit-surgeryopencvcpp"
Repository = "https://github.com/UCL/scikit-surgeryopencvcpp"
[tool.scikit-build]
cmake.version = ">=3.15"
cmake.build-type = "Release"
wheel.packages = []
wheel.exclude = ["include/**", "lib/**", "lib64/**", "bin/**", "share/**", "etc/**", "x64/**", "opencv_unused/**"]
install.strip = false
[tool.scikit-build.cmake.define]
BUILD_TESTING = "OFF"
BUILD_PYTHON_BINDINGS = "ON"
[tool.cibuildwheel]
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
skip = "*-musllinux_*"
test-requires = ["numpy"]
test-command = "python -c \"import sksurgeryopencvpython; print('Import OK')\""
[tool.cibuildwheel.linux]
archs = ["x86_64"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]