forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 802 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (26 loc) · 802 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
[build-system]
requires = [
"scikit-build-core>=0.9",
"cython>=3.2",
]
build-backend = "scikit_build_core.build"
[project]
name = "cefpython3"
dynamic = ["version"]
requires-python = ">=3.10"
license = { text = "BSD-3-Clause" }
description = "Python bindings for the Chromium Embedded Framework"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: BSD Software License",
"Operating System :: OS Independent",
]
[tool.scikit-build]
cmake.build-type = "Release"
cmake.args = ["-A", "x64"]
wheel.packages = ["cefpython3"]