-
Notifications
You must be signed in to change notification settings - Fork 128
/
pyproject.toml
31 lines (27 loc) · 915 Bytes
/
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
[project]
name = "george"
description = "Blazingly fast Gaussian Processes for regression."
readme = "README.rst"
authors = [{ name = "Daniel Foreman-Mackey", email = "[email protected]" }]
requires-python = ">=3.9"
license = { file = "LICENSE" }
urls = { Homepage = "https://github.com/dfm/george" }
dependencies = ["numpy", "scipy"]
dynamic = ["version"]
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = [
"src/george/george_version.py",
"src/george/kernel_interface.cpp",
"src/george/solvers/_hodlr.cpp",
]
wheel.install-dir = "george"
minimum-version = "0.5"
build-dir = "build/{wheel_tag}"
[tool.setuptools_scm]
write_to = "src/george/george_version.py"
[tool.cibuildwheel]
skip = "pp* *-win32 *-musllinux_* *-manylinux_i686"