-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (37 loc) · 1.24 KB
/
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
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["scikit-build-core>=0.10", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "pyfftconv"
version = "0.5.1"
description = "A Python wrapper for FFT-based convolution and hilbert transform using FFTW"
authors = [{ name = "Taylor Nie", email = "tnie@tuta.io" }]
dependencies = ["numpy"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
]
[project.urls]
homepage = "https://github.com/kwsp/fftconv"
[tool.scikit-build]
minimum-version = "build-system.requires"
logging.level = "INFO"
cmake.version = ">=3.20"
cmake.args = [
"--preset=clang",
"-GNinja", # -GNinja overrides the "Ninja Multi-Config" defined in the preset
]
cmake.build-type = "Release"
cmake.source-dir = "."
build.verbose = true
build.targets = ["_pyfftconv"]
wheel.packages = ["py/pyfftconv"]