-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.01 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
39
40
41
42
[build-system]
build-backend = "scikit_build_core.build"
requires = ["scikit-build-core>=0.11", "cython", "numpy>=2", "setuptools"]
[project]
name = "cea"
dynamic = ["version"]
description = "Chemical Equilibrium with Applications"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
authors = [ {name = "Mark Leader", email = "mark.leader@nasa.gov"} ]
requires-python = ">=3.11"
dependencies = ["numpy>=2"]
[tool.scikit-build]
sdist.cmake = false
build-dir = "build/py-build"
[tool.scikit-build.editable]
mode = "redirect"
rebuild = false
[tool.scikit-build.wheel]
install-dir = "cea"
packages = {cea = "source/bind/python/cea"}
exclude = [
"include",
"**/cmake",
"**.a",
"**/__pycache__",
]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "source/bind/python/cea/__init__.py"
[tool.scikit-build.cmake]
version = ">=3.19"
args = ["-GNinja",
"-DCMAKE_BUILD_TYPE=Release",
"-DCEA_BUILD_TESTING=OFF"]