-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 983 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 983 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
34
35
36
37
38
39
40
41
# pyproject.toml
[build-system]
# Specifies that Meson and meson-python are needed to build the package.
requires = [
"meson-python >= 0.15.0", # Use a recent version of meson-python
"meson", # Use a recent version of Meson
"numpy", # For f2py and as a runtime dependency
"ninja"
]
build-backend = "mesonpy"
[project]
name = "seba"
version = "0.1.0"
description = "Spectral Energy Budget of the Atmosphere"
readme = "README.md"
authors = [
{ name = "Yanmichel A. Morfa", email = "morfa@iap-kborn.de" },
]
license = { text = "MIT" }
requires-python = ">=3.8"
# Runtime dependencies for your package
dependencies = [
"numpy",
"scipy",
"xarray",
"matplotlib",
"pint",
"shtns",
]
[project.urls]
Repository = "https://github.com/deterministic-nonperiodic/SEBA.git"
[tool.setuptools]
packages = ["seba"]
package-dir = {"" = "src"}
[tool.meson-python.args]
setup = ["--reconfigure"] # Reconfigure on build