-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.41 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
[build-system]
build-backend = 'mesonpy'
requires = ["meson>=0.63.0",
"meson-python",
"setuptools_scm>=6.2",
"numpy>=2.0.0"]
[project]
name = "radbelt"
description = "Astropy-friendly wrapper for the AE-8/AP-8 Van Allen belt model"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy"
]
license = { text = "NOSA" }
requires-python = ">=3.9"
dependencies = ["astropy", "numpy>=1.19"]
dynamic = [ "version" ]
[project.urls]
source = "https://github.com/nasa/radbelt"
[project.optional-dependencies]
test = ["pytest-doctestplus"]
[tool.cibuildwheel]
test-extras = ["test"]
test-command = "pytest --pyargs radbelt --doctest-plus"
[tool.cibuildwheel.windows]
before-build = "pip install delvewheel"
repair-wheel-command = "delvewheel repair -w {dest_dir} {wheel}"