-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpyproject.toml
39 lines (32 loc) · 938 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
35
36
37
38
39
[build-system]
requires = ["scikit-build-core >=0.4.3", "nanobind >=1.3.2", "cmake>=3.15"]
build-backend = "scikit_build_core.build"
[project]
name = "fcpw"
version = "1.1.4"
description = "Python bindings for FCPW"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Rohan Sawhney" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/rohan-sawhney/fcpw"
[tool.scikit-build]
cmake.minimum-version = "3.15"
cmake.build-type = "Release"
# 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"
[tool.scikit-build.cmake.define]
FCPW_BUILD_BINDINGS = "ON"
FCPW_ENABLE_GPU_SUPPORT = "OFF"
FCPW_USE_ENOKI = "ON"
FCPW_BUILD_DEMO = "OFF"
FCPW_BUILD_TESTS = "OFF"