-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpyproject.toml
50 lines (39 loc) · 1.2 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
48
49
50
[[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 = "cCOSMO"
version = "1.0.2"
description = "C++ implementation of COSMO-SAC variants"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Ian Bell", email = "[email protected]" },
]
#classifiers = [
# "License :: BSD",
#]
[project.urls]
Homepage = "https://github.com/usnistgov/COSMOSAC"
[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 = ["cCOSMO"]
# Build stable ABI wheels for CPython 3.12+
# wheel.py-api = "cp312"
wheel.license-files = ["LICENSE.md"]
#### 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