forked from openSUSE/libsolv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 1.08 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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "solv"
description = "A free package dependency solver using a satisfiability algorithm."
readme = "README"
license = "BSD-3-Clause"
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.scikit-build]
cmake.args = [
"-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo",
"-DENABLE_PYTHON3:BOOL=ON",
"-DENABLE_COMPLEX_DEPS:BOOL=ON",
"-DENABLE_RPMMD:BOOL=ON",
"-DENABLE_STATIC:BOOL=ON",
"-DENABLE_STATIC_BINDINGS:BOOL=ON",
"-DWITH_LIBXML2:BOOL=ON",
]
metadata.version.provider = "scikit_build_core.metadata.regex"
metadata.version.input = "VERSION"
metadata.version.regex = "(?P<value>.+)"