-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.15 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
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = [
"pybind11>=2.8.1",
"scikit-build-core",
]
build-backend = "scikit_build_core.build"
[project]
name = "mmu"
version = "0.1.0"
authors = [
{ name="Ralph Urlus", email="[email protected]" },
]
description = ""
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["numpy>=1.18",]
[project.optional-dependencies]
dev = [
"ninja",
"cmake>=1.1",
"pybind11>=2.8.1",
]
test = [
"pytest",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -v"
testpaths = ["tests", ]
[tool.scikit-build]
minimum-version = "0.1"
cmake.minimum-version = "3.16"
ninja.make-fallback = true
# This activates verbose builds
cmake.verbose = false
# This controls the CMake build type
cmake.build-type = "Release"
logging.level = "WARNING"
sdist.reproducible = true
sdist.include = ["src/mmu-core", "cmake", "CMakeLists.txt"]
wheel.py-api = "cp37"
wheel.expand-macos-universal-tags = false
backport.find-python = "3.24"
strict-config = true
[tool.scikit-build.cmake.define]
MMU_CPP_STANDARD = "17"
MMU_ENABLE_DEVMODE = false
MMU_ADD_PYTHON_SUPPORT = false
MMU_ADD_NUMPY_SUPPORT = false
MMU_ADD_OPENMP_SUPPORT = false