-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.08 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
[build-system]
requires = [
"cmake>=3.28",
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
build-verbosity = 3
before-all = [
"rm -rf {project}/build",
"rm -rf *egg*",
]
manylinux-aarch64-image = "manylinux_2_28"
manylinux-x86_64-image = "manylinux_2_28"
[tool.cibuildwheel.linux]
build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
skip = ["*-manylinux_i686", "*-musllinux*"]
environment-pass = [
"CIBW_ARCHS",
"PIP_NO_BUILD_ISOLATION",
]
before-all = [
"yum install -y epel-release && yum install -y ninja-build cmake gcc"
]
before-build = [
"pip install -r requirements.txt",
"pip install cmake>=3.28 setuptools>=42 wheel"
]
[tool.cibuildwheel.macos]
build = "cp310-* cp311-* cp312-*"
before-build = [
"pip install -r requirements.txt",
"pip install cmake>=3.28 setuptools>=42 wheel"
]
repair-wheel-command = []
[tool.cibuildwheel.windows]
build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
skip = ["*-win32"]
before-build = [
"pip install -r requirements.txt",
"pip install cmake>=3.28 setuptools>=42 wheel"
]