-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
47 lines (38 loc) · 1.15 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
45
46
47
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add clang"
environment = { CXX="clang++" }
[build-system]
requires = ["scikit-build-core >=0.4.3", "pybind11 >=2.13", "typing_extensions"]
build-backend = "scikit_build_core.build"
[project]
name = "teqp"
version = "0.23.0"
description = "teqp: Templated EQuation of state Package"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Ian Bell", email = "ian.bell@nist.gov" },
]
#classifiers = [
# "License :: BSD",
#]
[project.urls]
Homepage = "https://github.com/usnistgov/teqp"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "0.10"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
# The package to be built is that in the teqp folder
wheel.packages = ["teqp"]
build.targets = ["teqp"]
# Build stable ABI wheels for CPython 3.12+
# wheel.py-api = "cp312"
#### Additional options for debugging
# cmake.verbose = true
# cmake.build-type = "Debug"
# cmake.args = ["-G Xcode", "-DXCODE_DEBUG_PYTHON=ON"]
# cmake.args = ["-DVERBOSE=ON"]
[tool.cibuildwheel]
build-verbosity = 1