forked from solvespace/solvespace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.13 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
42
43
44
45
46
[build-system]
requires = ["scikit-build-core", "Cython", "cmake", "ninja"]
build-backend = "scikit_build_core.build"
[project]
name = "solvespace"
version = "0.0.0"
description="SolveSpace solver wrapped with Cython"
readme = "README.md"
authors = [
{ name = "Koen Schmeets", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
cmake.verbose = true
cmake.build-type = "RelWithDebInfo"
sdist.include = [
".git/HEAD",
".git/refs"
]
wheel.packages = ["python/solvespace"]
[tool.scikit-build.cmake.define]
ENABLE_GUI = "OFF"
ENABLE_CLI = "OFF"
ENABLE_TESTS = "OFF"
ENABLE_COVERAGE = "OFF"
ENABLE_OPENMP = "OFF"
FORCE_VENDORED_Eigen3 = "ON"
ENABLE_LTO = "ON"
ENABLE_PYTHON_LIB = "ON"
[tool.cibuildwheel]
build-verbosity = 1