-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (34 loc) · 1.05 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
[project]
name = "code-data-share"
version = "0.1.0"
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
]
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
skip = "*-musllinux*"
[tool.cibuildwheel.macos]
archs = ["x86_64", "universal2", "arm64"]
[tool.cibuildwheel.windows]
archs = ["AMD64", "ARM64"]
test-skip = "*-win_arm64"
[tool.scikit-build]
wheel.packages = ["src/cds"]