forked from flatironinstitute/FMM3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (27 loc) · 900 Bytes
/
pyproject.toml
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
[build-system]
requires = [
"scikit-build-core >= 0.4.3",
"cmake >= 3.19",
"numpy >= 1.12.0",
]
build-backend = "scikit_build_core.build"
[project]
name = "fmm3dpy"
description = "Python bindings for the FMM3D library"
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["numpy >= 1.12.0"]
dynamic = ["version"]
[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}"
cmake.targets = ["fmm3d", "hfmm3d_fortran", "lfmm3d_fortran", "emfmm3d_fortran", "stfmm3d_fortran"]
wheel.packages = ["python/fmm3dpy"]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "python/fmm3dpy/__init__.py"
[tool.cibuildwheel]
# Necessary to see build output from the actual compilation
build-verbosity = 1