-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.19 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
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = [
"scikit-build-core>=1.0",
"nanobind>=2.12.0",
]
build-backend = "scikit_build_core.build"
[project]
name = "cricodecs"
version = "1.1.3"
description = "CriWare codec and container library with Python bindings."
readme = "README.md"
requires-python = ">=3.9"
[project.scripts]
cricodecs = "cricodecs:_main"
[tool.scikit-build]
cmake.source-dir = "."
cmake.version = ">=4.2"
cmake.build-type = "Release"
minimum-version = "build-system.requires"
build-dir = "build/{wheel_tag}"
wheel.packages = []
sdist.inclusion-mode = "explicit"
sdist.include = [
"CMakeLists.txt",
"cricodecs_library.cmake",
"pyproject.toml",
"README.md",
"USAGE.md",
"CriCodecs/",
"PyCriCodecs/",
]
sdist.exclude = [
"PyCriCodecs/tests/",
"**/__pycache__/",
"**/*.pyc",
"**/*.pyo",
]
[tool.scikit-build.cmake.define]
CRICODECS_BUILD_PYTHON = "ON"
CRICODECS_BUILD_TESTS = "OFF"
CRICODECS_BUILD_CLI = "OFF"
CRICODECS_INSTALL_CPP = "OFF"
[tool.cibuildwheel]
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
skip = "*-musllinux_* *-win32 *-manylinux_i686"
build-verbosity = 1
manylinux-x86_64-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"