-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 842 Bytes
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
[build-system]
requires = ["scikit-build-core>=0.5"]
build-backend = "scikit_build_core.build"
[project]
name = "openmeta"
description = "Safe, format-agnostic metadata reads (EXIF/TIFF decoding)"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE.md" }
dynamic = ["version"]
[tool.scikit-build]
minimum-version = "build-system.requires"
cmake.version = "CMakeLists.txt"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "VERSION"
regex = '^\s*(?P<value>\d+\.\d+\.\d+)\s*$'
[tool.scikit-build.cmake.define]
OPENMETA_BUILD_PYTHON = "ON"
OPENMETA_BUILD_WHEEL = "OFF"
OPENMETA_BUILD_TOOLS = "OFF"
OPENMETA_BUILD_TESTS = "OFF"
OPENMETA_BUILD_FUZZERS = "OFF"
OPENMETA_BUILD_FUZZTEST = "OFF"
OPENMETA_BUILD_DOCS = "OFF"
OPENMETA_BUILD_SHARED = "OFF"
OPENMETA_BUILD_STATIC = "ON"