-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 829 Bytes
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
[build-system]
requires = [
"scikit-build-core>=0.10",
"setuptools>=61",
"pybind11>=2.10",
"numpy>=1.23"
]
build-backend = "scikit_build_core.build"
[project]
name = "FastGaussianPuff"
version = "0.1.0"
description = "FastGaussianPuff: A high-performance Gaussian puff atmospheric dispersion model."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Ryker Fish", email = "rfish@mines.edu" }
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.23",
]
[project.urls]
Homepage = "https://github.com/Hammerling-Research-Group/FastGaussianPuff"
Repository = "https://github.com/Hammerling-Research-Group/FastGaussianPuff"
[tool.scikit-build]
wheel.packages = ["FastGaussianPuff"]
[tool.scikit-build.cmake]
source-dir = "."
define = { "CMAKE_CXX_STANDARD" = "17" }
version = ">=3.19"