-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.03 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
[build-system]
requires = ["scikit-build-core >=0.10", "nanobind >=1.3.2", "typing_extensions"]
build-backend = "scikit_build_core.build"
[project]
name = "ChebTools"
description = "Tools for working with Chebyshev expansion"
readme = "README.md"
requires-python = ">=3.8"
version = "1.13.0"
authors = [
{ name = "Ian Bell", email = "ian.bell@nist.gov" },
]
dependencies = [
"numpy>=1.24.4",
]
#classifiers = [
# "License :: BSD",
#]
[project.urls]
Homepage = "https://github.com/usnistgov/ChebTools"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "build-system.requires"
# 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"
build.verbose = true
#cmake.build-type = "Debug"
#cmake.args = ["-G Xcode", "-DXCODE_DEBUG_PYTHON=ON"]
#cmake.args = ["-DVERBOSE=ON"]
[tool.scikit-build.cmake.define]
CHEBTOOLS_NO_MONOLITH = true
CHEBTOOLS_NO_CATCH = true
CHEBTOOLS_NANOBIND = true