-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 1.05 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
[build-system]
requires = [
"scikit-build-core>=0.8.0"
]
build-backend = "scikit_build_core.build"
[project]
name = "polysolve"
version = "v0.0.1"
description = "A Python binding for PolySolve"
authors = [
{ name = "Teseo Schneider", email = "teseo@uvic.ca" }
]
license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
keywords = ["Optimization", "Newton", "Python Bindings"]
classifiers = [
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"scipy",
]
# ---------- scikit-build-core ----------
[tool.scikit-build]
cmake.version = ">=3.18"
build-dir = "build/{wheel_tag}"
cmake.args = ["-DPYBIND11_FINDPYTHON=ON", "-DCMAKE_BUILD_TYPE=Release", "-DPOLYSOLVE_WITH_AMGCL=OFF"]
wheel.exclude = [
"**/.git/**/*" # no embedded Git repos
]